-- MySQL dump 10.13  Distrib 5.6.51, for Linux (x86_64)
--
-- Host: localhost    Database: dev34_wp728
-- ------------------------------------------------------
-- Server version	5.6.51

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpew_booking`
--

DROP TABLE IF EXISTS `wpew_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_booking` (
  `booking_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `trash` bigint(10) NOT NULL DEFAULT '0',
  `sync_gid` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `is_new` bigint(10) NOT NULL DEFAULT '1',
  `status` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `sort_date` datetime DEFAULT NULL,
  `modification_date` datetime DEFAULT NULL,
  `form` text COLLATE utf8mb4_unicode_520_ci,
  `booking_type` bigint(10) NOT NULL DEFAULT '1',
  PRIMARY KEY (`booking_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_booking`
--

LOCK TABLES `wpew_booking` WRITE;
/*!40000 ALTER TABLE `wpew_booking` DISABLE KEYS */;
INSERT INTO `wpew_booking` VALUES (1,0,'',1,'','2021-05-19 00:00:00','2021-05-17 22:55:58','text^name1^Jony~text^secondname1^Smith~text^email1^example-free@wpbookingcalendar.com~text^phone1^458-77-77~textarea^details1^Reserve a room with sea view',1),(2,0,'',1,'','2021-05-22 00:00:00','2021-05-18 07:36:42','text^name1^love~email^email1^youleth@gmail.com~select-one^visitors1^1~text^phone1^092837746476~select-one^house1^COLGATE',1),(3,0,'',1,'','2021-05-28 00:00:00','2021-05-25 16:59:19','text^name1^Travis Martin~email^email1^Travis@inspirable.com~select-one^visitors1^5~text^phone1^4259313885',1),(4,0,'',1,'','2021-06-30 00:00:00','2021-06-14 21:15:03','text^name1^2e2~email^email1^alex@inspirable.com~select-one^visitors1^3~text^phone1^2065353596',1);
/*!40000 ALTER TABLE `wpew_booking` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_bookingdates`
--

DROP TABLE IF EXISTS `wpew_bookingdates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_bookingdates` (
  `booking_dates_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `booking_id` bigint(20) unsigned NOT NULL,
  `booking_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `approved` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`booking_dates_id`),
  UNIQUE KEY `booking_id_dates` (`booking_id`,`booking_date`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_bookingdates`
--

LOCK TABLES `wpew_bookingdates` WRITE;
/*!40000 ALTER TABLE `wpew_bookingdates` DISABLE KEYS */;
INSERT INTO `wpew_bookingdates` VALUES (1,1,'2021-05-19 00:00:00',0),(2,1,'2021-05-20 00:00:00',0),(3,1,'2021-05-21 00:00:00',0),(4,2,'2021-05-22 00:00:00',0),(5,2,'2021-05-23 00:00:00',0),(6,2,'2021-05-24 00:00:00',0),(7,2,'2021-05-25 00:00:00',0),(8,3,'2021-05-28 00:00:00',0),(9,4,'2021-06-30 00:00:00',0);
/*!40000 ALTER TABLE `wpew_bookingdates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_commentmeta`
--

DROP TABLE IF EXISTS `wpew_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_commentmeta`
--

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

--
-- Table structure for table `wpew_comments`
--

DROP TABLE IF EXISTS `wpew_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_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_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_comments`
--

LOCK TABLES `wpew_comments` WRITE;
/*!40000 ALTER TABLE `wpew_comments` DISABLE KEYS */;
INSERT INTO `wpew_comments` VALUES (2,57,'Joe Doe','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','This is exactly what i was looking for, thank you so much for these tutorials',0,'1','','comment',0,0),(3,57,'Mike','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','It would be great to try this theme for my businesses',0,'1','','comment',2,0),(4,57,'Elicia','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','What a nice article. It keeps me reading more and more!',0,'1','','comment',0,0),(5,58,'Joe Doe','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','This is exactly what i was looking for, thank you so much for these tutorials',0,'1','','comment',0,0),(6,58,'Mike','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','It would be great to try this theme for my businesses',0,'1','','comment',5,0),(7,58,'Elicia','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','What a nice article. It keeps me reading more and more!',0,'1','','comment',0,0),(8,59,'Joe Doe','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','This is exactly what i was looking for, thank you so much for these tutorials',0,'1','','comment',0,0),(9,59,'Mike','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','It would be great to try this theme for my businesses',0,'1','','comment',8,0),(10,59,'Elicia','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','What a nice article. It keeps me reading more and more!',0,'1','','comment',0,0),(11,60,'Joe Doe','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','This is exactly what i was looking for, thank you so much for these tutorials',0,'1','','comment',0,0),(12,60,'Mike','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','It would be great to try this theme for my businesses',0,'1','','comment',11,0),(13,60,'Elicia','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','What a nice article. It keeps me reading more and more!',0,'1','','comment',0,0),(14,61,'Joe Doe','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','This is exactly what i was looking for, thank you so much for these tutorials',0,'1','','comment',0,0),(15,61,'Mike','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','It would be great to try this theme for my businesses',0,'1','','comment',14,0),(16,61,'Elicia','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','What a nice article. It keeps me reading more and more!',0,'1','','comment',0,0),(17,62,'Joe Doe','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','This is exactly what i was looking for, thank you so much for these tutorials',0,'1','','comment',0,0),(18,62,'Mike','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','It would be great to try this theme for my businesses',0,'1','','comment',17,0),(19,62,'Elicia','admin@admin.com','http://','127.0.0.1','2020-05-25 04:30:54','2020-05-25 04:30:54','What a nice article. It keeps me reading more and more!',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wpew_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_api_keys`
--

DROP TABLE IF EXISTS `wpew_dopbsp_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_api_keys` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `api_key` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_api_keys`
--

LOCK TABLES `wpew_dopbsp_api_keys` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_api_keys` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_api_keys` VALUES (1,8,'iikfG6XlCXzhXlTcfhQw8RWnt7MTFXVp');
/*!40000 ALTER TABLE `wpew_dopbsp_api_keys` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_availability`
--

DROP TABLE IF EXISTS `wpew_dopbsp_availability`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_availability` (
  `calendar_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `date_start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_end` datetime NOT NULL DEFAULT '9999-01-01 00:00:00',
  KEY `calendar_id` (`calendar_id`),
  KEY `date_start` (`date_start`),
  KEY `date_end` (`date_end`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_availability`
--

LOCK TABLES `wpew_dopbsp_availability` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_availability` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_availability` VALUES (1,'2021-05-18 00:00:00','2021-05-19 23:59:59');
/*!40000 ALTER TABLE `wpew_dopbsp_availability` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_availability_no`
--

DROP TABLE IF EXISTS `wpew_dopbsp_availability_no`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_availability_no` (
  `calendar_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `no_available` int(10) unsigned NOT NULL DEFAULT '2',
  `date_start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_end` datetime NOT NULL DEFAULT '9999-01-01 00:00:00',
  KEY `calendar_id` (`calendar_id`),
  KEY `no_available` (`no_available`),
  KEY `date_start` (`date_start`),
  KEY `date_end` (`date_end`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_availability_no`
--

LOCK TABLES `wpew_dopbsp_availability_no` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_availability_no` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_availability_no` VALUES (1,1,'2021-05-18 00:00:00','2021-05-19 23:59:59');
/*!40000 ALTER TABLE `wpew_dopbsp_availability_no` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_availability_price`
--

DROP TABLE IF EXISTS `wpew_dopbsp_availability_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_availability_price` (
  `calendar_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `price` float unsigned NOT NULL DEFAULT '0',
  `date_start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_end` datetime NOT NULL DEFAULT '9999-01-01 00:00:00',
  KEY `calendar_id` (`calendar_id`),
  KEY `price` (`price`),
  KEY `date_start` (`date_start`),
  KEY `date_end` (`date_end`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_availability_price`
--

LOCK TABLES `wpew_dopbsp_availability_price` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_availability_price` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_availability_price` VALUES (1,1000,'2021-05-18 00:00:00','2021-05-19 23:59:59');
/*!40000 ALTER TABLE `wpew_dopbsp_availability_price` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_calendars`
--

DROP TABLE IF EXISTS `wpew_dopbsp_calendars`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_calendars` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `max_year` int(10) unsigned NOT NULL DEFAULT '0',
  `hours_enabled` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `hours_interval_enabled` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `min_available` float NOT NULL DEFAULT '0',
  `price_min` float NOT NULL DEFAULT '0',
  `price_max` float NOT NULL DEFAULT '0',
  `rating` float NOT NULL DEFAULT '0',
  `address` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_en` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_alt` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_alt_en` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `default_availability` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_update_google` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_update_airbnb` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `coordinates` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`),
  KEY `post_id` (`post_id`),
  KEY `min_available` (`min_available`),
  KEY `price_min` (`price_min`),
  KEY `price_max` (`price_max`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_calendars`
--

LOCK TABLES `wpew_dopbsp_calendars` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_calendars` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_calendars` VALUES (1,8,0,'Booking Calendar',2021,'false','false',1,1000,1000,0,'','','','','{\"available\":0,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}','0000-00-00 00:00:00','0000-00-00 00:00:00','');
/*!40000 ALTER TABLE `wpew_dopbsp_calendars` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_coupons`
--

DROP TABLE IF EXISTS `wpew_dopbsp_coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_coupons` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `code` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `start_date` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `end_date` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `start_hour` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `end_hour` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `no_coupons` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `operation` varchar(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '+',
  `price` float NOT NULL DEFAULT '0',
  `price_type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'fixed',
  `price_by` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'once',
  `translation` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_coupons`
--

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

--
-- Table structure for table `wpew_dopbsp_days`
--

DROP TABLE IF EXISTS `wpew_dopbsp_days`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_days` (
  `unique_key` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `calendar_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `day` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `year` smallint(5) unsigned NOT NULL DEFAULT '2021',
  `data` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `min_available` float NOT NULL DEFAULT '0',
  `price_min` float NOT NULL DEFAULT '0',
  `price_max` float NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`unique_key`),
  KEY `calendar_id` (`calendar_id`),
  KEY `day` (`day`),
  KEY `year` (`year`),
  KEY `min_available` (`min_available`),
  KEY `price_min` (`price_min`),
  KEY `price_max` (`price_max`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_days`
--

LOCK TABLES `wpew_dopbsp_days` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_days` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_days` VALUES ('1_2021-05-18',1,'2021-05-18',2021,'{\"available\":1,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":1000,\"promo\":0,\"status\":\"available\"}',1,1000,1000),('1_2021-05-19',1,'2021-05-19',2021,'{\"available\":1,\"bind\":0,\"hours\":{\"00:00\":{\"available\":0,\"bind\":0,\"info\":\"\",\"notes\":\"\",\"price\":0,\"promo\":0,\"status\":\"none\"}},\"hours_definitions\":[{\"value\":\"00:00\"}],\"info\":\"\",\"notes\":\"\",\"price\":1000,\"promo\":0,\"status\":\"available\"}',1,1000,1000);
/*!40000 ALTER TABLE `wpew_dopbsp_days` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_discounts`
--

DROP TABLE IF EXISTS `wpew_dopbsp_discounts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_discounts` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `extras` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_discounts`
--

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

--
-- Table structure for table `wpew_dopbsp_discounts_items`
--

DROP TABLE IF EXISTS `wpew_dopbsp_discounts_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_discounts_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `discount_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `position` int(10) unsigned NOT NULL DEFAULT '0',
  `start_time_lapse` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `end_time_lapse` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `operation` varchar(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '-',
  `price` float NOT NULL DEFAULT '0',
  `price_type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'percent',
  `price_by` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'once',
  `translation` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `discount_id` (`discount_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_discounts_items`
--

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

--
-- Table structure for table `wpew_dopbsp_discounts_items_rules`
--

DROP TABLE IF EXISTS `wpew_dopbsp_discounts_items_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_discounts_items_rules` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `discount_item_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `position` int(10) unsigned NOT NULL DEFAULT '0',
  `start_date` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `end_date` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `start_hour` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `end_hour` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `operation` varchar(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '-',
  `price` float NOT NULL DEFAULT '0',
  `price_type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'percent',
  `price_by` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'once',
  UNIQUE KEY `id` (`id`),
  KEY `discount_item_id` (`discount_item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_discounts_items_rules`
--

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

--
-- Table structure for table `wpew_dopbsp_emails`
--

DROP TABLE IF EXISTS `wpew_dopbsp_emails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_emails` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_emails`
--

LOCK TABLES `wpew_dopbsp_emails` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_emails` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_emails` VALUES (1,0,'Default email templates');
/*!40000 ALTER TABLE `wpew_dopbsp_emails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_emails_translation`
--

DROP TABLE IF EXISTS `wpew_dopbsp_emails_translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_emails_translation` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `template` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `subject` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `email_id` (`email_id`),
  KEY `template` (`template`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_emails_translation`
--

LOCK TABLES `wpew_dopbsp_emails_translation` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_emails_translation` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_emails_translation` VALUES (1,1,'book_admin','{\"en\": \"You received a booking request.\"}','{\"en\": \"Below are the details. Go to admin to approve or reject the request.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),(2,1,'book_user','{\"en\": \"Your booking request has been sent.\"}','{\"en\": \"Please wait for approval. Below are the details.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),(3,1,'book_with_approval_admin','{\"en\": \"You received a booking request.\"}','{\"en\": \"Below are the details. Go to admin to cancel the request.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),(4,1,'book_with_approval_user','{\"en\": \"Your booking request has been sent.\"}','{\"en\": \"Below are the details.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),(5,1,'approved','{\"en\": \"Your booking request has been approved.\"}','{\"en\": \"Congratulations! Your booking request has been approved. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),(6,1,'canceled','{\"en\": \"Your booking request has been canceled.\"}','{\"en\": \"I<<single-quote>>m sorry but your booking request has been canceled. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}'),(7,1,'rejected','{\"en\": \"Your booking request has been rejected.\"}','{\"en\": \"I<<single-quote>>m sorry but your booking request has been rejected. Details about your request are below.<<new-line>><br /><br /><<new-line>>|DETAILS|<<new-line>><br /><br /><<new-line>>|EXTRAS|<<new-line>><br /><br /><<new-line>>|DISCOUNT|<<new-line>><br /><br /><<new-line>>|COUPON|<<new-line>><br /><br /><<new-line>>|FEES|<<new-line>><br /><br /><<new-line>>|FORM|<<new-line>><br /><br /><<new-line>>|BILLING ADDRESS|<<new-line>><br /><br /><<new-line>>|SHIPPING ADDRESS|\"}');
/*!40000 ALTER TABLE `wpew_dopbsp_emails_translation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_extras`
--

DROP TABLE IF EXISTS `wpew_dopbsp_extras`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_extras` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_extras`
--

LOCK TABLES `wpew_dopbsp_extras` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_extras` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_extras` VALUES (1,8,'People');
/*!40000 ALTER TABLE `wpew_dopbsp_extras` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_extras_groups`
--

DROP TABLE IF EXISTS `wpew_dopbsp_extras_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_extras_groups` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `extra_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `position` int(10) unsigned NOT NULL DEFAULT '0',
  `multiple_select` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `required` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `no_items_multiply` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'true',
  `translation` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `extra_id` (`extra_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_extras_groups`
--

LOCK TABLES `wpew_dopbsp_extras_groups` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_extras_groups` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_extras_groups` VALUES (1,1,1,'false','true','true','{\"en\":\"Guest\"}');
/*!40000 ALTER TABLE `wpew_dopbsp_extras_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_extras_groups_items`
--

DROP TABLE IF EXISTS `wpew_dopbsp_extras_groups_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_extras_groups_items` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `position` int(10) unsigned NOT NULL DEFAULT '0',
  `operation` varchar(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '+',
  `price` float NOT NULL DEFAULT '0',
  `price_type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'fixed',
  `price_by` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'once',
  `default_value` varchar(3) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'no',
  `translation` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `group_id` (`group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_extras_groups_items`
--

LOCK TABLES `wpew_dopbsp_extras_groups_items` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_extras_groups_items` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_extras_groups_items` VALUES (1,1,1,'+',0,'fixed','once','no','{\"en\": \"1\"}'),(2,1,2,'+',0,'fixed','once','no','{\"en\": \"2\"}'),(3,1,3,'+',0,'fixed','once','no','{\"en\": \"3\"}'),(4,1,4,'+',0,'fixed','once','no','{\"en\": \"4\"}'),(5,1,5,'+',0,'fixed','once','no','{\"en\": \"5\"}');
/*!40000 ALTER TABLE `wpew_dopbsp_extras_groups_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_fees`
--

DROP TABLE IF EXISTS `wpew_dopbsp_fees`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_fees` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `operation` varchar(1) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '+',
  `price` float NOT NULL DEFAULT '0',
  `price_type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'fixed',
  `price_by` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'once',
  `included` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'true',
  `extras` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'true',
  `cart` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'true',
  `translation` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_fees`
--

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

--
-- Table structure for table `wpew_dopbsp_forms`
--

DROP TABLE IF EXISTS `wpew_dopbsp_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_forms` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_forms`
--

LOCK TABLES `wpew_dopbsp_forms` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_forms` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_forms` VALUES (1,8,'Contact information'),(2,8,'New form');
/*!40000 ALTER TABLE `wpew_dopbsp_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_forms_fields`
--

DROP TABLE IF EXISTS `wpew_dopbsp_forms_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_forms_fields` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `position` int(10) unsigned NOT NULL DEFAULT '0',
  `multiple_select` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `allowed_characters` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `size` int(10) unsigned NOT NULL DEFAULT '0',
  `is_email` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `is_phone` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `default_country` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'US',
  `required` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `add_to_day_hour_info` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `add_to_day_hour_body` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `translation` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_forms_fields`
--

LOCK TABLES `wpew_dopbsp_forms_fields` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_forms_fields` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_forms_fields` VALUES (1,1,'text',1,'false','',0,'false','false','US','true','false','false','{\"en\":\"Name\"}'),(3,1,'text',3,'false','',0,'true','false','US','true','false','false','{\"en\": \"Email\"}'),(4,1,'text',4,'false','0123456789+-().',0,'false','true','US','true','false','false','{\"en\": \"Phone\"}');
/*!40000 ALTER TABLE `wpew_dopbsp_forms_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_forms_select_options`
--

DROP TABLE IF EXISTS `wpew_dopbsp_forms_select_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_forms_select_options` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `field_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `position` int(10) unsigned NOT NULL DEFAULT '0',
  `translation` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `field_id` (`field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_forms_select_options`
--

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

--
-- Table structure for table `wpew_dopbsp_languages`
--

DROP TABLE IF EXISTS `wpew_dopbsp_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_languages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `code` varchar(2) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `enabled` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`id`),
  KEY `code` (`code`),
  KEY `enabled` (`enabled`)
) ENGINE=MyISAM AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_languages`
--

LOCK TABLES `wpew_dopbsp_languages` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_languages` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_languages` VALUES (1,'Afrikaans (Afrikaans)','af','false'),(2,'Albanian (Shqiptar)','sq','false'),(3,'Arabic (>العربية)','ar','false'),(4,'Azerbaijani (Azərbaycan)','az','false'),(5,'Basque (Euskal)','eu','false'),(6,'Belarusian (Беларускай)','be','false'),(7,'Bulgarian (Български)','bg','false'),(8,'Catalan (Català)','ca','false'),(9,'Chinese (中国的)','zh','false'),(10,'Croatian (Hrvatski)','hr','false'),(11,'Czech (Český)','cs','false'),(12,'Danish (Dansk)','da','false'),(13,'Dutch (Nederlands)','nl','false'),(14,'English','en','true'),(15,'Esperanto (Esperanto)','eo','false'),(16,'Estonian (Eesti)','et','false'),(17,'Filipino (na Filipino)','fl','false'),(18,'Finnish (Suomi)','fi','false'),(19,'French (Français)','fr','false'),(20,'Galician (Galego)','gl','false'),(21,'German (Deutsch)','de','false'),(22,'Greek (Ɛλληνικά)','el','false'),(23,'Haitian Creole (Kreyòl Ayisyen)','ht','false'),(24,'Hebrew (עברית)','he','false'),(25,'Hindi (हिंदी)','hi','false'),(26,'Hungarian (Magyar)','hu','false'),(27,'Icelandic (Íslenska)','is','false'),(28,'Indonesian (Indonesia)','id','false'),(29,'Irish (Gaeilge)','ga','false'),(30,'Italian (Italiano)','it','false'),(31,'Japanese (日本の)','ja','false'),(32,'Korean (한국의)','ko','false'),(33,'Latvian (Latvijas)','lv','false'),(34,'Lithuanian (Lietuvos)','lt','false'),(35,'Macedonian (македонски)','mk','false'),(36,'Malay (Melayu)','ms','false'),(37,'Maltese (Maltija)','mt','false'),(38,'Norwegian (Norske)','no','false'),(39,'Persian (فارسی)','fa','false'),(40,'Polish (Polski)','pl','false'),(41,'Portuguese (Português)','pt','false'),(42,'Romanian (Română)','ro','false'),(43,'Russian (Pусский)','ru','false'),(44,'Serbian (Cрпски)','sr','false'),(45,'Slovak (Slovenských)','sk','false'),(46,'Slovenian (Slovenski)','sl','false'),(47,'Spanish (Español)','es','false'),(48,'Swahili (Kiswahili)','sw','false'),(49,'Swedish (Svenskt)','sv','false'),(50,'Thai (ภาษาไทย)','th','false'),(51,'Turkish (Türk)','tr','false'),(52,'Ukrainian (Український)','uk','false'),(53,'Urdu (اردو)','ur','false'),(54,'Vietnamese (Việt)','vi','false'),(55,'Welsh (Cymraeg)','cy','false'),(56,'Yiddish (ייִדיש)','yi','false');
/*!40000 ALTER TABLE `wpew_dopbsp_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_locations`
--

DROP TABLE IF EXISTS `wpew_dopbsp_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_locations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_en` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_alt` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `address_alt_en` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `coordinates` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `calendars` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `image` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `businesses` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `businesses_other` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `languages` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(512) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_locations`
--

LOCK TABLES `wpew_dopbsp_locations` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_locations` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_locations` VALUES (1,8,'New location','','','','','','','','','','','','');
/*!40000 ALTER TABLE `wpew_dopbsp_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_models`
--

DROP TABLE IF EXISTS `wpew_dopbsp_models`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_models` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `enabled` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'true',
  `multiple_calendars` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  `translation` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `translation_calendar` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_models`
--

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

--
-- Table structure for table `wpew_dopbsp_reservations`
--

DROP TABLE IF EXISTS `wpew_dopbsp_reservations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_reservations` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `calendar_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `language` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'en',
  `currency` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '$',
  `currency_code` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'USD',
  `check_in` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `check_out` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `start_hour` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `end_hour` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `no_items` int(10) unsigned NOT NULL DEFAULT '1',
  `price` float NOT NULL DEFAULT '0',
  `price_total` float NOT NULL DEFAULT '0',
  `refund` float NOT NULL DEFAULT '0',
  `extras` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `extras_price` float NOT NULL DEFAULT '0',
  `discount` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `discount_price` float NOT NULL DEFAULT '0',
  `coupon` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `coupon_price` float NOT NULL DEFAULT '0',
  `fees` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `fees_price` float NOT NULL DEFAULT '0',
  `deposit` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `deposit_price` float NOT NULL DEFAULT '0',
  `days_hours_history` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `form` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `address_billing` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `address_shipping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `email` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `stripe_user` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `phone` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `status` varchar(16) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',
  `payment_method` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'default',
  `payment_status` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',
  `transaction_id` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `reservation_from` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pinpoint',
  `uid` varchar(75) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `token` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `ip` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `date_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  UNIQUE KEY `id` (`id`),
  KEY `calendar_id` (`calendar_id`),
  KEY `check_in` (`check_in`),
  KEY `check_out` (`check_out`),
  KEY `start_hour` (`end_hour`),
  KEY `status` (`status`),
  KEY `payment_method` (`payment_method`),
  KEY `transaction_id` (`transaction_id`),
  KEY `uid` (`uid`),
  KEY `token` (`token`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_reservations`
--

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

--
-- Table structure for table `wpew_dopbsp_rules`
--

DROP TABLE IF EXISTS `wpew_dopbsp_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_rules` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `time_lapse_min` float NOT NULL DEFAULT '0',
  `time_lapse_max` float NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_rules`
--

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

--
-- Table structure for table `wpew_dopbsp_searches`
--

DROP TABLE IF EXISTS `wpew_dopbsp_searches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_searches` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `calendars_excluded` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `currency` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'USD',
  `currency_position` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'before',
  `hours_enabled` varchar(6) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'false',
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_searches`
--

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

--
-- Table structure for table `wpew_dopbsp_settings`
--

DROP TABLE IF EXISTS `wpew_dopbsp_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_settings` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `value` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_settings`
--

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

--
-- Table structure for table `wpew_dopbsp_settings_calendar`
--

DROP TABLE IF EXISTS `wpew_dopbsp_settings_calendar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_settings_calendar` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `calendar_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `value` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `calendar_id` (`calendar_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_settings_calendar`
--

LOCK TABLES `wpew_dopbsp_settings_calendar` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_settings_calendar` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_settings_calendar` VALUES (1,1,'extra','1'),(2,1,'days_first','7'),(3,1,'sidebar_style','5'),(4,1,'template','beautify'),(5,1,'days_details_from_hours','false'),(6,1,'hours_info_enabled','false'),(7,1,'hours_multiple_select','false'),(8,1,'hours_add_last_hour_to_total_price','false'),(9,1,'sidebar_no_items_enabled','false'),(10,1,'deposit_pay_full_amount','true'),(11,1,'deposit_type','fixed');
/*!40000 ALTER TABLE `wpew_dopbsp_settings_calendar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_settings_notifications`
--

DROP TABLE IF EXISTS `wpew_dopbsp_settings_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_settings_notifications` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `calendar_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `value` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `calendar_id` (`calendar_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_settings_notifications`
--

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

--
-- Table structure for table `wpew_dopbsp_settings_payment`
--

DROP TABLE IF EXISTS `wpew_dopbsp_settings_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_settings_payment` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `calendar_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `value` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `calendar_id` (`calendar_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_settings_payment`
--

LOCK TABLES `wpew_dopbsp_settings_payment` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_settings_payment` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_settings_payment` VALUES (1,1,'arrival_enabled','false'),(2,1,'arrival_with_approval_enabled','true');
/*!40000 ALTER TABLE `wpew_dopbsp_settings_payment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_settings_search`
--

DROP TABLE IF EXISTS `wpew_dopbsp_settings_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_settings_search` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `search_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `value` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `search_id` (`search_id`),
  KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_settings_search`
--

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

--
-- Table structure for table `wpew_dopbsp_smses`
--

DROP TABLE IF EXISTS `wpew_dopbsp_smses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_smses` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `name` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_smses`
--

LOCK TABLES `wpew_dopbsp_smses` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_smses` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_smses` VALUES (1,0,'Default SMS templates');
/*!40000 ALTER TABLE `wpew_dopbsp_smses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_smses_translation`
--

DROP TABLE IF EXISTS `wpew_dopbsp_smses_translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_smses_translation` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `sms_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `template` varchar(64) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  KEY `sms_id` (`sms_id`),
  KEY `template` (`template`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_smses_translation`
--

LOCK TABLES `wpew_dopbsp_smses_translation` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_smses_translation` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_smses_translation` VALUES (1,1,'book_admin','{\"en\": \"You received a booking request.|DETAILS|\"}'),(2,1,'book_user','{\"en\": \"Your booking request has been sent.|DETAILS|\"}'),(3,1,'book_with_approval_admin','{\"en\": \"You received a booking request.|DETAILS|\"}'),(4,1,'book_with_approval_user','{\"en\": \"Your booking request has been sent.Please wait for approval.|DETAILS|\"}'),(5,1,'approved','{\"en\": \"Your booking request has been approved.|DETAILS|\"}'),(6,1,'canceled','{\"en\": \"Your booking request has been canceled.|DETAILS|\"}'),(7,1,'rejected','{\"en\": \"Your booking request has been rejected.|DETAILS|\"}');
/*!40000 ALTER TABLE `wpew_dopbsp_smses_translation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_dopbsp_translation_en`
--

DROP TABLE IF EXISTS `wpew_dopbsp_translation_en`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_dopbsp_translation_en` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `key_data` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `parent_key` varchar(128) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `text_data` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `translation` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `location` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'backend',
  UNIQUE KEY `id` (`id`),
  KEY `key_data` (`key_data`)
) ENGINE=MyISAM AUTO_INCREMENT=1800 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_dopbsp_translation_en`
--

LOCK TABLES `wpew_dopbsp_translation_en` WRITE;
/*!40000 ALTER TABLE `wpew_dopbsp_translation_en` DISABLE KEYS */;
INSERT INTO `wpew_dopbsp_translation_en` VALUES (1,'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','','Settings - PayPal','Settings - PayPal','backend'),(2,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PayPal','PayPal','backend'),(3,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','Enable PayPal payment','Enable PayPal payment','backend'),(4,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_CREDIT_CARD','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','Enable PayPal credit card payment','Enable PayPal credit card payment','backend'),(5,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_USERNAME','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PayPal API user name','PayPal API user name','backend'),(6,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_PASSWORD','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PayPal API password','PayPal API password','backend'),(7,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SIGNATURE','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PayPal API signature','PayPal API signature','backend'),(8,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','Enable PayPal sandbox','Enable PayPal sandbox','backend'),(9,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_USERNAME','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PayPal API sandbox user name','PayPal API sandbox user name','backend'),(10,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_PASSWORD','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PayPal API sandbox password','PayPal API sandbox password','backend'),(11,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_SIGNATURE','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PayPal API sandbox signature','PayPal API sandbox signature','backend'),(12,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','Enable refunds','Enable refunds','backend'),(13,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_VALUE','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','Refund value','Refund value','backend'),(14,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_TYPE','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','Refund type','Refund type','backend'),(15,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_TYPE_FIXED','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','Fixed','Fixed','backend'),(16,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_TYPE_PERCENT','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','Percent','Percent','backend'),(17,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REDIRECT','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','Redirect after payment','Redirect after payment','backend'),(18,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SEND_ADMIN','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PayPal - Notify admin','PayPal - Notify admin','backend'),(19,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SEND_USER','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL','PayPal - Notify user','PayPal - Notify user','backend'),(20,'PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','','Settings - PayPal - Help','Settings - PayPal - Help','backend'),(21,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Default value: Disabled. Allow users to pay with PayPal. The period is instantly booked.','Default value: Disabled. Allow users to pay with PayPal. The period is instantly booked.','backend'),(22,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_CREDIT_CARD_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Default value: Disabled. Enable so that users can pay directly with their credit card.','Default value: Disabled. Enable so that users can pay directly with their credit card.','backend'),(23,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_USERNAME_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Enter PayPal API credentials user name. View documentation to see from where you can get them.','Enter PayPal API credentials user name. View documentation to see from where you can get them.','backend'),(24,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_PASSWORD_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Enter PayPal API credentials password. View documentation to see from where you can get them.','Enter PayPal API credentials password. View documentation to see from where you can get them.','backend'),(25,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SIGNATURE_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Enter PayPal API credentials signature. View documentation to see from where you can get them.','Enter PayPal API credentials signature. View documentation to see from where you can get them.','backend'),(26,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Default value: Disabled. Enable to use PayPal sandbox features.','Default value: Disabled. Enable to use PayPal sandbox features.','backend'),(27,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_USERNAME_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Enter PayPal API sandbox credentials user name.','Enter PayPal API sandbox credentials user name.','backend'),(28,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_PASSWORD_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Enter PayPal API sandbox credentials password.','Enter PayPal API sandbox credentials password.','backend'),(29,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SANDBOX_SIGNATURE_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Enter PayPal API sandbox credentials signature.','Enter PayPal API sandbox credentials signature.','backend'),(30,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Default value: Disabled. Users that paid with PayPal will be refunded automatically if a reservation is canceled.','Default value: Disabled. Users that paid with PayPal will be refunded automatically if a reservation is canceled.','backend'),(31,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_VALUE_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Default value: 100. Enter the refund value from reservation total price.','Default value: 100. Enter the refund value from reservation total price.','backend'),(32,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REFUND_TYPE_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Default value: Percent. Select refund value type. It can be a fixed value or a percent from reservation price.','Default value: Percent. Select refund value type. It can be a fixed value or a percent from reservation price.','backend'),(33,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_REDIRECT_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Enter the URL where to redirect after the payment has been completed. Leave it blank to redirect back to the calendar.','Enter the URL where to redirect after the payment has been completed. Leave it blank to redirect back to the calendar.','backend'),(34,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SEND_ADMIN_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Enable to send an email notification to admin on book request payed with PayPal.','Enable to send an email notification to admin on book request payed with PayPal.','backend'),(35,'SETTINGS_PAYMENT_GATEWAYS_PAYPAL_SEND_USER_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_PAYPAL_HELP','Enable to send an email notification to user on book request payed with PayPal.','Enable to send an email notification to user on book request payed with PayPal.','backend'),(36,'PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL','','Order - PayPal','Order - PayPal','backend'),(37,'ORDER_PAYMENT_METHOD_PAYPAL','PARENT_RESERVATIONS_RESERVATION','PayPal','PayPal','all'),(38,'ORDER_PAYMENT_GATEWAYS_PAYPAL','PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL','Pay on PayPal (instant booking)','Pay on PayPal (instant booking)','all'),(39,'ORDER_PAYMENT_GATEWAYS_PAYPAL_SUCCESS','PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL','Your payment was approved and services are booked.','Your payment was approved and services are booked.','all'),(40,'ORDER_PAYMENT_GATEWAYS_PAYPAL_CANCEL','PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL','You canceled your payment with PayPal. Please try again.','You canceled your payment with PayPal. Please try again.','all'),(41,'ORDER_PAYMENT_GATEWAYS_PAYPAL_ERROR','PARENT_ORDER_PAYMENT_GATEWAYS_PAYPAL','There was an error while processing PayPal payment. Please try again.','There was an error while processing PayPal payment. Please try again.','all'),(42,'PARENT_EMAILS_DEFAULT_PAYPAL','','Email templates - PayPal default messages','Email templates - PayPal default messages','backend'),(43,'EMAILS_EMAIL_TEMPLATE_SELECT_PAYPAL_ADMIN','PARENT_EMAILS_DEFAULT_PAYPAL','PayPal admin notification','PayPal admin notification','backend'),(44,'EMAILS_DEFAULT_PAYPAL_ADMIN_SUBJECT','PARENT_EMAILS_DEFAULT_PAYPAL','You received a booking request.','You received a booking request.','backend'),(45,'EMAILS_DEFAULT_PAYPAL_ADMIN','PARENT_EMAILS_DEFAULT_PAYPAL','Below are the details. Payment has been done via PayPal and the period has been booked.','Below are the details. Payment has been done via PayPal and the period has been booked.','backend'),(46,'EMAILS_EMAIL_TEMPLATE_SELECT_PAYPAL_USER','PARENT_EMAILS_DEFAULT_PAYPAL','PayPal user notification','PayPal user notification','backend'),(47,'EMAILS_DEFAULT_PAYPAL_USER_SUBJECT','PARENT_EMAILS_DEFAULT_PAYPAL','Your booking request has been sent.','Your booking request has been sent.','backend'),(48,'EMAILS_DEFAULT_PAYPAL_USER','PARENT_EMAILS_DEFAULT_PAYPAL','The period has been book. Below are the details.','The period has been book. Below are the details.','backend'),(49,'PARENT_SMSES_DEFAULT_PAYPAL','','SMS templates - PayPal default messages','SMS templates - PayPal default messages','backend'),(50,'SMSES_SMS_TEMPLATE_SELECT_PAYPAL_ADMIN','PARENT_SMSES_DEFAULT_PAYPAL','PayPal admin notification','PayPal admin notification','backend'),(51,'SMSES_DEFAULT_PAYPAL_ADMIN_SUBJECT','PARENT_SMSES_DEFAULT_PAYPAL','You received a booking request.','You received a booking request.','backend'),(52,'SMSES_DEFAULT_PAYPAL_ADMIN','PARENT_SMSES_DEFAULT_PAYPAL','Payment has been done via PayPal and the period has been booked.','Payment has been done via PayPal and the period has been booked.','backend'),(53,'SMSES_SMS_TEMPLATE_SELECT_PAYPAL_USER','PARENT_SMSES_DEFAULT_PAYPAL','PayPal user notification','PayPal user notification','backend'),(54,'SMSES_DEFAULT_PAYPAL_USER_SUBJECT','PARENT_SMSES_DEFAULT_PAYPAL','Your booking request has been sent.','Your booking request has been sent.','backend'),(55,'SMSES_DEFAULT_PAYPAL_USER','PARENT_SMS_DEFAULT_PAYPAL','The period has been book. Below are the details.','The period has been book. Below are the details.','backend'),(56,'PARENT_ADDONS','','Add-ons','Add-ons','backend'),(57,'ADDONS_TITLE','PARENT_ADDONS','Add-ons','Add-ons','backend'),(58,'ADDONS_HELP','PARENT_ADDONS','Increase and improve booking system functionalities with one of the following addons.','Increase and improve booking system functionalities with one of the following addons.','backend'),(59,'ADDONS_LOAD_SUCCESS','PARENT_ADDONS','Add-ons list loaded.','Add-ons list loaded.','backend'),(60,'ADDONS_LOAD_ERROR','PARENT_ADDONS','Add-ons list failed to load. Please refresh the page to try again.','Add-ons list failed to load. Please refresh the page to try again.','backend'),(61,'ADDONS_FILTERS_SEARCH','PARENT_ADDONS','Search','Search','backend'),(62,'ADDONS_FILTERS_SEARCH_TERMS','PARENT_ADDONS','Enter search terms','Enter search terms','backend'),(63,'ADDONS_FILTERS_CATEGORIES','PARENT_ADDONS','Categories','Categories','backend'),(64,'ADDONS_FILTERS_CATEGORIES_ALL','PARENT_ADDONS','All','All','backend'),(65,'ADDONS_ADDON_PRICE','PARENT_ADDONS','Price:','Price:','backend'),(66,'ADDONS_ADDON_GET_IT_NOW','PARENT_ADDONS','Get it now','Get it now','backend'),(67,'PARENT_AMENITIES','','Amenities','Amenities','backend'),(68,'AMENITIES_TITLE','PARENT_AMENITIES','Amenities','Amenities','backend'),(69,'PARENT_CALENDARS','','Calendars','Calendars','backend'),(70,'CALENDARS_TITLE','PARENT_CALENDARS','Calendars','Calendars','backend'),(71,'CALENDARS_CREATED_BY','PARENT_CALENDARS','Created by','Created by','backend'),(72,'CALENDARS_NO_PENDING_RESERVATIONS','PARENT_CALENDARS','pending reservations','pending reservations','backend'),(73,'CALENDARS_NO_APPROVED_RESERVATIONS','PARENT_CALENDARS','approved reservations','approved reservations','backend'),(74,'CALENDARS_NO_REJECTED_RESERVATIONS','PARENT_CALENDARS','rejected reservations','rejected reservations','backend'),(75,'CALENDARS_NO_CANCELED_RESERVATIONS','PARENT_CALENDARS','canceled reservations','canceled reservations','backend'),(76,'CALENDARS_LOAD_SUCCESS','PARENT_CALENDARS','Calendars list loaded.','Calendars list loaded.','backend'),(77,'CALENDARS_NO_CALENDARS','PARENT_CALENDARS','No calendars. Click the above \"plus\" icon to add a new one.','No calendars. Click the above \"plus\" icon to add a new one.','backend'),(78,'PARENT_CALENDARS_CALENDAR','','Calendars - Calendar','Calendars - Calendar','backend'),(79,'CALENDARS_CALENDAR_LOAD_SUCCESS','PARENT_CALENDARS_CALENDAR','Calendar loaded.','Calendar loaded.','backend'),(80,'CALENDARS_CALENDAR_SAVING_SUCCESS','PARENT_CALENDARS_CALENDAR','Schedule saved.','Schedule saved.','backend'),(81,'CALENDARS_CALENDAR_ADD_MONTH_VIEW','PARENT_CALENDARS_CALENDAR','Add month view','Add month view','calendar'),(82,'CALENDARS_CALENDAR_REMOVE_MONTH_VIEW','PARENT_CALENDARS_CALENDAR','Remove month view','Remove month view','calendar'),(83,'CALENDARS_CALENDAR_PREVIOUS_MONTH','PARENT_CALENDARS_CALENDAR','Previous month','Previous month','calendar'),(84,'CALENDARS_CALENDAR_NEXT_MONTH','PARENT_CALENDARS_CALENDAR','Next month','Next month','calendar'),(85,'CALENDARS_CALENDAR_AVAILABLE_ONE_TEXT','PARENT_CALENDARS_CALENDAR','available','available','calendar'),(86,'CALENDARS_CALENDAR_AVAILABLE_TEXT','PARENT_CALENDARS_CALENDAR','available','available','calendar'),(87,'CALENDARS_CALENDAR_BOOKED_TEXT','PARENT_CALENDARS_CALENDAR','booked','booked','calendar'),(88,'CALENDARS_CALENDAR_UNAVAILABLE_TEXT','PARENT_CALENDARS_CALENDAR','unavailable','unavailable','calendar'),(89,'PARENT_CALENDARS_CALENDAR_FORM','','Calendars - Calendar form','Calendars - Calendar form','backend'),(90,'CALENDARS_CALENDAR_FORM_DATE_START_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Start date','Start date','backend'),(91,'CALENDARS_CALENDAR_FORM_DATE_END_LABEL','PARENT_CALENDARS_CALENDAR_FORM','End date','End date','backend'),(92,'CALENDARS_CALENDAR_FORM_HOURS_START_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Start hour','Start hour','backend'),(93,'CALENDARS_CALENDAR_FORM_HOURS_END_LABEL','PARENT_CALENDARS_CALENDAR_FORM','End hour','End hour','backend'),(94,'CALENDARS_CALENDAR_FORM_SET_DAYS_AVAILABILITY_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Set days availability','Set days availability','backend'),(95,'CALENDARS_CALENDAR_FORM_SET_HOURS_DEFINITIONS_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Set hours definitions','Set hours definitions','backend'),(96,'CALENDARS_CALENDAR_FORM_SET_HOURS_AVAILABILITY_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Set hours availability','Set hours availability','backend'),(97,'CALENDARS_CALENDAR_FORM_STATUS_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Status','Status','backend'),(98,'CALENDARS_CALENDAR_FORM_STATUS_AVAILABLE_TEXT','PARENT_CALENDARS_CALENDAR_FORM','Available','Available','backend'),(99,'CALENDARS_CALENDAR_FORM_STATUS_BOOKED_TEXT','PARENT_CALENDARS_CALENDAR_FORM','Booked','Booked','backend'),(100,'CALENDARS_CALENDAR_FORM_STATUS_SPECIAL_TEXT','PARENT_CALENDARS_CALENDAR_FORM','Special','Special','backend'),(101,'CALENDARS_CALENDAR_FORM_STATUS_UNAVAILABLE_TEXT','PARENT_CALENDARS_CALENDAR_FORM','Unavailable','Unavailable','backend'),(102,'CALENDARS_CALENDAR_FORM_PRICE_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Price','Price','backend'),(103,'CALENDARS_CALENDAR_FORM_PROMO_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Promo price','Promo price','backend'),(104,'CALENDARS_CALENDAR_FORM_AVAILABLE_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Number available','Number available','backend'),(105,'CALENDARS_CALENDAR_FORM_HOURS_DEFINITIONS_CHANGE_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Change hours definitions (changing the definitions will overwrite any previous hours data)','Change hours definitions (changing the definitions will overwrite any previous hours data)','backend'),(106,'CALENDARS_CALENDAR_FORM_HOURS_DEFINITIONS_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Hours definitions (hh:mm add one per line). Use only 24 hours format.','Hours definitions (hh:mm add one per line). Use only 24 hours format.','backend'),(107,'CALENDARS_CALENDAR_FORM_HOURS_SET_DEFAULT_DATA_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Set default hours values for this day(s). This will overwrite any existing data.','Set default hours values for this day(s). This will overwrite any existing data.','backend'),(108,'CALENDARS_CALENDAR_FORM_HOURS_INFO_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Information (users will see this message)','Information (users will see this message)','backend'),(109,'CALENDARS_CALENDAR_FORM_HOURS_NOTES_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Notes (only administrators will see this message)','Notes (only administrators will see this message)','backend'),(110,'CALENDARS_CALENDAR_FORM_GROUP_DAYS_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Group days','Group days','backend'),(111,'CALENDARS_CALENDAR_FORM_GROUP_HOURS_LABEL','PARENT_CALENDARS_CALENDAR_FORM','Group hours','Group hours','backend'),(112,'CALENDARS_CALENDAR_FORM_RESET_CONFIRMATION','PARENT_CALENDARS_CALENDAR_FORM','Are you sure you want to reset the data? If you reset the days, hours data from those days will reset too.','Are you sure you want to reset the data? If you reset the days, hours data from those days will reset too.','backend'),(113,'CALENDARS_CALENDAR_FORM_SUBMIT','PARENT_CALENDARS_CALENDAR_FORM','Submit','Submit','backend'),(114,'CALENDARS_CALENDAR_FORM_RESET','PARENT_CALENDARS_CALENDAR_FORM','Reset','Reset','backend'),(115,'CALENDARS_CALENDAR_FORM_CANCEL','PARENT_CALENDARS_CALENDAR_FORM','Cancel','Cancel','backend'),(116,'PARENT_CALENDARS_ADD_CALENDAR','','Calendars - Add calendar','Calendars - Add calendar','backend'),(117,'CALENDARS_ADD_CALENDAR_NAME','PARENT_CALENDARS_ADD_CALENDAR','New calendar','New calendar','backend'),(118,'CALENDARS_ADD_CALENDAR_SUBMIT','PARENT_CALENDARS_ADD_CALENDAR','Add calendar','Add calendar','backend'),(119,'CALENDARS_DUPLICATE_CALENDAR_SUBMIT','PARENT_CALENDARS_ADD_CALENDAR','Duplicate calendar','Duplicate calendar','backend'),(120,'CALENDARS_ADD_CALENDAR_ADDING','PARENT_CALENDARS_ADD_CALENDAR','Adding a new calendar ...','Adding a new calendar ...','backend'),(121,'CALENDARS_ADD_CALENDAR_SUCCESS','PARENT_CALENDARS_ADD_CALENDAR','You have successfully added a new calendar.','You have successfully added a new calendar.','backend'),(122,'PARENT_CALENDARS_EDIT_CALENDAR','','Calendars - Edit calendar','Calendars - Edit calendar','backend'),(123,'CALENDARS_EDIT_CALENDAR','PARENT_CALENDARS_EDIT_CALENDAR','Edit calendar availability','Edit calendar availability','backend'),(124,'CALENDARS_EDIT_CALENDAR_SETTINGS','PARENT_CALENDARS_EDIT_CALENDAR','Edit calendar settings','Edit calendar settings','backend'),(125,'CALENDARS_EDIT_CALENDAR_NOTIFICATIONS','PARENT_CALENDARS_EDIT_CALENDAR','Edit calendar notifications','Edit calendar notifications','backend'),(126,'CALENDARS_EDIT_CALENDAR_PAYMENT_GATEWAYS','PARENT_CALENDARS_EDIT_CALENDAR','Edit calendar payment gateways','Edit calendar payment gateways','backend'),(127,'CALENDARS_EDIT_CALENDAR_USERS_PERMISSIONS','PARENT_CALENDARS_EDIT_CALENDAR','Edit users permissions','Edit users permissions','backend'),(128,'CALENDARS_EDIT_CALENDAR_NEW_RESERVATIONS','PARENT_CALENDARS_EDIT_CALENDAR','new reservations','new reservations','backend'),(129,'CALENDARS_EDIT_CALENDAR_DELETE','PARENT_CALENDARS_EDIT_CALENDAR','Delete calendar','Delete calendar','backend'),(130,'PARENT_CALENDARS_DELETE_CALENDAR','','Calendars - Delete calendar','Calendars - Delete calendar','backend'),(131,'CALENDARS_DELETE_CALENDAR_CONFIRMATION','PARENT_CALENDARS_DELETE_CALENDAR','Are you sure you want to delete this calendar?','Are you sure you want to delete this calendar?','backend'),(132,'CALENDARS_DELETE_CALENDAR_DELETING','PARENT_CALENDARS_DELETE_CALENDAR','Deleting calendar ...','Deleting calendar ...','backend'),(133,'CALENDARS_DELETE_CALENDAR_SUCCESS','PARENT_CALENDARS_DELETE_CALENDAR','You have successfully deleted the calendar.','You have successfully deleted the calendar.','backend'),(134,'PARENT_CALENDARS_HELP','','Calendars - Help','Calendars - Help','backend'),(135,'CALENDARS_HELP','PARENT_CALENDARS_HELP','Click on a calendar item to open the editing area.','Click on a calendar item to open the editing area.','backend'),(136,'CALENDARS_ADD_CALENDAR_HELP','PARENT_CALENDARS_HELP','Click on the \"plus\" icon to add a calendar.','Click on the \"plus\" icon to add a calendar.','backend'),(137,'CALENDARS_EDIT_CALENDAR_HELP','PARENT_CALENDARS_HELP','Click on the \"calendar\" icon to edit calendar availability. Select the days and hours to edit them.','Click on the \"calendar\" icon to edit calendar availability. Select the days and hours to edit them.','backend'),(138,'CALENDARS_EDIT_CALENDAR_SETTINGS_HELP','PARENT_CALENDARS_HELP','Click on the \"gear\" icon to edit calendar settings.','Click on the \"gear\" icon to edit calendar settings.','backend'),(139,'CALENDARS_EDIT_CALENDAR_EMAILS_HELP','PARENT_CALENDARS_HELP','Click on the \"email\" icon to set emails/notifications options.','Click on the \"email\" icon to set emails/notifications options.','backend'),(140,'CALENDARS_EDIT_CALENDAR_PAYMENT_GATEWAYS_HELP','PARENT_CALENDARS_HELP','Click on the \"wallet\" icon to set payment options.','Click on the \"wallet\" icon to set payment options.','backend'),(141,'CALENDARS_EDIT_CALENDAR_USERS_HELP','PARENT_CALENDARS_HELP','Click on the \"users\" icon to set users permissions.','Click on the \"users\" icon to set users permissions.','backend'),(142,'CALENDARS_CALENDAR_NOTIFICATIONS_HELP','PARENT_CALENDARS_HELP','The \"bulb\" icon notifies you if you have new reservations.','The \"bulb\" icon notifies you if you have new reservations.','backend'),(143,'PARENT_CART','','Cart','Cart','backend'),(144,'CART_TITLE','PARENT_CART','Cart','Cart','all'),(145,'CART_IS_EMPTY','PARENT_CART','Cart is empty.','Cart is empty.','all'),(146,'CART_ERROR','PARENT_CART','Error','Error','all'),(147,'CART_UNAVAILABLE','PARENT_CART','The period you selected is not available anymore. Please review your reservations.','The period you selected is not available anymore. Please review your reservations.','all'),(148,'CART_OVERLAP','PARENT_CART','The period you selected will overlap with the ones you already added to cart. Please select another one.','The period you selected will overlap with the ones you already added to cart. Please select another one.','all'),(149,'PARENT_COUPONS','','Coupons','Coupons','backend'),(150,'COUPONS_TITLE','PARENT_COUPONS','Coupons','Coupons','backend'),(151,'COUPONS_CREATED_BY','PARENT_COUPONS','Created by','Created by','backend'),(152,'COUPONS_LOAD_SUCCESS','PARENT_COUPONS','Coupons list loaded.','Coupons list loaded.','backend'),(153,'COUPONS_NO_COUPONS','PARENT_COUPONS','No coupons. Click the above \"plus\" icon to add a new one.','No coupons. Click the above \"plus\" icon to add a new one.','backend'),(154,'PARENT_COUPONS_COUPON','','Coupons - Coupon','Coupons - Coupon','backend'),(155,'COUPONS_COUPON_NAME','PARENT_COUPONS_COUPON','Name','Name','backend'),(156,'COUPONS_COUPON_LANGUAGE','PARENT_COUPONS_COUPON','Language','Language','backend'),(157,'COUPONS_COUPON_LABEL','PARENT_COUPONS_COUPON','Label','Label','backend'),(158,'COUPONS_COUPON_CODE','PARENT_COUPONS_COUPON','Code','Code','backend'),(159,'COUPONS_COUPON_CODE_GENERATE','PARENT_COUPONS_COUPON','Generate a random code','Generate a random code','backend'),(160,'COUPONS_COUPON_START_DATE','PARENT_COUPONS_COUPON','Start date','Start date','backend'),(161,'COUPONS_COUPON_END_DATE','PARENT_COUPONS_COUPON','End date','End date','backend'),(162,'COUPONS_COUPON_START_HOUR','PARENT_COUPONS_COUPON','Start hour','Start hour','backend'),(163,'COUPONS_COUPON_END_HOUR','PARENT_COUPONS_COUPON','End hour','End hour','backend'),(164,'COUPONS_COUPON_NO_COUPONS','PARENT_COUPONS_COUPON','Number of coupons','Number of coupons','backend'),(165,'COUPONS_COUPON_OPERATION','PARENT_COUPONS_COUPON','Operation','Operation','backend'),(166,'COUPONS_COUPON_PRICE','PARENT_COUPONS_COUPON','Price/Percent','Price/Percent','backend'),(167,'COUPONS_COUPON_PRICE_TYPE','PARENT_COUPONS_COUPON','Price type','Price type','backend'),(168,'COUPONS_COUPON_PRICE_TYPE_FIXED','PARENT_COUPONS_COUPON','Fixed','Fixed','backend'),(169,'COUPONS_COUPON_PRICE_TYPE_PERCENT','PARENT_COUPONS_COUPON','Percent','Percent','backend'),(170,'COUPONS_COUPON_PRICE_BY','PARENT_COUPONS_COUPON','Price by','Price by','backend'),(171,'COUPONS_COUPON_PRICE_BY_ONCE','PARENT_COUPONS_COUPON','Once','Once','backend'),(172,'COUPONS_COUPON_PRICE_BY_PERIOD','PARENT_COUPONS_COUPON','day/hour','day/hour','backend'),(173,'COUPONS_COUPON_LOADED','PARENT_COUPONS_COUPON','Coupon loaded.','Coupon loaded.','backend'),(174,'PARENT_COUPONS_ADD_COUPON','','Coupons - Add coupon','Coupons - Add coupon','backend'),(175,'COUPONS_ADD_COUPON_NAME','PARENT_COUPONS_ADD_COUPON','New coupon','New coupon','backend'),(176,'COUPONS_ADD_COUPON_LABEL','PARENT_COUPONS_ADD_COUPON','Coupon','Coupon','backend'),(177,'COUPONS_ADD_COUPON_SUBMIT','PARENT_COUPONS_ADD_COUPON','Add coupon','Add coupon','backend'),(178,'COUPONS_ADD_COUPON_ADDING','PARENT_COUPONS_ADD_COUPON','Adding a new coupon ...','Adding a new coupon ...','backend'),(179,'COUPONS_ADD_COUPON_SUCCESS','PARENT_COUPONS_ADD_COUPON','You have successfully added a new coupon.','You have successfully added a new coupon.','backend'),(180,'PARENT_COUPONS_DELETE_COUPON','','Coupons - Delete coupon','Coupons - Delete coupon','backend'),(181,'COUPONS_DELETE_COUPON_CONFIRMATION','PARENT_COUPONS_DELETE_COUPON','Are you sure you want to delete this coupon?','Are you sure you want to delete this coupon?','backend'),(182,'COUPONS_DELETE_COUPON_SUBMIT','PARENT_COUPONS_DELETE_COUPON','Delete coupon','Delete coupon','backend'),(183,'COUPONS_DELETE_COUPON_DELETING','PARENT_COUPONS_DELETE_COUPON','Deleting coupon ...','Deleting coupon ...','backend'),(184,'COUPONS_DELETE_COUPON_SUCCESS','PARENT_COUPONS_DELETE_COUPON','You have successfully deleted the coupon.','You have successfully deleted the coupon.','backend'),(185,'PARENT_COUPONS_HELP','','Coupons - Help','Coupons - Help','backend'),(186,'COUPONS_HELP','PARENT_COUPONS_HELP','Click on a coupon item to open the editing area.','Click on a coupon item to open the editing area.','backend'),(187,'COUPONS_ADD_COUPON_HELP','PARENT_COUPONS_HELP','Click on the \"plus\" icon to add a coupon.','Click on the \"plus\" icon to add a coupon.','backend'),(188,'COUPONS_COUPON_HELP','PARENT_COUPONS_HELP','Click the group \"trash\" icon to delete the coupon.','Click the group \"trash\" icon to delete the coupon.','backend'),(189,'COUPONS_COUPON_NAME_HELP','PARENT_COUPONS_HELP','Change coupon name.','Change coupon name.','backend'),(190,'COUPONS_COUPON_LANGUAGE_HELP','PARENT_COUPONS_HELP','Change to the language you want to edit the coupon.','Change to the language you want to edit the coupon.','backend'),(191,'COUPONS_COUPON_LABEL_HELP','PARENT_COUPONS_HELP','Enter coupon label.','Enter coupon label.','backend'),(192,'COUPONS_COUPON_CODE_HELP','PARENT_COUPONS_HELP','Enter coupon code.','Enter coupon code.','backend'),(193,'COUPONS_COUPON_START_DATE_HELP','PARENT_COUPONS_HELP','Enter coupon start date, when the coupon will start being used.. Leave it blank to start today.','Enter coupon start date, when the coupon will start being used.. Leave it blank to start today.','backend'),(194,'COUPONS_COUPON_END_DATE_HELP','PARENT_COUPONS_HELP','Enter coupon end date, when the coupon will stop being used. Leave it blank for the coupons to have an unlimited time lapse.','Enter coupon end date, when the coupon will stop being used. Leave it blank for the coupons to have an unlimited time lapse.','backend'),(195,'COUPONS_COUPON_START_HOUR_HELP','PARENT_COUPONS_HELP','Enter coupon start hour, when the coupon will start being used. Leave it blank so you can use the coupons from the start of the day.','Enter coupon start hour, when the coupon will start being used. Leave it blank so you can use the coupons from the start of the day.','backend'),(196,'COUPONS_COUPON_END_HOUR_HELP','PARENT_COUPONS_HELP','Enter coupon end hour, when the coupon will end being used. Leave it blank so you can use the coupons until the end of the day.','Enter coupon end hour, when the coupon will end being used. Leave it blank so you can use the coupons until the end of the day.','backend'),(197,'COUPONS_COUPON_NO_COUPONS_HELP','PARENT_COUPONS_HELP','Enter the number of coupons available. Leave it blank for unlimited number of coupons.','Enter the number of coupons available. Leave it blank for unlimited number of coupons.','backend'),(198,'COUPONS_COUPON_OPERATION_HELP','PARENT_COUPONS_HELP','Select coupon price operation. You can add or subtract a value.','Select coupon price operation. You can add or subtract a value.','backend'),(199,'COUPONS_COUPON_PRICE_HELP','PARENT_COUPONS_HELP','Enter coupon price.','Enter coupon price.','backend'),(200,'COUPONS_COUPON_PRICE_TYPE_HELP','PARENT_COUPONS_HELP','Select coupon price type. It can be a fixed value or a percent from price.','Select coupon price type. It can be a fixed value or a percent from price.','backend'),(201,'COUPONS_COUPON_PRICE_BY_HELP','PARENT_COUPONS_HELP','Select coupon price by. The price can be calculated once or by day/hour.','Select coupon price by. The price can be calculated once or by day/hour.','backend'),(202,'PARENT_COUPONS_FRONT_END','','Coupons - Front end','Coupons - Front end','backend'),(203,'COUPONS_FRONT_END_TITLE','PARENT_COUPONS_FRONT_END','Coupons','Coupons','all'),(204,'COUPONS_FRONT_END_CODE','PARENT_COUPONS_FRONT_END','Enter code','Enter code','all'),(205,'COUPONS_FRONT_END_VERIFY','PARENT_COUPONS_FRONT_END','Verify code','Verify code','all'),(206,'COUPONS_FRONT_END_VERIFY_SUCCESS','PARENT_COUPONS_FRONT_END','The coupon code is valid.','The coupon code is valid.','all'),(207,'COUPONS_FRONT_END_VERIFY_ERROR','PARENT_COUPONS_FRONT_END','The coupon code is invalid. Please enter another one.','The coupon code is invalid. Please enter another one.','all'),(208,'COUPONS_FRONT_END_USE','PARENT_COUPONS_FRONT_END','Use coupon','Use coupon','all'),(209,'COUPONS_FRONT_END_BY_DAY','PARENT_COUPONS_FRONT_END','day','day','all'),(210,'COUPONS_FRONT_END_BY_HOUR','PARENT_COUPONS_FRONT_END','hour','hour','all'),(211,'PARENT_DASHBOARD','','Dashboard','Dashboard','backend'),(212,'DASHBOARD_TITLE','PARENT_DASHBOARD','Dashboard','Dashboard','backend'),(213,'DASHBOARD_SUBTITLE','PARENT_DASHBOARD','Welcome to Pinpoint Booking System!','Welcome to Pinpoint Booking System!','backend'),(214,'DASHBOARD_TEXT','PARENT_DASHBOARD','This plugin will help you to easily create a booking/reservation system on your WordPress website or blog. This is intended to book, anything, anywhere, anytime ... so if you have any suggestions please tell us.','This plugin will help you to easily create a booking/reservation system on your WordPress website or blog. This is intended to book, anything, anywhere, anytime ... so if you have any suggestions please tell us.','backend'),(215,'DASHBOARD_GET_STARTED','PARENT_DASHBOARD','Get started','Get started','backend'),(216,'DASHBOARD_GET_STARTED_CALENDARS','PARENT_DASHBOARD','Add a new calendar','Add a new calendar','backend'),(217,'DASHBOARD_GET_STARTED_CALENDARS_VIEW','PARENT_DASHBOARD','View calendars','View calendars','backend'),(218,'DASHBOARD_GET_STARTED_EVENTS','PARENT_DASHBOARD','Add a new event','Add a new event','backend'),(219,'DASHBOARD_GET_STARTED_STAFF','PARENT_DASHBOARD','Add a staff member','Add a staff member','backend'),(220,'DASHBOARD_GET_STARTED_LOCATIONS','PARENT_DASHBOARD','Add a new location','Add a new location','backend'),(221,'DASHBOARD_GET_STARTED_RESERVATIONS','PARENT_DASHBOARD','View reservations','View reservations','backend'),(222,'DASHBOARD_GET_STARTED_REVIEWS','PARENT_DASHBOARD','View reviews','View reviews','backend'),(223,'DASHBOARD_MORE_ACTIONS','PARENT_DASHBOARD','More actions','More actions','backend'),(224,'DASHBOARD_MORE_ACTIONS_ADDONS','PARENT_DASHBOARD','Get add-ons!','Get add-ons!','backend'),(225,'DASHBOARD_MORE_ACTIONS_COUPONS','PARENT_DASHBOARD','Add coupons','Add coupons','backend'),(226,'DASHBOARD_MORE_ACTIONS_DISCOUNTS','PARENT_DASHBOARD','Add discounts','Add discounts','backend'),(227,'DASHBOARD_MORE_ACTIONS_EMAILS','PARENT_DASHBOARD','Add email templates','Add email templates','backend'),(228,'DASHBOARD_MORE_ACTIONS_EXTRAS','PARENT_DASHBOARD','Add extras','Add extras','backend'),(229,'DASHBOARD_MORE_ACTIONS_FEES','PARENT_DASHBOARD','Add taxes & fees','Add taxes & fees','backend'),(230,'DASHBOARD_MORE_ACTIONS_FORMS','PARENT_DASHBOARD','Add forms','Add forms','backend'),(231,'DASHBOARD_MORE_ACTIONS_RULES','PARENT_DASHBOARD','Add rules','Add rules','backend'),(232,'DASHBOARD_MORE_ACTIONS_SEARCH','PARENT_DASHBOARD','Add search','Add search','backend'),(233,'DASHBOARD_MORE_ACTIONS_SETTINGS','PARENT_DASHBOARD','Change settings','Change settings','backend'),(234,'DASHBOARD_MORE_ACTIONS_TEMPLATES','PARENT_DASHBOARD','Add templates','Add templates','backend'),(235,'DASHBOARD_MORE_ACTIONS_THEMES','PARENT_DASHBOARD','Get themes!','Get themes!','backend'),(236,'DASHBOARD_MORE_ACTIONS_TOOLS','PARENT_DASHBOARD','Tools','Tools','backend'),(237,'DASHBOARD_MORE_ACTIONS_TRANSLATION','PARENT_DASHBOARD','Change translation','Change translation','backend'),(238,'DASHBOARD_API_TITLE','PARENT_DASHBOARD','API key','API key','backend'),(239,'DASHBOARD_API_RESET','PARENT_DASHBOARD','Reset API key','Reset API key','backend'),(240,'DASHBOARD_API_RESET_SUCCESS','PARENT_DASHBOARD','API key was reset successfully!','API key was reset successfully!','backend'),(241,'DASHBOARD_API_HELP','PARENT_DASHBOARD','This is the key you need to use the API to access data from Pinpoint booking system. Each user has their own unique key, which can be reset using the adjacent button.','This is the key you need to use the API to access data from Pinpoint booking system. Each user has their own unique key, which can be reset using the adjacent button.','backend'),(242,'DASHBOARD_SERVER_TITLE','PARENT_DASHBOARD','Server environment','Server environment','backend'),(243,'DASHBOARD_SERVER_REQUIRED','PARENT_DASHBOARD','Required','Required','backend'),(244,'DASHBOARD_SERVER_AVAILABLE','PARENT_DASHBOARD','Available','Available','backend'),(245,'DASHBOARD_SERVER_STATUS','PARENT_DASHBOARD','Status','Status','backend'),(246,'DASHBOARD_SERVER_NO','PARENT_DASHBOARD','No','No','backend'),(247,'DASHBOARD_SERVER_YES','PARENT_DASHBOARD','Yes','Yes','backend'),(248,'DASHBOARD_SERVER_VERSION','PARENT_DASHBOARD','Pinpoint Booking System version','Pinpoint Booking System version','backend'),(249,'DASHBOARD_SERVER_WORDPRESS_VERSION','PARENT_DASHBOARD','WordPress version','WordPress version','backend'),(250,'DASHBOARD_SERVER_WORDPRESS_MULTISITE','PARENT_DASHBOARD','WordPress multisite','WordPress multisite','backend'),(251,'DASHBOARD_SERVER_WOOCOMMERCE_VERSION','PARENT_DASHBOARD','WooCommerce version','WooCommerce version','backend'),(252,'DASHBOARD_SERVER_WOOCOMMERCE_ENABLE_CODE','PARENT_DASHBOARD','code is enabled even if WooCommerce plugin is not detected','code is enabled even if WooCommerce plugin is not detected','backend'),(253,'DASHBOARD_SERVER_PHP_VERSION','PARENT_DASHBOARD','PHP version','PHP version','backend'),(254,'DASHBOARD_SERVER_MYSQL_VERSION','PARENT_DASHBOARD','MySQL version','MySQL version','backend'),(255,'DASHBOARD_SERVER_MEMORY_LIMIT','PARENT_DASHBOARD','Memory limit','Memory limit','backend'),(256,'DASHBOARD_SERVER_MEMORY_LIMIT_WP','PARENT_DASHBOARD','WordPress memory limit','WordPress memory limit','backend'),(257,'DASHBOARD_SERVER_MEMORY_LIMIT_WP_MAX','PARENT_DASHBOARD','WordPress maximum memory limit','WordPress maximum memory limit','backend'),(258,'DASHBOARD_SERVER_MEMORY_LIMIT_WOOCOMMERCE','PARENT_DASHBOARD','WooCommerce memory limit','WooCommerce memory limit','backend'),(259,'DASHBOARD_SERVER_CURL_VERSION','PARENT_DASHBOARD','cURL version - necessary for TLS security protocol','cURL version - necessary for TLS security protocol','backend'),(260,'PARENT_DISCOUNTS','','Discounts','Discounts','backend'),(261,'DISCOUNTS_TITLE','PARENT_DISCOUNTS','Discounts','Discounts','backend'),(262,'DISCOUNTS_CREATED_BY','PARENT_DISCOUNTS','Created by','Created by','backend'),(263,'DISCOUNTS_LOAD_SUCCESS','PARENT_DISCOUNTS','Discounts list loaded.','Discounts list loaded.','backend'),(264,'DISCOUNTS_NO_DISCOUNTS','PARENT_DISCOUNTS','No discounts. Click the above \"plus\" icon to add a new one.','No discounts. Click the above \"plus\" icon to add a new one.','backend'),(265,'PARENT_DISCOUNTS_DISCOUNT','','Discounts - Discount','Discounts - Discount','backend'),(266,'DISCOUNTS_DISCOUNT_NAME','PARENT_DISCOUNTS_DISCOUNT','Name','Name','backend'),(267,'DISCOUNTS_DISCOUNT_LANGUAGE','PARENT_DISCOUNTS_DISCOUNT_ITEM','Language','Language','backend'),(268,'DISCOUNTS_DISCOUNT_EXTRAS','PARENT_DISCOUNTS_DISCOUNT_ITEM','Add the extra<<single-quote>>s price in the calculations','Add the extra<<single-quote>>s price in the calculations','backend'),(269,'DISCOUNTS_DISCOUNT_LOADED','PARENT_DISCOUNTS_DISCOUNT','Discount loaded.','Discount loaded.','backend'),(270,'PARENT_DISCOUNTS_ADD_DISCOUNT','','Discounts - Add discount','Discounts - Add discount','backend'),(271,'DISCOUNTS_ADD_DISCOUNT_NAME','PARENT_DISCOUNTS_ADD_DISCOUNT','New discount','New discount','backend'),(272,'DISCOUNTS_ADD_DISCOUNT_SUBMIT','PARENT_DISCOUNTS_ADD_DISCOUNT','Add discount','Add discount','backend'),(273,'DISCOUNTS_ADD_DISCOUNT_ADDING','PARENT_DISCOUNTS_ADD_DISCOUNT','Adding a new discount ...','Adding a new discount ...','backend'),(274,'DISCOUNTS_ADD_DISCOUNT_SUCCESS','PARENT_DISCOUNTS_ADD_DISCOUNT','You have successfully added a new discount.','You have successfully added a new discount.','backend'),(275,'PARENT_DISCOUNTS_DELETE_DISCOUNT','','Discounts - Delete discount','Discounts - Delete discount','backend'),(276,'DISCOUNTS_DELETE_DISCOUNT_CONFIRMATION','PARENT_DISCOUNTS_DELETE_DISCOUNT','Are you sure you want to delete this discount?','Are you sure you want to delete this discount?','backend'),(277,'DISCOUNTS_DELETE_DISCOUNT_SUBMIT','PARENT_DISCOUNTS_DELETE_DISCOUNT','Delete discount','Delete discount','backend'),(278,'DISCOUNTS_DELETE_DISCOUNT_DELETING','PARENT_DISCOUNTS_DELETE_DISCOUNT','Deleting discount ...','Deleting discount ...','backend'),(279,'DISCOUNTS_DELETE_DISCOUNT_SUCCESS','PARENT_DISCOUNTS_DELETE_DISCOUNT','You have successfully deleted the discount.','You have successfully deleted the discount.','backend'),(280,'PARENT_DISCOUNTS_DISCOUNT_ITEMS','','Discounts - Discount items','Discounts - Discount items','backend'),(281,'DISCOUNTS_DISCOUNT_ITEMS','PARENT_DISCOUNTS_DISCOUNT_ITEMS','Discount items','Discount items','backend'),(282,'PARENT_DISCOUNTS_DISCOUNT_ITEM','','Discounts - Discount item','Discounts - Discount item','backend'),(283,'DISCOUNTS_DISCOUNT_ITEM_SHOW_SETTINGS','PARENT_DISCOUNTS_DISCOUNT_ITEM','Show settings','Show settings','backend'),(284,'DISCOUNTS_DISCOUNT_ITEM_HIDE_SETTINGS','PARENT_DISCOUNTS_DISCOUNT_ITEM','Hide settings','Hide settings','backend'),(285,'DISCOUNTS_DISCOUNT_ITEM_SORT','PARENT_DISCOUNTS_DISCOUNT_ITEM','Sort','Sort','backend'),(286,'DISCOUNTS_DISCOUNT_ITEM_LABEL_LABEL','PARENT_DISCOUNTS_DISCOUNT_ITEM','Label','Label','backend'),(287,'DISCOUNTS_DISCOUNT_ITEM_START_TIME_LAPSE_LABEL','PARENT_DISCOUNTS_DISCOUNT_ITEM','Start time lapse (days/hours)','Start time lapse (days/hours)','backend'),(288,'DISCOUNTS_DISCOUNT_ITEM_END_TIME_LAPSE_LABEL','PARENT_DISCOUNTS_DISCOUNT_ITEM','End time lapse (days/hours)','End time lapse (days/hours)','backend'),(289,'DISCOUNTS_DISCOUNT_ITEM_OPERATION_LABEL','PARENT_DISCOUNTS_DISCOUNT_ITEM','Operation','Operation','backend'),(290,'DISCOUNTS_DISCOUNT_ITEM_PRICE_LABEL','PARENT_DISCOUNTS_DISCOUNT_ITEM','Price/Percent','Price/Percent','backend'),(291,'DISCOUNTS_DISCOUNT_ITEM_PRICE_TYPE_LABEL','PARENT_DISCOUNTS_DISCOUNT_ITEM','Price type','Price type','backend'),(292,'DISCOUNTS_DISCOUNT_ITEM_PRICE_BY_LABEL','PARENT_DISCOUNTS_DISCOUNT_ITEM','Price by','Price by','backend'),(293,'PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM','','Discounts - Add discount item','Discounts - Add discount item','backend'),(294,'DISCOUNTS_DISCOUNT_ADD_ITEM_SUBMIT','PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM','Add item','Add item','backend'),(295,'DISCOUNTS_DISCOUNT_ADD_ITEM_LABEL','PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM','New item','New item','backend'),(296,'DISCOUNTS_DISCOUNT_ADD_ITEM_ADDING','PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM','Adding a new discount item ...','Adding a new discount item ...','backend'),(297,'DISCOUNTS_DISCOUNT_ADD_ITEM_SUCCESS','PARENT_DISCOUNTS_DISCOUNT_ADD_ITEM','You have successfully added a new discount item.','You have successfully added a new discount item.','backend'),(298,'PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM','','Discounts - Delete discount item','Discounts - Delete discount item','backend'),(299,'DISCOUNTS_DISCOUNT_DELETE_ITEM_CONFIRMATION','PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM','Are you sure you want to delete this discount item?','Are you sure you want to delete this discount item?','backend'),(300,'DISCOUNTS_DISCOUNT_DELETE_ITEM_SUBMIT','PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM','Delete','Delete','backend'),(301,'DISCOUNTS_DISCOUNT_DELETE_ITEM_DELETING','PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM','Deleting discount item ...','Deleting discount item ...','backend'),(302,'DISCOUNTS_DISCOUNT_DELETE_ITEM_SUCCESS','PARENT_DISCOUNTS_DISCOUNT_DELETE_ITEM','You have successfully deleted the discount item.','You have successfully deleted the discount item.','backend'),(303,'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES','','Discounts - Discount item - Rules','Discounts - Discount item - Rules','backend'),(304,'DISCOUNTS_DISCOUNT_ITEM_RULES_LABEL','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES','Rules','Rules','backend'),(305,'DISCOUNTS_DISCOUNT_ITEM_RULES_LABELS_OPERATION','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES','Operation','Operation','backend'),(306,'DISCOUNTS_DISCOUNT_ITEM_RULES_LABELS_PRICE','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES','Price/Percent','Price/Percent','backend'),(307,'DISCOUNTS_DISCOUNT_ITEM_RULES_LABELS_PRICE_TYPE','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES','Price type','Price type','backend'),(308,'DISCOUNTS_DISCOUNT_ITEM_RULES_LABELS_PRICE_BY','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULES','Price by','Price by','backend'),(309,'PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE','','Discounts - Discount item - Rule','Discounts - Discount item - Rule','backend'),(310,'DISCOUNTS_DISCOUNT_ITEM_RULES_PRICE_TYPE_FIXED','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE','Fixed','Fixed','backend'),(311,'DISCOUNTS_DISCOUNT_ITEM_RULES_PRICE_TYPE_PERCENT','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE','Percent','Percent','backend'),(312,'DISCOUNTS_DISCOUNT_ITEM_RULES_PRICE_BY_ONCE','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE','Once','Once','backend'),(313,'DISCOUNTS_DISCOUNT_ITEM_RULES_PRICE_BY_PERIOD','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE','day/hour','day/hour','backend'),(314,'DISCOUNTS_DISCOUNT_ITEM_RULE_SORT','PARENT_DISCOUNTS_DISCOUNT_ITEM_RULE','Sort','Sort','backend'),(315,'PARENT_DISCOUNTS_DISCOUNT_ITEM_ADD_RULE','','Discounts - Discount item - Add rule','Discounts - Discount item - Add rule','backend'),(316,'DISCOUNTS_DISCOUNT_ITEM_ADD_RULE_SUBMIT','PARENT_DISCOUNTS_DISCOUNT_ITEM_ADD_RULE','Add rule','Add rule','backend'),(317,'DISCOUNTS_DISCOUNT_ITEM_ADD_RULE_ADDING','PARENT_DISCOUNTS_DISCOUNT_ITEM_ADD_RULE','Adding a new rule ...','Adding a new rule ...','backend'),(318,'DISCOUNTS_DISCOUNT_ITEM_ADD_RULE_SUCCESS','PARENT_DISCOUNTS_DISCOUNT_ITEM_ADD_RULE','You have successfully added a new rule.','You have successfully added a new rule.','backend'),(319,'PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE','','Discounts - Discount item - Delete rule','Discounts - Discount item - Delete rule','backend'),(320,'DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE_CONFIRMATION','PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE','Are you sure you want to delete this  rule?','Are you sure you want to delete this  rule?','backend'),(321,'DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE_SUBMIT','PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE','Delete','Delete','backend'),(322,'DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE_DELETING','PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE','Deleting  rule ...','Deleting  rule ...','backend'),(323,'DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE_SUCCESS','PARENT_DISCOUNTS_DISCOUNT_ITEM_DELETE_RULE','You have successfully deleted the  rule.','You have successfully deleted the  rule.','backend'),(324,'PARENT_DISCOUNTS_HELP','','Discounts - Help','Discounts - Help','backend'),(325,'DISCOUNTS_HELP','PARENT_DISCOUNTS_HELP','Click on a discount rule to open the editing area.','Click on a discount rule to open the editing area.','backend'),(326,'DISCOUNTS_ADD_DISCOUNT_HELP','PARENT_DISCOUNTS_HELP','Click on the \"plus\" icon to add a discount.','Click on the \"plus\" icon to add a discount.','backend'),(327,'DISCOUNTS_DISCOUNT_NAME_HELP','PARENT_DISCOUNTS_HELP','Change discount name.','Change discount name.','backend'),(328,'DISCOUNTS_DISCOUNT_LANGUAGE_HELP','PARENT_DISCOUNTS_HELP','Change to the language you want to edit the discount.','Change to the language you want to edit the discount.','backend'),(329,'DISCOUNTS_DISCOUNT_EXTRAS_HELP','PARENT_DISCOUNTS_HELP','Calculate reservation discounts including extras price, if used.','Calculate reservation discounts including extras price, if used.','backend'),(330,'DISCOUNTS_DISCOUNT_ADD_ITEM_HELP','PARENT_DISCOUNTS_HELP','Click on the bellow \"plus\" icon to add a new discount item.','Click on the bellow \"plus\" icon to add a new discount item.','backend'),(331,'DISCOUNTS_DISCOUNT_EDIT_ITEM_HELP','PARENT_DISCOUNTS_HELP','Click the item \"expand\" icon to display/hide the settings.','Click the item \"expand\" icon to display/hide the settings.','backend'),(332,'DISCOUNTS_DISCOUNT_DELETE_ITEM_HELP','PARENT_DISCOUNTS_HELP','Click the item \"trash\" icon to delete it.','Click the item \"trash\" icon to delete it.','backend'),(333,'DISCOUNTS_DISCOUNT_SORT_ITEM_HELP','PARENT_DISCOUNTS_HELP','Drag the item \"arrows\" icon to sort it.','Drag the item \"arrows\" icon to sort it.','backend'),(334,'DISCOUNTS_DISCOUNT_ITEM_LABEL_HELP','PARENT_DISCOUNTS_HELP','Enter item label.','Enter item label.','backend'),(335,'DISCOUNTS_DISCOUNT_ITEM_START_TIME_LAPSE_HELP','PARENT_DISCOUNTS_HELP','Enter the number of days/hours for the beginning of the time lapse. Leave it blank for it to start from 1 day/hour.','Enter the number of days/hours for the beginning of the time lapse. Leave it blank for it to start from 1 day/hour.','backend'),(336,'DISCOUNTS_DISCOUNT_ITEM_END_TIME_LAPSE_HELP','PARENT_DISCOUNTS_HELP','Enter the number of days/hours for the ending of the time lapse. Leave it blank to be unlimited.','Enter the number of days/hours for the ending of the time lapse. Leave it blank to be unlimited.','backend'),(337,'DISCOUNTS_DISCOUNT_ITEM_OPERATION_HELP','PARENT_DISCOUNTS_HELP','Select item price operation. You can add or subtract a value.','Select item price operation. You can add or subtract a value.','backend'),(338,'DISCOUNTS_DISCOUNT_ITEM_PRICE_HELP','PARENT_DISCOUNTS_HELP','Enter item price.','Enter item price.','backend'),(339,'DISCOUNTS_DISCOUNT_ITEM_PRICE_TYPE_HELP','PARENT_DISCOUNTS_HELP','Select item price type. It can be a fixed value or a percent from price.','Select item price type. It can be a fixed value or a percent from price.','backend'),(340,'DISCOUNTS_DISCOUNT_ITEM_PRICE_BY_HELP','PARENT_DISCOUNTS_HELP','Select item price by. The price can be calculated once or by day/hour.','Select item price by. The price can be calculated once or by day/hour.','backend'),(341,'DISCOUNTS_DISCOUNT_ITEM_RULES_HELP','PARENT_DISCOUNTS_HELP','Click the \"plus\" icon to add another rule and enter the name and price conditions. Click on the \"delete\" icon to remove the rule. Add dates and hours intervals for which you want the rule to apply.','Click the \"plus\" icon to add another rule and enter the name and price conditions. Click on the \"delete\" icon to remove the rule. Add dates and hours intervals for which you want the rule to apply.','backend'),(342,'PARENT_DISCOUNTS_FRONT_END','','Discounts - Front end','Discounts - Front end','backend'),(343,'DISCOUNTS_FRONT_END_TITLE','PARENT_DISCOUNTS_FRONT_END','Discount','Discount','all'),(344,'DISCOUNTS_FRONT_END_BY_DAY','PARENT_DISCOUNTS_FRONT_END','day','day','all'),(345,'DISCOUNTS_FRONT_END_BY_HOUR','PARENT_DISCOUNTS_FRONT_END','hour','hour','all'),(346,'PARENT_EMAILS','','Email templates','Email templates','backend'),(347,'EMAILS_TITLE','PARENT_EMAILS','Email templates','Email templates','backend'),(348,'EMAILS_CREATED_BY','PARENT_EMAILS','Created by','Created by','backend'),(349,'EMAILS_LOAD_SUCCESS','PARENT_EMAILS','Email templates  list loaded.','Email templates  list loaded.','backend'),(350,'EMAILS_NO_EMAILS','PARENT_EMAILS','No email templates. Click the above \"plus\" icon to add new ones.','No email templates. Click the above \"plus\" icon to add new ones.','backend'),(351,'PARENT_EMAILS_DEFAULT','','Email templates - Default messages','Email templates - Default messages','backend'),(352,'EMAILS_DEFAULT_NAME','PARENT_EMAILS_DEFAULT','Default email templates','Default email templates','backend'),(353,'EMAILS_DEFAULT_BOOK_ADMIN_SUBJECT','PARENT_EMAILS_DEFAULT','You received a booking request.','You received a booking request.','backend'),(354,'EMAILS_DEFAULT_BOOK_ADMIN','PARENT_EMAILS_DEFAULT','Below are the details. Go to admin to approve or reject the request.','Below are the details. Go to admin to approve or reject the request.','backend'),(355,'EMAILS_DEFAULT_BOOK_USER_SUBJECT','PARENT_EMAILS_DEFAULT','Your booking request has been sent.','Your booking request has been sent.','backend'),(356,'EMAILS_DEFAULT_BOOK_USER','PARENT_EMAILS_DEFAULT','Please wait for approval. Below are the details.','Please wait for approval. Below are the details.','backend'),(357,'EMAILS_DEFAULT_BOOK_WITH_APPROVAL_ADMIN_SUBJECT','PARENT_EMAILS_DEFAULT','You received a booking request.','You received a booking request.','backend'),(358,'EMAILS_DEFAULT_BOOK_WITH_APPROVAL_ADMIN','PARENT_EMAILS_DEFAULT','Below are the details. Go to admin to cancel the request.','Below are the details. Go to admin to cancel the request.','backend'),(359,'EMAILS_DEFAULT_BOOK_WITH_APPROVAL_USER_SUBJECT','PARENT_EMAILS_DEFAULT','Your booking request has been sent.','Your booking request has been sent.','backend'),(360,'EMAILS_DEFAULT_BOOK_WITH_APPROVAL_USER','PARENT_EMAILS_DEFAULT','Below are the details.','Below are the details.','backend'),(361,'EMAILS_DEFAULT_APPROVED_SUBJECT','PARENT_EMAILS_DEFAULT','Your booking request has been approved.','Your booking request has been approved.','backend'),(362,'EMAILS_DEFAULT_APPROVED','PARENT_EMAILS_DEFAULT','Congratulations! Your booking request has been approved. Details about your request are below.','Congratulations! Your booking request has been approved. Details about your request are below.','backend'),(363,'EMAILS_DEFAULT_CANCELED_SUBJECT','PARENT_EMAILS_DEFAULT','Your booking request has been canceled.','Your booking request has been canceled.','backend'),(364,'EMAILS_DEFAULT_CANCELED','PARENT_EMAILS_DEFAULT','I<<single-quote>>m sorry but your booking request has been canceled. Details about your request are below.','I<<single-quote>>m sorry but your booking request has been canceled. Details about your request are below.','backend'),(365,'EMAILS_DEFAULT_REJECTED_SUBJECT','PARENT_EMAILS_DEFAULT','Your booking request has been rejected.','Your booking request has been rejected.','backend'),(366,'EMAILS_DEFAULT_REJECTED','PARENT_EMAILS_DEFAULT','I<<single-quote>>m sorry but your booking request has been rejected. Details about your request are below.','I<<single-quote>>m sorry but your booking request has been rejected. Details about your request are below.','backend'),(367,'PARENT_EMAILS_EMAIL','','Email templates - Templates','Email templates - Templates','backend'),(368,'EMAILS_EMAIL_NAME','PARENT_EMAILS_EMAIL','Name','Name','backend'),(369,'EMAILS_EMAIL_LANGUAGE','PARENT_EMAILS_EMAIL','Language','Language','backend'),(370,'EMAILS_EMAIL_TEMPLATE_SELECT','PARENT_EMAILS_EMAIL','Select template','Select template','backend'),(371,'EMAILS_EMAIL_TEMPLATE_SELECT_BOOK_ADMIN','PARENT_EMAILS_EMAIL','Admin notification','Admin notification','backend'),(372,'EMAILS_EMAIL_TEMPLATE_SELECT_BOOK_USER','PARENT_EMAILS_EMAIL','User notification','User notification','backend'),(373,'EMAILS_EMAIL_TEMPLATE_SELECT_BOOK_WITH_APPROVAL_ADMIN','PARENT_EMAILS_EMAIL','Instant approval admin notification','Instant approval admin notification','backend'),(374,'EMAILS_EMAIL_TEMPLATE_SELECT_BOOK_WITH_APPROVAL_USER','PARENT_EMAILS_EMAIL','Instant approval user notification','Instant approval user notification','backend'),(375,'EMAILS_EMAIL_TEMPLATE_SELECT_APPROVED','PARENT_EMAILS_EMAIL','Approve reservation','Approve reservation','backend'),(376,'EMAILS_EMAIL_TEMPLATE_SELECT_CANCELED','PARENT_EMAILS_EMAIL','Cancel reservation','Cancel reservation','backend'),(377,'EMAILS_EMAIL_TEMPLATE_SELECT_REJECTED','PARENT_EMAILS_EMAIL','Reject reservation','Reject reservation','backend'),(378,'EMAILS_EMAIL_SUBJECT','PARENT_EMAILS_EMAIL','Subject','Subject','backend'),(379,'EMAILS_EMAIL_MESSAGE','PARENT_EMAILS_EMAIL','Message','Message','backend'),(380,'EMAILS_EMAIL_LOADED','PARENT_EMAILS_EMAIL','Email templates loaded.','Email templates loaded.','backend'),(381,'PARENT_EMAILS_ADD_EMAIL','','Email templates - Add templates','Email templates - Add templates','backend'),(382,'EMAILS_ADD_EMAIL_NAME','PARENT_EMAILS_ADD_EMAIL','New email templates','New email templates','backend'),(383,'EMAILS_ADD_EMAIL_SUBMIT','PARENT_EMAILS_ADD_EMAIL','Add email templates','Add email templates','backend'),(384,'EMAILS_ADD_EMAIL_ADDING','PARENT_EMAILS_ADD_EMAIL','Adding new email templates ...','Adding new email templates ...','backend'),(385,'EMAILS_ADD_EMAIL_SUCCESS','PARENT_EMAILS_ADD_EMAIL','You have successfully added new email templates.','You have successfully added new email templates.','backend'),(386,'PARENT_EMAILS_DELETE_EMAIL','','Email templates - Delete templates','Email templates - Delete templates','backend'),(387,'EMAILS_DELETE_EMAIL_CONFIRMATION','PARENT_EMAILS_DELETE_EMAIL','Are you sure you want to delete the email templates?','Are you sure you want to delete the email templates?','backend'),(388,'EMAILS_DELETE_EMAIL_SUBMIT','PARENT_EMAILS_DELETE_EMAIL','Delete email templates','Delete email templates','backend'),(389,'EMAILS_DELETE_EMAIL_DELETING','PARENT_EMAILS_DELETE_EMAIL','Deleting email templates ...','Deleting email templates ...','backend'),(390,'EMAILS_DELETE_EMAIL_SUCCESS','PARENT_EMAILS_DELETE_EMAIL','You have successfully deleted the email templates.','You have successfully deleted the email templates.','backend'),(391,'PARENT_EMAILS_HELP','','Email templates - Help','Email templates - Help','backend'),(392,'EMAILS_HELP','PARENT_EMAILS_HELP','Click on a templates item to open the editing area.','Click on a templates item to open the editing area.','backend'),(393,'EMAILS_ADD_EMAIL_HELP','PARENT_EMAILS_HELP','Click on the \"plus\" icon to add email templates.','Click on the \"plus\" icon to add email templates.','backend'),(394,'EMAILS_EMAIL_HELP','PARENT_EMAILS_HELP','Click the \"trash\" icon to delete the email.','Click the \"trash\" icon to delete the email.','backend'),(395,'EMAILS_EMAIL_NAME_HELP','PARENT_EMAILS_HELP','Change email templates name.','Change email templates name.','backend'),(396,'EMAILS_EMAIL_LANGUAGE_HELP','PARENT_EMAILS_HELP','Change to the language you want to edit the email templates.','Change to the language you want to edit the email templates.','backend'),(397,'EMAILS_EMAIL_TEMPLATE_SELECT_HELP','PARENT_EMAILS_HELP','Select the template you want to edit and modify the subject and message.','Select the template you want to edit and modify the subject and message.','backend'),(398,'PARENT_EXTRAS','','Extras','Extras','backend'),(399,'EXTRAS_TITLE','PARENT_EXTRAS','Extras','Extras','backend'),(400,'EXTRAS_CREATED_BY','PARENT_EXTRAS','Created by','Created by','backend'),(401,'EXTRAS_LOAD_SUCCESS','PARENT_EXTRAS','Extras list loaded.','Extras list loaded.','backend'),(402,'EXTRAS_NO_EXTRAS','PARENT_EXTRAS','No extras. Click the above \"plus\" icon to add a new one.','No extras. Click the above \"plus\" icon to add a new one.','backend'),(403,'PARENT_EXTRAS_DEFAULT','','Extras - Default data','Extras - Default data','backend'),(404,'EXTRAS_DEFAULT_PEOPLE','PARENT_EXTRAS_DEFAULT','People','People','backend'),(405,'EXTRAS_DEFAULT_ADULTS','PARENT_EXTRAS_DEFAULT','Adults','Adults','backend'),(406,'EXTRAS_DEFAULT_CHILDREN','PARENT_EXTRAS_DEFAULT','Children','Children','backend'),(407,'PARENT_EXTRAS_EXTRA','','Extras - Extra','Extras - Extra','backend'),(408,'EXTRAS_EXTRA_NAME','PARENT_EXTRAS_EXTRA','Name','Name','backend'),(409,'EXTRAS_EXTRA_LANGUAGE','PARENT_EXTRAS_EXTRA_GROUP','Language','Language','backend'),(410,'EXTRAS_EXTRA_LOADED','PARENT_EXTRAS_EXTRA','Extra loaded.','Extra loaded.','backend'),(411,'PARENT_EXTRAS_ADD_EXTRA','','Extras - Add extra','Extras - Add extra','backend'),(412,'EXTRAS_ADD_EXTRA_NAME','PARENT_EXTRAS_ADD_EXTRA','New extra','New extra','backend'),(413,'EXTRAS_ADD_EXTRA_SUBMIT','PARENT_EXTRAS_ADD_EXTRA','Add extra','Add extra','backend'),(414,'EXTRAS_ADD_EXTRA_ADDING','PARENT_EXTRAS_ADD_EXTRA','Adding a new extra ...','Adding a new extra ...','backend'),(415,'EXTRAS_ADD_EXTRA_SUCCESS','PARENT_EXTRAS_ADD_EXTRA','You have successfully added a new extra.','You have successfully added a new extra.','backend'),(416,'PARENT_EXTRAS_DELETE_EXTRA','','Extras - Delete extra','Extras - Delete extra','backend'),(417,'EXTRAS_DELETE_EXTRA_CONFIRMATION','PARENT_EXTRAS_DELETE_EXTRA','Are you sure you want to delete this extra?','Are you sure you want to delete this extra?','backend'),(418,'EXTRAS_DELETE_EXTRA_SUBMIT','PARENT_EXTRAS_DELETE_EXTRA','Delete extra','Delete extra','backend'),(419,'EXTRAS_DELETE_EXTRA_DELETING','PARENT_EXTRAS_DELETE_EXTRA','Deleting extra ...','Deleting extra ...','backend'),(420,'EXTRAS_DELETE_EXTRA_SUCCESS','PARENT_EXTRAS_DELETE_EXTRA','You have successfully deleted the extra.','You have successfully deleted the extra.','backend'),(421,'PARENT_EXTRAS_EXTRA_GROUPS','','Extras - Extra groups','Extras - Extra groups','backend'),(422,'EXTRAS_EXTRA_GROUPS','PARENT_EXTRAS_EXTRA_GROUPS','Extra fields','Extra fields','backend'),(423,'PARENT_EXTRAS_EXTRA_GROUP','','Extras - Extra group','Extras - Extra group','backend'),(424,'EXTRAS_EXTRA_GROUP_SHOW_SETTINGS','PARENT_EXTRAS_EXTRA_GROUP','Show settings','Show settings','backend'),(425,'EXTRAS_EXTRA_GROUP_HIDE_SETTINGS','PARENT_EXTRAS_EXTRA_GROUP','Hide settings','Hide settings','backend'),(426,'EXTRAS_EXTRA_GROUP_SORT','PARENT_EXTRAS_EXTRA_GROUP','Sort','Sort','backend'),(427,'EXTRAS_EXTRA_GROUP_LABEL_LABEL','PARENT_EXTRAS_EXTRA_GROUP','Label','Label','backend'),(428,'EXTRAS_EXTRA_GROUP_REQUIRED_LABEL','PARENT_EXTRAS_EXTRA_GROUP','Required','Required','backend'),(429,'EXTRAS_EXTRA_GROUP_NO_ITEMS_MULTIPLY_LABEL','PARENT_EXTRAS_EXTRA_GROUP','Multiply with No. Items','Multiply with No. Items','backend'),(430,'EXTRAS_EXTRA_GROUP_MULTIPLE_SELECT_LABEL','PARENT_EXTRAS_EXTRA_GROUP','Multiple select','Multiple select','backend'),(431,'PARENT_EXTRAS_EXTRA_ADD_GROUP','','Extras - Add extra group','Extras - Add extra group','backend'),(432,'EXTRAS_EXTRA_ADD_GROUP_SUBMIT','PARENT_EXTRAS_EXTRA_ADD_GROUP','Add group','Add group','backend'),(433,'EXTRAS_EXTRA_ADD_GROUP_LABEL','PARENT_EXTRAS_EXTRA_ADD_GROUP','New group','New group','backend'),(434,'EXTRAS_EXTRA_ADD_GROUP_ADDING','PARENT_EXTRAS_EXTRA_ADD_GROUP','Adding a new extra group ...','Adding a new extra group ...','backend'),(435,'EXTRAS_EXTRA_ADD_GROUP_SUCCESS','PARENT_EXTRAS_EXTRA_ADD_GROUP','You have successfully added a new extra group.','You have successfully added a new extra group.','backend'),(436,'PARENT_EXTRAS_EXTRA_DELETE_GROUP','','Extras - Delete extra group','Extras - Delete extra group','backend'),(437,'EXTRAS_EXTRA_DELETE_GROUP_CONFIRMATION','PARENT_EXTRAS_EXTRA_DELETE_GROUP','Are you sure you want to delete this extra group?','Are you sure you want to delete this extra group?','backend'),(438,'EXTRAS_EXTRA_DELETE_GROUP_SUBMIT','PARENT_EXTRAS_EXTRA_DELETE_GROUP','Delete','Delete','backend'),(439,'EXTRAS_EXTRA_DELETE_GROUP_DELETING','PARENT_EXTRAS_EXTRA_DELETE_GROUP','Deleting extra group ...','Deleting extra group ...','backend'),(440,'EXTRAS_EXTRA_DELETE_GROUP_SUCCESS','PARENT_EXTRAS_EXTRA_DELETE_GROUP','You have successfully deleted the extra group.','You have successfully deleted the extra group.','backend'),(441,'PARENT_EXTRAS_EXTRA_GROUP_ITEMS','','Extras - Extra group - Items','Extras - Extra group - Items','backend'),(442,'EXTRAS_EXTRA_GROUP_ITEMS_LABEL','PARENT_EXTRAS_EXTRA_GROUP_ITEMS','Items','Items','backend'),(443,'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_LABEL','PARENT_EXTRAS_EXTRA_GROUP_ITEMS','Label','Label','backend'),(444,'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_OPERATION','PARENT_EXTRAS_EXTRA_GROUP_ITEMS','Operation','Operation','backend'),(445,'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_PRICE','PARENT_EXTRAS_EXTRA_GROUP_ITEMS','Price/Percent','Price/Percent','backend'),(446,'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_PRICE_TYPE','PARENT_EXTRAS_EXTRA_GROUP_ITEMS','Price type','Price type','backend'),(447,'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_PRICE_BY','PARENT_EXTRAS_EXTRA_GROUP_ITEMS','Price by','Price by','backend'),(448,'EXTRAS_EXTRA_GROUP_ITEMS_LABELS_DEFAULT','PARENT_EXTRAS_EXTRA_GROUP_ITEMS','Set as default','Set as default','backend'),(449,'PARENT_EXTRAS_EXTRA_GROUP_ITEM','','Extras - Extra group - Item','Extras - Extra group - Item','backend'),(450,'EXTRAS_EXTRA_GROUP_ITEMS_PRICE_TYPE_FIXED','PARENT_EXTRAS_EXTRA_GROUP_ITEM','Fixed','Fixed','backend'),(451,'EXTRAS_EXTRA_GROUP_ITEMS_PRICE_TYPE_PERCENT','PARENT_EXTRAS_EXTRA_GROUP_ITEM','Percent','Percent','backend'),(452,'EXTRAS_EXTRA_GROUP_ITEMS_PRICE_BY_ONCE','PARENT_EXTRAS_EXTRA_GROUP_ITEM','Once','Once','backend'),(453,'EXTRAS_EXTRA_GROUP_ITEMS_PRICE_BY_PERIOD','PARENT_EXTRAS_EXTRA_GROUP_ITEM','day/hour','day/hour','backend'),(455,'EXTRAS_EXTRA_GROUP_ITEM_SORT','PARENT_EXTRAS_EXTRA_GROUP_ITEM','Sort','Sort','backend'),(456,'EXTRAS_EXTRA_GROUP_ITEMS_DEFAULT_NO','PARENT_EXTRAS_EXTRA_GROUP_ITEM','No','No','backend'),(457,'EXTRAS_EXTRA_GROUP_ITEMS_DEFAULT_YES','PARENT_EXTRAS_EXTRA_GROUP_ITEM','Yes','Yes','backend'),(458,'PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM','','Extras - Extra group - Add item','Extras - Extra group - Add item','backend'),(459,'EXTRAS_EXTRA_GROUP_ADD_ITEM_LABEL','PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM','New item','New item','backend'),(460,'EXTRAS_EXTRA_GROUP_ADD_ITEM_SUBMIT','PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM','Add item','Add item','backend'),(461,'EXTRAS_EXTRA_GROUP_ADD_ITEM_ADDING','PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM','Adding a new item ...','Adding a new item ...','backend'),(462,'EXTRAS_EXTRA_GROUP_ADD_ITEM_SUCCESS','PARENT_EXTRAS_EXTRA_GROUP_ADD_ITEM','You have successfully added a new item.','You have successfully added a new item.','backend'),(463,'PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM','','Extras - Extra group - Delete item','Extras - Extra group - Delete item','backend'),(464,'EXTRAS_EXTRA_GROUP_DELETE_ITEM_CONFIRMATION','PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM','Are you sure you want to delete this  item?','Are you sure you want to delete this  item?','backend'),(465,'EXTRAS_EXTRA_GROUP_DELETE_ITEM_SUBMIT','PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM','Delete','Delete','backend'),(466,'EXTRAS_EXTRA_GROUP_DELETE_ITEM_DELETING','PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM','Deleting  item ...','Deleting  item ...','backend'),(467,'EXTRAS_EXTRA_GROUP_DELETE_ITEM_SUCCESS','PARENT_EXTRAS_EXTRA_GROUP_DELETE_ITEM','You have successfully deleted the  item.','You have successfully deleted the  item.','backend'),(468,'PARENT_EXTRAS_HELP','','Extras - Help','Extras - Help','backend'),(469,'EXTRAS_HELP','PARENT_EXTRAS_HELP','Click on a extra item to open the editing area.','Click on a extra item to open the editing area.','backend'),(470,'EXTRAS_ADD_EXTRA_HELP','PARENT_EXTRAS_HELP','Click on the \"plus\" icon to add a extra.','Click on the \"plus\" icon to add a extra.','backend'),(471,'EXTRAS_EXTRA_NAME_HELP','PARENT_EXTRAS_HELP','Change extra name.','Change extra name.','backend'),(472,'EXTRAS_EXTRA_LANGUAGE_HELP','PARENT_EXTRAS_HELP','Change to the language you want to edit the extra.','Change to the language you want to edit the extra.','backend'),(473,'EXTRAS_EXTRA_ADD_GROUP_HELP','PARENT_EXTRAS_HELP','Click on the bellow \"plus\" icon to add a new extra group.','Click on the bellow \"plus\" icon to add a new extra group.','backend'),(474,'EXTRAS_EXTRA_EDIT_GROUP_HELP','PARENT_EXTRAS_HELP','Click the group \"expand\" icon to display/hide the settings.','Click the group \"expand\" icon to display/hide the settings.','backend'),(475,'EXTRAS_EXTRA_DELETE_GROUP_HELP','PARENT_EXTRAS_HELP','Click the group \"trash\" icon to delete it.','Click the group \"trash\" icon to delete it.','backend'),(476,'EXTRAS_EXTRA_SORT_GROUP_HELP','PARENT_EXTRAS_HELP','Drag the group \"arrows\" icon to sort it.','Drag the group \"arrows\" icon to sort it.','backend'),(477,'EXTRAS_EXTRA_GROUP_LABEL_HELP','PARENT_EXTRAS_HELP','Enter group label.','Enter group label.','backend'),(478,'EXTRAS_EXTRA_GROUP_REQUIRED_HELP','PARENT_EXTRAS_HELP','Enable it if you want the group to be mandatory.','Enable it if you want the group to be mandatory.','backend'),(479,'EXTRAS_EXTRA_GROUP_MULTIPLE_SELECT_HELP','PARENT_EXTRAS_HELP','Enable it if you want multiple selection.','Enable it if you want multiple selection.','backend'),(480,'EXTRAS_EXTRA_GROUP_NO_ITEMS_MULTIPLY_HELP','PARENT_EXTRAS_HELP','Enable it if you want the extras price to be multiplied with the number of items.','Enable it if you want the extras price to be multiplied with the number of items.','backend'),(481,'EXTRAS_EXTRA_GROUP_ITEMS_HELP','PARENT_EXTRAS_HELP','Click the \"plus\" icon to add another item and enter the name and price conditions. Click on the \"delete\" icon to remove the item.','Click the \"plus\" icon to add another item and enter the name and price conditions. Click on the \"delete\" icon to remove the item.','backend'),(482,'PARENT_EXTRAS_FRONT_END','','Extras - Front end','Extras - Front end','backend'),(483,'EXTRAS_FRONT_END_TITLE','PARENT_EXTRAS_FRONT_END','Extras','Extras','all'),(484,'EXTRAS_FRONT_END_BY_DAY','PARENT_EXTRAS_FRONT_END','day','day','all'),(485,'EXTRAS_FRONT_END_BY_HOUR','PARENT_EXTRAS_FRONT_END','hour','hour','all'),(486,'EXTRAS_FRONT_END_INVALID','PARENT_EXTRAS_FRONT_END','Select an option from','Select an option from','all'),(487,'PARENT_FEES','','Taxes & fees','Taxes & fees','all'),(488,'FEES_TITLE','PARENT_FEES','Taxes & fees','Taxes & fees','all'),(489,'FEES_CREATED_BY','PARENT_FEES','Created by','Created by','all'),(490,'FEES_LOAD_SUCCESS','PARENT_FEES','Taxes & fees list loaded.','Taxes & fees list loaded.','backend'),(491,'FEES_NO_FEES','PARENT_FEES','No taxes or fees. Click the above \"plus\" icon to add a new one.','No taxes or fees. Click the above \"plus\" icon to add a new one.','backend'),(492,'PARENT_FEES_FEE','','Taxes & fees - Tax or fee','Taxes & fees - Tax or fee','backend'),(493,'FEES_FEE_NAME','PARENT_FEES_FEE','Name','Name','backend'),(494,'FEES_FEE_LANGUAGE','PARENT_FEES_FEE','Language','Language','backend'),(495,'FEES_FEE_LABEL','PARENT_FEES_FEE','Label','Label','backend'),(496,'FEES_FEE_OPERATION','PARENT_FEES_FEE','Operation','Operation','backend'),(497,'FEES_FEE_PRICE','PARENT_FEES_FEE','Price/Percent','Price/Percent','backend'),(498,'FEES_FEE_PRICE_TYPE','PARENT_FEES_FEE','Price type','Price type','backend'),(499,'FEES_FEE_PRICE_TYPE_FIXED','PARENT_FEES_FEE','Fixed','Fixed','backend'),(500,'FEES_FEE_PRICE_TYPE_PERCENT','PARENT_FEES_FEE','Percent','Percent','backend'),(501,'FEES_FEE_PRICE_BY','PARENT_FEES_FEE','Price by','Price by','backend'),(502,'FEES_FEE_PRICE_BY_ONCE','PARENT_FEES_FEE','Once','Once','backend'),(503,'FEES_FEE_PRICE_BY_PERIOD','PARENT_FEES_FEE','day/hour','day/hour','backend'),(504,'FEES_FEE_INCLUDED','PARENT_FEES_FEE','Included','Included','backend'),(505,'FEES_FEE_EXTRAS','PARENT_FEES_FEE','Add the extra<<single-quote>>s price in the calculations','Add the extra<<single-quote>>s price in the calculations','backend'),(506,'FEES_FEE_CART','PARENT_FEES_FEE','Display fees in cart<<single-quote>>s total','Display fees in cart<<single-quote>>s total','backend'),(507,'FEES_FEE_LOADED','PARENT_FEES_FEE','Tax or fee loaded.','Tax or fee loaded.','backend'),(508,'PARENT_FEES_ADD_FEE','','Taxes & fees - Add tax or fee','Taxes & fees - Add tax or fee','backend'),(509,'FEES_ADD_FEE_NAME','PARENT_FEES_ADD_FEE','New tax / fee','New tax / fee','backend'),(510,'FEES_ADD_FEE_LABEL','PARENT_FEES_ADD_FEE','New tax / fee label','New tax / fee label','backend'),(511,'FEES_ADD_FEE_SUBMIT','PARENT_FEES_ADD_FEE','Add tax or fee','Add tax or fee','backend'),(512,'FEES_ADD_FEE_ADDING','PARENT_FEES_ADD_FEE','Adding a new tax or fee ...','Adding a new tax or fee ...','backend'),(513,'FEES_ADD_FEE_SUCCESS','PARENT_FEES_ADD_FEE','You have successfully added a new tax or fee.','You have successfully added a new tax or fee.','backend'),(514,'PARENT_FEES_DELETE_FEE','','Taxes & fees - Delete tax or fee','Taxes & fees - Delete tax or fee','backend'),(515,'FEES_DELETE_FEE_CONFIRMATION','PARENT_FEES_DELETE_FEE','Are you sure you want to delete this tax / fee?','Are you sure you want to delete this tax / fee?','backend'),(516,'FEES_DELETE_FEE_SUBMIT','PARENT_FEES_DELETE_FEE','Delete tax / fee','Delete tax / fee','backend'),(517,'FEES_DELETE_FEE_DELETING','PARENT_FEES_DELETE_FEE','Deleting tax / fee ...','Deleting tax / fee ...','backend'),(518,'FEES_DELETE_FEE_SUCCESS','PARENT_FEES_DELETE_FEE','You have successfully deleted the tax / fee.','You have successfully deleted the tax / fee.','backend'),(519,'PARENT_FEES_HELP','','Taxes & fees - Help','Taxes & fees - Help','backend'),(520,'FEES_HELP','PARENT_FEES_HELP','Click on a tax / fee item to open the editing area.','Click on a tax / fee item to open the editing area.','backend'),(521,'FEES_ADD_FEE_HELP','PARENT_FEES_HELP','Click on the \"plus\" icon to add a tax or fee.','Click on the \"plus\" icon to add a tax or fee.','backend'),(522,'FEES_FEE_HELP','PARENT_FEES_HELP','Click the group \"trash\" icon to delete the tax / fee.','Click the group \"trash\" icon to delete the tax / fee.','backend'),(523,'FEES_FEE_NAME_HELP','PARENT_FEES_HELP','Change tax / fee name.','Change tax / fee name.','backend'),(524,'FEES_FEE_LANGUAGE_HELP','PARENT_FEES_HELP','Change to the language you want to edit the tax / fee.','Change to the language you want to edit the tax / fee.','backend'),(525,'FEES_FEE_LABEL_HELP','PARENT_FEES_HELP','Enter tax / fee label.','Enter tax / fee label.','backend'),(526,'FEES_FEE_OPERATION_HELP','PARENT_FEES_FEE','Select tax / fee price operation.','Select tax / fee price operation.','backend'),(527,'FEES_FEE_PRICE_HELP','PARENT_FEES_FEE','Enter tax / fee price.','Enter tax / fee price.','backend'),(528,'FEES_FEE_PRICE_TYPE_HELP','PARENT_FEES_FEE','Select tax / fee price type.','Select tax / fee price type.','backend'),(529,'FEES_FEE_PRICE_BY_HELP','PARENT_FEES_FEE','Select tax / fee price by.','Select tax / fee price by.','backend'),(530,'FEES_FEE_INCLUDED_HELP','PARENT_FEES_FEE','Tax / fee is included in reservation prices.','Tax / fee is included in reservation prices.','backend'),(531,'FEES_FEE_EXTRAS_HELP','PARENT_FEES_FEE','Calculate reservation tax / fee including extras price, if used.','Calculate reservation tax / fee including extras price, if used.','backend'),(532,'FEES_FEE_CART_HELP','PARENT_FEES_FEE','If you use the cart option, you can choose to display the tax to total price or to each reservation.','If you use the cart option, you can choose to display the tax to total price or to each reservation.','backend'),(533,'PARENT_FEES_FRONT_END','','Fees - Front end','Fees - Front end','backend'),(534,'FEES_FRONT_END_TITLE','PARENT_FEES_FRONT_END','Taxes & fees','Taxes & fees','all'),(535,'FEES_FRONT_END_BY_DAY','PARENT_FEES_FRONT_END','day','day','all'),(536,'FEES_FRONT_END_BY_HOUR','PARENT_FEES_FRONT_END','hour','hour','all'),(537,'FEES_FRONT_END_INCLUDED','PARENT_FEES_FRONT_END','Included in price','Included in price','all'),(538,'PARENT_FORMS','','Forms','Forms','backend'),(539,'FORMS_TITLE','PARENT_FORMS','Forms','Forms','backend'),(540,'FORMS_CREATED_BY','PARENT_FORMS','Created by','Created by','backend'),(541,'FORMS_LOAD_SUCCESS','PARENT_FORMS','Forms list loaded.','Forms list loaded.','backend'),(542,'FORMS_NO_FORMS','PARENT_FORMS','No forms. Click the above \"plus\" icon to add a new one.','No forms. Click the above \"plus\" icon to add a new one.','backend'),(543,'PARENT_FORMS_DEFAULT','','Forms - Default data','Forms - Default data','backend'),(544,'FORMS_DEFAULT_NAME','PARENT_FORMS_DEFAULT','Contact information','Contact information','all'),(545,'FORMS_DEFAULT_FIRST_NAME','PARENT_FORMS_DEFAULT','First name','First name','all'),(546,'FORMS_DEFAULT_LAST_NAME','PARENT_FORMS_DEFAULT','Last name','Last name','all'),(547,'FORMS_DEFAULT_EMAIL','PARENT_FORMS_DEFAULT','Email','Email','all'),(548,'FORMS_DEFAULT_PHONE','PARENT_FORMS_DEFAULT','Phone','Phone','all'),(549,'FORMS_DEFAULT_MESSAGE','PARENT_FORMS_DEFAULT','Message','Message','all'),(550,'PARENT_FORMS_FORM','','Forms - Form','Forms - Form','backend'),(551,'FORMS_FORM_NAME','PARENT_FORMS_FORM','Name','Name','backend'),(552,'FORMS_FORM_LANGUAGE','PARENT_FORMS_FORM_FIELD','Language','Language','backend'),(553,'FORMS_FORM_LOADED','PARENT_FORMS_FORM','Form loaded.','Form loaded.','backend'),(554,'PARENT_FORMS_ADD_FORM','','Forms - Add form','Forms - Add form','backend'),(555,'FORMS_ADD_FORM_NAME','PARENT_FORMS_ADD_FORM','New form','New form','backend'),(556,'FORMS_ADD_FORM_SUBMIT','PARENT_FORMS_ADD_FORM','Add form','Add form','backend'),(557,'FORMS_ADD_FORM_ADDING','PARENT_FORMS_ADD_FORM','Adding a new form ...','Adding a new form ...','backend'),(558,'FORMS_ADD_FORM_SUCCESS','PARENT_FORMS_ADD_FORM','You have successfully added a new form.','You have successfully added a new form.','backend'),(559,'PARENT_FORMS_DELETE_FORM','','Forms - Delete form','Forms - Delete form','backend'),(560,'FORMS_DELETE_FORM_CONFIRMATION','PARENT_FORMS_DELETE_FORM','Are you sure you want to delete this form?','Are you sure you want to delete this form?','backend'),(561,'FORMS_DELETE_FORM_SUBMIT','PARENT_FORMS_DELETE_FORM','Delete form','Delete form','backend'),(562,'FORMS_DELETE_FORM_DELETING','PARENT_FORMS_DELETE_FORM','Deleting form ...','Deleting form ...','backend'),(563,'FORMS_DELETE_FORM_SUCCESS','PARENT_FORMS_DELETE_FORM','You have successfully deleted the form.','You have successfully deleted the form.','backend'),(564,'PARENT_FORMS_FORM_FIELDS','','Forms - Form fields','Forms - Form fields','backend'),(565,'FORMS_FORM_FIELDS','PARENT_FORMS_FORM_FIELDS','Form fields','Form fields','backend'),(566,'PARENT_FORMS_FORM_FIELD','','Forms - Form field','Forms - Form field','backend'),(567,'FORMS_FORM_FIELD_SHOW_SETTINGS','PARENT_FORMS_FORM_FIELD','Show settings','Show settings','backend'),(568,'FORMS_FORM_FIELD_HIDE_SETTINGS','PARENT_FORMS_FORM_FIELD','Hide settings','Hide settings','backend'),(569,'FORMS_FORM_FIELD_SORT','PARENT_FORMS_FORM_FIELD','Sort','Sort','backend'),(570,'FORMS_FORM_FIELD_TYPE_TEXT_LABEL','PARENT_FORMS_FORM_FIELD','Text','Text','backend'),(571,'FORMS_FORM_FIELD_TYPE_TEXTAREA_LABEL','PARENT_FORMS_FORM_FIELD','Textarea','Textarea','backend'),(572,'FORMS_FORM_FIELD_TYPE_CHECKBOX_LABEL','PARENT_FORMS_FORM_FIELD','Checkbox','Checkbox','backend'),(573,'FORMS_FORM_FIELD_TYPE_CHECKBOX_CHECKED_LABEL','PARENT_FORMS_FORM_FIELD','Checked','Checked','backend'),(574,'FORMS_FORM_FIELD_TYPE_CHECKBOX_UNCHECKED_LABEL','PARENT_FORMS_FORM_FIELD','Unchecked','Unchecked','backend'),(575,'FORMS_FORM_FIELD_TYPE_SELECT_LABEL','PARENT_FORMS_FORM_FIELD','Drop down','Drop down','backend'),(576,'FORMS_FORM_FIELD_LABEL_LABEL','PARENT_FORMS_FORM_FIELD','Label','Label','backend'),(577,'FORMS_FORM_FIELD_ALLOWED_CHARACTERS_LABEL','PARENT_FORMS_FORM_FIELD','Allowed Characters','Allowed Characters','backend'),(578,'FORMS_FORM_FIELD_SIZE_LABEL','PARENT_FORMS_FORM_FIELD','Size','Size','backend'),(579,'FORMS_FORM_FIELD_EMAIL_LABEL','PARENT_FORMS_FORM_FIELD','Is email','Is email','backend'),(580,'FORMS_FORM_FIELD_PHONE_LABEL','PARENT_FORMS_FORM_FIELD','Is phone','Is phone','backend'),(581,'FORMS_FORM_FIELD_DEFAULT_COUNTRY_LABEL','PARENT_FORMS_FORM_FIELD','Default country','Default country','backend'),(582,'FORMS_FORM_FIELD_REQUIRED_LABEL','PARENT_FORMS_FORM_FIELD','Required','Required','backend'),(583,'FORMS_FORM_FIELD_MULTIPLE_SELECT_LABEL','PARENT_FORMS_FORM_FIELD','Multiple select','Multiple select','backend'),(584,'FORMS_FORM_FIELD_ADD_TO_DAY_HOUR_INFO_LABEL','PARENT_FORMS_FORM_FIELD','Add field to day/hour info','Add field to day/hour info','backend'),(585,'FORMS_FORM_FIELD_ADD_TO_DAY_HOUR_BODY_LABEL','PARENT_FORMS_FORM_FIELD','Add field to day/hour body','Add field to day/hour body','backend'),(586,'PARENT_FORMS_FORM_ADD_FIELD','','Forms - Add form field','Forms - Add form field','backend'),(587,'FORMS_FORM_ADD_FIELD_TEXT_LABEL','PARENT_FORMS_FORM_ADD_FIELD','New text field','New text field','backend'),(588,'FORMS_FORM_ADD_FIELD_TEXTAREA_LABEL','PARENT_FORMS_FORM_ADD_FIELD','New textarea field','New textarea field','backend'),(589,'FORMS_FORM_ADD_FIELD_CHECKBOX_LABEL','PARENT_FORMS_FORM_ADD_FIELD','New checkbox field','New checkbox field','backend'),(590,'FORMS_FORM_ADD_FIELD_SELECT_LABEL','PARENT_FORMS_FORM_ADD_FIELD','New drop down field','New drop down field','backend'),(591,'FORMS_FORM_ADD_FIELD_ADDING','PARENT_FORMS_FORM_ADD_FIELD','Adding a new form field ...','Adding a new form field ...','backend'),(592,'FORMS_FORM_ADD_FIELD_SUCCESS','PARENT_FORMS_FORM_ADD_FIELD','You have successfully added a new form field.','You have successfully added a new form field.','backend'),(593,'PARENT_FORMS_FORM_DELETE_FIELD','','Forms - Delete form field','Forms - Delete form field','backend'),(594,'FORMS_FORM_DELETE_FIELD_CONFIRMATION','PARENT_FORMS_FORM_DELETE_FIELD','Are you sure you want to delete this form field?','Are you sure you want to delete this form field?','backend'),(595,'FORMS_FORM_DELETE_FIELD_SUBMIT','PARENT_FORMS_FORM_DELETE_FIELD','Delete','Delete','backend'),(596,'FORMS_FORM_DELETE_FIELD_DELETING','PARENT_FORMS_FORM_DELETE_FIELD','Deleting form field ...','Deleting form field ...','backend'),(597,'FORMS_FORM_DELETE_FIELD_SUCCESS','PARENT_FORMS_FORM_DELETE_FIELD','You have successfully deleted the form field.','You have successfully deleted the form field.','backend'),(598,'PARENT_FORMS_FORM_FIELD_SELECT_OPTIONS','','Forms - Form field - Select options','Forms - Form field - Select options','backend'),(599,'FORMS_FORM_FIELD_SELECT_OPTIONS_LABEL','PARENT_FORMS_FORM_FIELD_SELECT_OPTIONS','Options','Options','backend'),(600,'PARENT_FORMS_FORM_FIELD_SELECT_OPTION','','Forms - Form field - Select option','Forms - Form field - Select option','backend'),(601,'FORMS_FORM_FIELD_SELECT_OPTION_SORT','PARENT_FORMS_FORM_FIELD_SELECT_OPTION','Sort','Sort','backend'),(602,'PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION','','Forms - Form field - Add select option','Forms - Form field - Add select option','backend'),(603,'FORMS_FORM_FIELD_SELECT_ADD_OPTION_LABEL','PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION','New option','New option','backend'),(604,'FORMS_FORM_FIELD_SELECT_ADD_OPTION_SUBMIT','PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION','Add select option','Add select option','backend'),(605,'FORMS_FORM_FIELD_SELECT_ADD_OPTION_ADDING','PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION','Adding a new select option ...','Adding a new select option ...','backend'),(606,'FORMS_FORM_FIELD_SELECT_ADD_OPTION_SUCCESS','PARENT_FORMS_FORM_FIELD_SELECT_ADD_OPTION','You have successfully added a new select option.','You have successfully added a new select option.','backend'),(607,'PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION','','Forms - Form field - Delete select option','Forms - Form field - Delete select option','backend'),(608,'FORMS_FORM_FIELD_SELECT_DELETE_OPTION_CONFIRMATION','PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION','Are you sure you want to delete this select option?','Are you sure you want to delete this select option?','backend'),(609,'FORMS_FORM_FIELD_SELECT_DELETE_OPTION_SUBMIT','PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION','Delete','Delete','backend'),(610,'FORMS_FORM_FIELD_SELECT_DELETE_OPTION_DELETING','PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION','Deleting select option ...','Deleting select option ...','backend'),(611,'FORMS_FORM_FIELD_SELECT_DELETE_OPTION_SUCCESS','PARENT_FORMS_FORM_FIELD_SELECT_DELETE_OPTION','You have successfully deleted the select option.','You have successfully deleted the select option.','backend'),(612,'PARENT_FORMS_HELP','','Forms - Help','Forms - Help','backend'),(613,'FORMS_HELP','PARENT_FORMS_HELP','Click on a form item to open the editing area.','Click on a form item to open the editing area.','backend'),(614,'FORMS_ADD_FORM_HELP','PARENT_FORMS_HELP','Click on the \"plus\" icon to add a form.','Click on the \"plus\" icon to add a form.','backend'),(615,'FORMS_FORM_NAME_HELP','PARENT_FORMS_HELP','Change form name.','Change form name.','backend'),(616,'FORMS_FORM_LANGUAGE_HELP','PARENT_FORMS_HELP','Change to the language you want to edit the form.','Change to the language you want to edit the form.','backend'),(617,'FORMS_FORM_ADD_FIELD_HELP','PARENT_FORMS_HELP','Click on the bellow \"plus\" icon to add a form field.','Click on the bellow \"plus\" icon to add a form field.','backend'),(618,'FORMS_FORM_EDIT_FIELD_HELP','PARENT_FORMS_HELP','Click the field \"expand\" icon to display/hide the settings.','Click the field \"expand\" icon to display/hide the settings.','backend'),(619,'FORMS_FORM_DELETE_FIELD_HELP','PARENT_FORMS_HELP','Click the field \"trash\" icon to delete it.','Click the field \"trash\" icon to delete it.','backend'),(620,'FORMS_FORM_SORT_FIELD_HELP','PARENT_FORMS_HELP','Drag the field \"arrows\" icon to sort it.','Drag the field \"arrows\" icon to sort it.','backend'),(621,'FORMS_FORM_FIELD_LABEL_HELP','PARENT_FORMS_HELP','Enter field label.','Enter field label.','backend'),(622,'FORMS_FORM_FIELD_ALLOWED_CHARACTERS_HELP','PARENT_FORMS_HELP','Enter the characters allowed in this field. Leave it blank if all characters are allowed.','Enter the characters allowed in this field. Leave it blank if all characters are allowed.','backend'),(623,'FORMS_FORM_FIELD_SIZE_HELP','PARENT_FORMS_HELP','Enter the maximum number of characters allowed. Leave it blank for unlimited.','Enter the maximum number of characters allowed. Leave it blank for unlimited.','backend'),(624,'FORMS_FORM_FIELD_EMAIL_HELP','PARENT_FORMS_HELP','Enable it if you want this field to be verified if an email has been added or not.','Enable it if you want this field to be verified if an email has been added or not.','backend'),(625,'FORMS_FORM_FIELD_PHONE_HELP','PARENT_FORMS_HELP','Enable it if you want this field to be verified if a phone number has been added or not.','Enable it if you want this field to be verified if a phone number has been added or not.','backend'),(626,'FORMS_FORM_FIELD_DEFAULT_COUNTRY','PARENT_FORMS_HELP','Select the default country for the phone number prefix.','Select the default country for the phone number prefix.','backend'),(627,'FORMS_FORM_FIELD_REQUIRED_HELP','PARENT_FORMS_HELP','Enable it if you want the field to be mandatory.','Enable it if you want the field to be mandatory.','backend'),(628,'FORMS_FORM_FIELD_MULTIPLE_SELECT_HELP','PARENT_FORMS_HELP','Enable it if you want a multiple select drop down.','Enable it if you want a multiple select drop down.','backend'),(629,'FORMS_FORM_FIELD_ADD_TO_DAY_HOUR_INFO_HELP','PARENT_FORMS_FORM_FIELD','Enable it if you want to display the field in a reservations list, in the info tooltip, in calendars days/hours.','Enable it if you want to display the field in a reservations list, in the info tooltip, in calendars days/hours.','backend'),(630,'FORMS_FORM_FIELD_ADD_TO_DAY_HOUR_BODY_HELP','PARENT_FORMS_FORM_FIELD','Enable it if you want to display the field in a reservations list, in the days/hours body (under availability), in calendars.','Enable it if you want to display the field in a reservations list, in the days/hours body (under availability), in calendars.','backend'),(631,'FORMS_FORM_FIELD_SELECT_OPTIONS_HELP','PARENT_FORMS_HELP','Click the \"plus\" icon to add another option and enter the name. Click on the \"delete\" icon to remove the option.','Click the \"plus\" icon to add another option and enter the name. Click on the \"delete\" icon to remove the option.','backend'),(632,'PARENT_FORMS_FRONT_END','','Forms - Front end','Forms - Front end','backend'),(633,'FORMS_FRONT_END_TITLE','PARENT_FORMS_FRONT_END','Contact information','Contact information','all'),(634,'FORMS_FRONT_END_REQUIRED','PARENT_FORMS_FRONT_END','is required.','is required.','all'),(635,'FORMS_FRONT_END_INVALID_EMAIL','PARENT_FORMS_FRONT_END','is invalid. Please enter a valid email.','is invalid. Please enter a valid email.','all'),(636,'TITLE','none','Pinpoint Booking System','Pinpoint Booking System','backend'),(637,'PARENT_MESSAGES','','Messages','Messages','backend'),(638,'MESSAGES_LOADING','PARENT_MESSAGES','Loading data ...','Loading data ...','backend'),(639,'MESSAGES_LOADING_SUCCESS','PARENT_MESSAGES','Data has been loaded.','Data has been loaded.','backend'),(640,'MESSAGES_SAVING','PARENT_MESSAGES','Saving data ...','Saving data ...','backend'),(641,'MESSAGES_SAVING_SUCCESS','PARENT_MESSAGES','Data has been saved.','Data has been saved.','backend'),(642,'MESSAGES_CONFIRMATION_YES','PARENT_MESSAGES','Yes','Yes','backend'),(643,'MESSAGES_CONFIRMATION_NO','PARENT_MESSAGES','No','No','backend'),(644,'MESSAGES_PRO_TITLE','PARENT_MESSAGES','PRO','PRO','backend'),(645,'MESSAGES_PRO_INFO','PARENT_PRO_VERSION','only in PRO','only in PRO','backend'),(646,'MESSAGES_PRO_TEXT','PARENT_PRO_VERSION','This feature is only available in PRO version.','This feature is only available in PRO version.','backend'),(647,'MESSAGES_PRO_REMOVE_TEXT1','PARENT_PRO_VERSION','Permanently remove any reference to Pinpoint Booking System PRO version by clicking the close button. This action cannot be undone.','Permanently remove any reference to Pinpoint Booking System PRO version by clicking the close button. This action cannot be undone.','backend'),(648,'MESSAGES_PRO_REMOVE_TEXT2','PARENT_PRO_VERSION','You can also remove any information about PRO version if you set the constant %s value to %s in file %s.','You can also remove any information about PRO version if you set the constant %s value to %s in file %s.','backend'),(649,'PARENT_MONTHS_WEEK_DAYS','','Months & Week Days','Months & Week Days','backend'),(650,'MONTH_JANUARY','PARENT_MONTHS_WEEK_DAYS','January','January','calendar'),(651,'MONTH_FEBRUARY','PARENT_MONTHS_WEEK_DAYS','February','February','calendar'),(652,'MONTH_MARCH','PARENT_MONTHS_WEEK_DAYS','March','March','calendar'),(653,'MONTH_APRIL','PARENT_MONTHS_WEEK_DAYS','April','April','calendar'),(654,'MONTH_MAY','PARENT_MONTHS_WEEK_DAYS','May','May','calendar'),(655,'MONTH_JUNE','PARENT_MONTHS_WEEK_DAYS','June','June','calendar'),(656,'MONTH_JULY','PARENT_MONTHS_WEEK_DAYS','July','July','calendar'),(657,'MONTH_AUGUST','PARENT_MONTHS_WEEK_DAYS','August','August','calendar'),(658,'MONTH_SEPTEMBER','PARENT_MONTHS_WEEK_DAYS','September','September','calendar'),(659,'MONTH_OCTOBER','PARENT_MONTHS_WEEK_DAYS','October','October','calendar'),(660,'MONTH_NOVEMBER','PARENT_MONTHS_WEEK_DAYS','November','November','calendar'),(661,'MONTH_DECEMBER','PARENT_MONTHS_WEEK_DAYS','December','December','calendar'),(662,'SHORT_MONTH_JANUARY','PARENT_MONTHS_WEEK_DAYS','Jan','Jan','calendar'),(663,'SHORT_MONTH_FEBRUARY','PARENT_MONTHS_WEEK_DAYS','Feb','Feb','calendar'),(664,'SHORT_MONTH_MARCH','PARENT_MONTHS_WEEK_DAYS','Mar','Mar','calendar'),(665,'SHORT_MONTH_APRIL','PARENT_MONTHS_WEEK_DAYS','Apr','Apr','calendar'),(666,'SHORT_MONTH_MAY','PARENT_MONTHS_WEEK_DAYS','May','May','calendar'),(667,'SHORT_MONTH_JUNE','PARENT_MONTHS_WEEK_DAYS','Jun','Jun','calendar'),(668,'SHORT_MONTH_JULY','PARENT_MONTHS_WEEK_DAYS','Jul','Jul','calendar'),(669,'SHORT_MONTH_AUGUST','PARENT_MONTHS_WEEK_DAYS','Aug','Aug','calendar'),(670,'SHORT_MONTH_SEPTEMBER','PARENT_MONTHS_WEEK_DAYS','Sep','Sep','calendar'),(671,'SHORT_MONTH_OCTOBER','PARENT_MONTHS_WEEK_DAYS','Oct','Oct','calendar'),(672,'SHORT_MONTH_NOVEMBER','PARENT_MONTHS_WEEK_DAYS','Nov','Nov','calendar'),(673,'SHORT_MONTH_DECEMBER','PARENT_MONTHS_WEEK_DAYS','Dec','Dec','calendar'),(674,'DAY_MONDAY','PARENT_MONTHS_WEEK_DAYS','Monday','Monday','calendar'),(675,'DAY_TUESDAY','PARENT_MONTHS_WEEK_DAYS','Tuesday','Tuesday','calendar'),(676,'DAY_WEDNESDAY','PARENT_MONTHS_WEEK_DAYS','Wednesday','Wednesday','calendar'),(677,'DAY_THURSDAY','PARENT_MONTHS_WEEK_DAYS','Thursday','Thursday','calendar'),(678,'DAY_FRIDAY','PARENT_MONTHS_WEEK_DAYS','Friday','Friday','calendar'),(679,'DAY_SATURDAY','PARENT_MONTHS_WEEK_DAYS','Saturday','Saturday','calendar'),(680,'DAY_SUNDAY','PARENT_MONTHS_WEEK_DAYS','Sunday','Sunday','calendar'),(681,'SHORT_DAY_MONDAY','PARENT_MONTHS_WEEK_DAYS','Mo','Mo','calendar'),(682,'SHORT_DAY_TUESDAY','PARENT_MONTHS_WEEK_DAYS','Tu','Tu','calendar'),(683,'SHORT_DAY_WEDNESDAY','PARENT_MONTHS_WEEK_DAYS','We','We','calendar'),(684,'SHORT_DAY_THURSDAY','PARENT_MONTHS_WEEK_DAYS','Th','Th','calendar'),(685,'SHORT_DAY_FRIDAY','PARENT_MONTHS_WEEK_DAYS','Fr','Fr','calendar'),(686,'SHORT_DAY_SATURDAY','PARENT_MONTHS_WEEK_DAYS','Sa','Sa','calendar'),(687,'SHORT_DAY_SUNDAY','PARENT_MONTHS_WEEK_DAYS','Su','Su','calendar'),(688,'PARENT_TINYMCE','','TinyMCE','TinyMCE','backend'),(689,'TINYMCE_ADD','PARENT_TINYMCE','Add Calendar','Add Calendar','backend'),(690,'PARENT_DOCUMENTATION','','Documentation','Documentation','backend'),(691,'HELP_DOCUMENTATION','PARENT_DOCUMENTATION','Documentation','Documentation','backend'),(692,'HELP_VIEW_DOCUMENTATION','PARENT_DOCUMENTATION','Click this to view the documentation for more informations.','Click this to view the documentation for more informations.','backend'),(693,'BETA','none','beta','beta','backend'),(694,'BETA_TITLE','none','Beta','Beta','backend'),(695,'SOON','none','soon','soon','backend'),(696,'SOON_TITLE','none','Coming soon','Coming soon','backend'),(697,'PARENT_LANGUAGES','','Languages','Languages','backend'),(698,'LANGUAGES_MANAGE','PARENT_LANGUAGES','Manage languages','Manage languages','backend'),(699,'LANGUAGES_LOADED','PARENT_LANGUAGES','Languages have been loaded.','Languages have been loaded.','backend'),(700,'LANGUAGES_SETTING','PARENT_LANGUAGES','The language is being configured ...','The language is being configured ...','backend'),(701,'LANGUAGES_SET_SUCCESS','PARENT_LANGUAGES','The language has been added. The page will refresh shortly.','The language has been added. The page will refresh shortly.','backend'),(702,'LANGUAGES_REMOVE_CONFIGURATION','PARENT_LANGUAGES','Are you sure you want to remove this language? Data will be deleted only when you reset the translation!','Are you sure you want to remove this language? Data will be deleted only when you reset the translation!','backend'),(703,'LANGUAGES_REMOVING','PARENT_LANGUAGES','The language is being removed ...','The language is being removed ...','backend'),(704,'LANGUAGES_REMOVE_SUCCESS','PARENT_LANGUAGES','The language has been removed. The page will refresh shortly.','The language has been removed. The page will refresh shortly.','backend'),(705,'PARENT_LANGUAGES_HELP','','Languages - Help','Languages - Help','backend'),(706,'LANGUAGES_HELP','PARENT_LANGUAGES_HELP','If you need to use more language with the plugin go to \"Manage languages\" section and enable them.','If you need to use more language with the plugin go to \"Manage languages\" section and enable them.','backend'),(707,'PARENT_LOCATIONS','','Locations','Locations','backend'),(708,'LOCATIONS_TITLE','PARENT_LOCATIONS','Locations','Locations','backend'),(709,'LOCATIONS_CREATED_BY','PARENT_LOCATIONS','Created by','Created by','backend'),(710,'LOCATIONS_LOAD_SUCCESS','PARENT_LOCATIONS','Locations list loaded.','Locations list loaded.','backend'),(711,'LOCATIONS_NO_LOCATIONS','PARENT_LOCATIONS','No locations. Click the above \"plus\" icon to add a new one.','No locations. Click the above \"plus\" icon to add a new one.','backend'),(712,'PARENT_LOCATIONS_LOCATION','','Locations - Location','Locations - Location','backend'),(713,'LOCATIONS_LOCATION_NAME','PARENT_LOCATIONS_LOCATION','Name','Name','backend'),(714,'LOCATIONS_LOCATION_MAP','PARENT_LOCATIONS_LOCATION','Enter the address','Enter the address','backend'),(715,'LOCATIONS_LOCATION_ADDRESS','PARENT_LOCATIONS_LOCATION','Address','Address','backend'),(716,'LOCATIONS_LOCATION_ALT_ADDRESS','PARENT_LOCATIONS_LOCATION','Alternative address','Alternative address','backend'),(717,'LOCATIONS_LOCATION_CALENDARS','PARENT_LOCATIONS_LOCATION','Add calendars to location','Add calendars to location','backend'),(718,'LOCATIONS_LOCATION_NO_CALENDARS','PARENT_LOCATIONS_LOCATION','There are no calendars created. Go to <a href=\"%s\">calendars</a> page to create one.','There are no calendars created. Go to <a href=\"%s\">calendars</a> page to create one.','backend'),(719,'LOCATIONS_LOCATION_SHARE','PARENT_LOCATIONS_LOCATION','Share your location with ','Share your location with ','backend'),(720,'LOCATIONS_LOCATION_LINK','PARENT_LOCATIONS_LOCATION','Enter the link of your site','Enter the link of your site','backend'),(721,'LOCATIONS_LOCATION_IMAGE','PARENT_LOCATIONS_LOCATION','Enter a link with an image','Enter a link with an image','backend'),(722,'LOCATIONS_LOCATION_BUSINESSES','PARENT_LOCATIONS_LOCATION','Select what kind of businesses you have at this location','Select what kind of businesses you have at this location','backend'),(723,'LOCATIONS_LOCATION_BUSINESSES_OTHER','PARENT_LOCATIONS_LOCATION','Enter businesses that are not in the list','Enter businesses that are not in the list','backend'),(724,'LOCATIONS_LOCATION_LANGUAGES','PARENT_LOCATIONS_LOCATION','Enter the languages that are spoken in your business','Enter the languages that are spoken in your business','backend'),(725,'LOCATIONS_LOCATION_EMAIL','PARENT_LOCATIONS_LOCATION','Your email','Your email','backend'),(726,'LOCATIONS_LOCATION_SHARE_SUBMIT','PARENT_LOCATIONS_LOCATION','Share to PINPOINT.WORLD','Share to PINPOINT.WORLD','backend'),(727,'LOCATIONS_LOCATION_SHARE_SUBMIT_SUCCESS','PARENT_LOCATIONS_LOCATION','Your location has been sent to PINPOINT.WORLD','Your location has been sent to PINPOINT.WORLD','backend'),(728,'LOCATIONS_LOCATION_SHARE_SUBMIT_ERROR','PARENT_LOCATIONS_LOCATION','Please complete all location data. Only alternative address is mandatory and you need to select a business or enter another business.','Please complete all location data. Only alternative address is mandatory and you need to select a business or enter another business.','backend'),(729,'LOCATIONS_LOCATION_SHARE_SUBMIT_ERROR_DUPLICATE','PARENT_LOCATIONS_LOCATION','The location has already been submitted to PINPOINT.WORLD','The location has already been submitted to PINPOINT.WORLD','backend'),(730,'LOCATIONS_LOCATION_BUSINESS_APARTMENT','PARENT_LOCATIONS_LOCATION','Apartment','Apartment','backend'),(731,'LOCATIONS_LOCATION_BUSINESS_BABY_SITTER','PARENT_LOCATIONS_LOCATION','Babysitter','Babysitter','backend'),(732,'LOCATIONS_LOCATION_BUSINESS_BAR','PARENT_LOCATIONS_LOCATION','Bar','Bar','backend'),(733,'LOCATIONS_LOCATION_BUSINESS_BASKETBALL_COURT','PARENT_LOCATIONS_LOCATION','Basketball court(s)','Basketball court(s)','backend'),(734,'LOCATIONS_LOCATION_BUSINESS_BEAUTY_SALON','PARENT_LOCATIONS_LOCATION','Beauty salon','Beauty salon','backend'),(735,'LOCATIONS_LOCATION_BUSINESS_BIKES','PARENT_LOCATIONS_LOCATION','Bikes','Bikes','backend'),(736,'LOCATIONS_LOCATION_BUSINESS_BOAT','PARENT_LOCATIONS_LOCATION','Boat','Boat','backend'),(737,'LOCATIONS_LOCATION_BUSINESS_BUSINESS','PARENT_LOCATIONS_LOCATION','Business','Business','backend'),(738,'LOCATIONS_LOCATION_BUSINESS_CAMPING','PARENT_LOCATIONS_LOCATION','Camping','Camping','backend'),(739,'LOCATIONS_LOCATION_BUSINESS_CAMPING_GEAR','PARENT_LOCATIONS_LOCATION','Camping gear','Camping gear','backend'),(740,'LOCATIONS_LOCATION_BUSINESS_CARS','PARENT_LOCATIONS_LOCATION','Cars','Cars','backend'),(741,'LOCATIONS_LOCATION_BUSINESS_CHEF','PARENT_LOCATIONS_LOCATION','Chef','Chef','backend'),(742,'LOCATIONS_LOCATION_BUSINESS_CINEMA','PARENT_LOCATIONS_LOCATION','Cinema','Cinema','backend'),(743,'LOCATIONS_LOCATION_BUSINESS_CLOTHES','PARENT_LOCATIONS_LOCATION','Clothes','Clothes','backend'),(744,'LOCATIONS_LOCATION_BUSINESS_COSTUMES','PARENT_LOCATIONS_LOCATION','Costumes','Costumes','backend'),(745,'LOCATIONS_LOCATION_BUSINESS_CLUB','PARENT_LOCATIONS_LOCATION','Club','Club','backend'),(746,'LOCATIONS_LOCATION_BUSINESS_DANCE_INSTRUCTOR','PARENT_LOCATIONS_LOCATION','Dance instructor','Dance instructor','backend'),(747,'LOCATIONS_LOCATION_BUSINESS_DENTIST','PARENT_LOCATIONS_LOCATION','Dentist','Dentist','backend'),(748,'LOCATIONS_LOCATION_BUSINESS_DESIGNER_HANDBAGS','PARENT_LOCATIONS_LOCATION','Designer handbags','Designer handbags','backend'),(749,'LOCATIONS_LOCATION_BUSINESS_DOCTOR','PARENT_LOCATIONS_LOCATION','Doctor','Doctor','backend'),(750,'LOCATIONS_LOCATION_BUSINESS_ESTHETICIAN','PARENT_LOCATIONS_LOCATION','Esthetician','Esthetician','backend'),(751,'LOCATIONS_LOCATION_BUSINESS_FOOTBALL_COURT','PARENT_LOCATIONS_LOCATION','Football court(s)','Football court(s)','backend'),(752,'LOCATIONS_LOCATION_BUSINESS_FISHING','PARENT_LOCATIONS_LOCATION','Fishing','Fishing','backend'),(753,'LOCATIONS_LOCATION_BUSINESS_GADGETS','PARENT_LOCATIONS_LOCATION','Gadgets','Gadgets','backend'),(754,'LOCATIONS_LOCATION_BUSINESS_GAMES','PARENT_LOCATIONS_LOCATION','Games','Games','backend'),(755,'LOCATIONS_LOCATION_BUSINESS_GOLF','PARENT_LOCATIONS_LOCATION','Golf','Golf','backend'),(756,'LOCATIONS_LOCATION_BUSINESS_HAIRDRESSER','PARENT_LOCATIONS_LOCATION','Hairdresser','Hairdresser','backend'),(757,'LOCATIONS_LOCATION_BUSINESS_HEALTH_CLUB','PARENT_LOCATIONS_LOCATION','Health club','Health club','backend'),(758,'LOCATIONS_LOCATION_BUSINESS_HOSPITAL','PARENT_LOCATIONS_LOCATION','Hospital','Hospital','backend'),(759,'LOCATIONS_LOCATION_BUSINESS_HOTEL','PARENT_LOCATIONS_LOCATION','Hotel','Hotel','backend'),(760,'LOCATIONS_LOCATION_BUSINESS_HUNTING','PARENT_LOCATIONS_LOCATION','Hunting','Hunting','backend'),(761,'LOCATIONS_LOCATION_BUSINESS_LAWYER','PARENT_LOCATIONS_LOCATION','Lawyer','Lawyer','backend'),(762,'LOCATIONS_LOCATION_BUSINESS_LIBRARY','PARENT_LOCATIONS_LOCATION','Library','Library','backend'),(763,'LOCATIONS_LOCATION_BUSINESS_MASSAGE','PARENT_LOCATIONS_LOCATION','Massage','Massage','backend'),(764,'LOCATIONS_LOCATION_BUSINESS_MUSIC_BAND','PARENT_LOCATIONS_LOCATION','Music band','Music band','backend'),(765,'LOCATIONS_LOCATION_BUSINESS_NAILS_SALON','PARENT_LOCATIONS_LOCATION','Nails salon','Nails salon','backend'),(766,'LOCATIONS_LOCATION_BUSINESS_PARTY_SUPPLIES','PARENT_LOCATIONS_LOCATION','Party supplies','Party supplies','backend'),(767,'LOCATIONS_LOCATION_BUSINESS_PERSONAL_TRAINER','PARENT_LOCATIONS_LOCATION','Personal trainer','Personal trainer','backend'),(768,'LOCATIONS_LOCATION_BUSINESS_PET_CARE','PARENT_LOCATIONS_LOCATION','Pet care','Pet care','backend'),(769,'LOCATIONS_LOCATION_BUSINESS_PHOTO_EQUIPMENT','PARENT_LOCATIONS_LOCATION','Photo equipment','Photo equipment','backend'),(770,'LOCATIONS_LOCATION_BUSINESS_PHOTOGRAPHER','PARENT_LOCATIONS_LOCATION','Photographer','Photographer','backend'),(771,'LOCATIONS_LOCATION_BUSINESS_PILLATES_INSTRUCTOR','PARENT_LOCATIONS_LOCATION','Pilates instructor','Pilates instructor','backend'),(772,'LOCATIONS_LOCATION_BUSINESS_PLANE_TICKETS','PARENT_LOCATIONS_LOCATION','Plane tickets','Plane tickets','backend'),(773,'LOCATIONS_LOCATION_BUSINESS_PLANES','PARENT_LOCATIONS_LOCATION','Plane(s)','Plane(s)','backend'),(774,'LOCATIONS_LOCATION_BUSINESS_RESTAURANT','PARENT_LOCATIONS_LOCATION','Restaurant','Restaurant','backend'),(775,'LOCATIONS_LOCATION_BUSINESS_SHOES','PARENT_LOCATIONS_LOCATION','Shoes','Shoes','backend'),(776,'LOCATIONS_LOCATION_BUSINESS_SNOW_EQUIPMENT','PARENT_LOCATIONS_LOCATION','Snow equipment','Snow equipment','backend'),(777,'LOCATIONS_LOCATION_BUSINESS_SPA','PARENT_LOCATIONS_LOCATION','Spa','Spa','backend'),(778,'LOCATIONS_LOCATION_BUSINESS_SPORTS_COACH','PARENT_LOCATIONS_LOCATION','Sports coach','Sports coach','backend'),(779,'LOCATIONS_LOCATION_BUSINESS_TAXIES','PARENT_LOCATIONS_LOCATION','Taxies','Taxies','backend'),(780,'LOCATIONS_LOCATION_BUSINESS_TENIS_COURT','PARENT_LOCATIONS_LOCATION','Tennis court(s)','Tennis court(s)','backend'),(781,'LOCATIONS_LOCATION_BUSINESS_THEATRE','PARENT_LOCATIONS_LOCATION','Theatre','Theatre','backend'),(782,'LOCATIONS_LOCATION_BUSINESS_VILLA','PARENT_LOCATIONS_LOCATION','Villa','Villa','backend'),(783,'LOCATIONS_LOCATION_BUSINESS_WEAPONS','PARENT_LOCATIONS_LOCATION','Weapons','Weapons','backend'),(784,'LOCATIONS_LOCATION_BUSINESS_WORKING_TOOLS','PARENT_LOCATIONS_LOCATION','Working tools','Working tools','backend'),(785,'LOCATIONS_LOCATION_LOADED','PARENT_LOCATIONS_LOCATION','Location loaded.','Location loaded.','backend'),(786,'LOCATIONS_LOCATION_NO_GOOGLE_MAPS','PARENT_LOCATIONS_LOCATION','Google maps did not load. Please refresh the page to try again.','Google maps did not load. Please refresh the page to try again.','backend'),(787,'PARENT_LOCATIONS_ADD_LOCATION','','Locations - Add location','Locations - Add location','backend'),(788,'LOCATIONS_ADD_LOCATION_NAME','PARENT_LOCATIONS_ADD_LOCATION','New location','New location','backend'),(789,'LOCATIONS_ADD_LOCATION_SUBMIT','PARENT_LOCATIONS_ADD_LOCATION','Add location','Add location','backend'),(790,'LOCATIONS_ADD_LOCATION_ADDING','PARENT_LOCATIONS_ADD_LOCATION','Adding a new location ...','Adding a new location ...','backend'),(791,'LOCATIONS_ADD_LOCATION_SUCCESS','PARENT_LOCATIONS_ADD_LOCATION','You have successfully added a new location.','You have successfully added a new location.','backend'),(792,'PARENT_LOCATIONS_DELETE_LOCATION','','Locations - Delete location','Locations - Delete location','backend'),(793,'LOCATIONS_DELETE_LOCATION_CONFIRMATION','PARENT_LOCATIONS_DELETE_LOCATION','Are you sure you want to delete this location?','Are you sure you want to delete this location?','backend'),(794,'LOCATIONS_DELETE_LOCATION_SUBMIT','PARENT_LOCATIONS_DELETE_LOCATION','Delete location','Delete location','backend'),(795,'LOCATIONS_DELETE_LOCATION_DELETING','PARENT_LOCATIONS_DELETE_LOCATION','Deleting location ...','Deleting location ...','backend'),(796,'LOCATIONS_DELETE_LOCATION_SUCCESS','PARENT_LOCATIONS_DELETE_LOCATION','You have successfully deleted the location.','You have successfully deleted the location.','backend'),(797,'PARENT_LOCATIONS_HELP','','Locations - Help','Locations - Help','backend'),(798,'LOCATIONS_HELP','PARENT_LOCATIONS_HELP','Click on a location item to open the editing area.','Click on a location item to open the editing area.','backend'),(799,'LOCATIONS_ADD_LOCATION_HELP','PARENT_LOCATIONS_HELP','Click on the \"plus\" icon to add a location.','Click on the \"plus\" icon to add a location.','backend'),(800,'LOCATIONS_LOCATION_HELP','PARENT_LOCATIONS_HELP','Click the \"trash\" icon to delete the location.','Click the \"trash\" icon to delete the location.','backend'),(801,'LOCATIONS_LOCATION_NAME_HELP','PARENT_LOCATIONS_HELP','Change location name.','Change location name.','backend'),(802,'LOCATIONS_LOCATION_ADDRESS_HELP','PARENT_LOCATIONS_HELP','Enter location address or drag the marker on the map to select it.','Enter location address or drag the marker on the map to select it.','backend'),(803,'LOCATIONS_LOCATION_ALT_ADDRESS_HELP','PARENT_LOCATIONS_HELP','Enter an alternative address if the marker is in the correct position but the address is not right.','Enter an alternative address if the marker is in the correct position but the address is not right.','backend'),(804,'LOCATIONS_LOCATION_LINK_HELP','PARENT_LOCATIONS_HELP','Enter the link of your site. Make sure it redirects to a page where people can make a booking or can view relevant content.','Enter the link of your site. Make sure it redirects to a page where people can make a booking or can view relevant content.','backend'),(805,'LOCATIONS_LOCATION_IMAGE_HELP','PARENT_LOCATIONS_HELP','Make sure the image is relevant to your business.','Make sure the image is relevant to your business.','backend'),(806,'LOCATIONS_LOCATION_BUSINESSES_HELP','PARENT_LOCATIONS_HELP','Select what kind of businesses you have at this location. You can select multiple businesses.','Select what kind of businesses you have at this location. You can select multiple businesses.','backend'),(807,'LOCATIONS_LOCATION_BUSINESSES_OTHER_HELP','PARENT_LOCATIONS_HELP','We will add them in the list as soon as possible.','We will add them in the list as soon as possible.','backend'),(808,'LOCATIONS_LOCATION_LANGUAGES_HELP','PARENT_LOCATIONS_HELP','Enter the languages that are spoken in your business. You can select multiple languages.','Enter the languages that are spoken in your business. You can select multiple languages.','backend'),(809,'LOCATIONS_LOCATION_EMAIL_HELP','PARENT_LOCATIONS_HELP','Enter the email where we can contact you if there are problems with your submission','Enter the email where we can contact you if there are problems with your submission','backend'),(810,'PARENT_MODELS','','Business models','Business models','backend'),(811,'MODELS_TITLE','PARENT_MODELS','Business models','Business models','backend'),(812,'MODELS_CREATED_BY','PARENT_MODELS','Created by','Created by','backend'),(813,'MODELS_LOAD_SUCCESS','PARENT_MODELS','Business models list loaded.','Business models list loaded.','backend'),(814,'MODELS_NO_MODELS','PARENT_MODELS','No business models. Click the above \"plus\" icon to add a new one.','No business models. Click the above \"plus\" icon to add a new one.','backend'),(815,'PARENT_MODELS_MODEL','','Business models - Business model','Business models - Business model','backend'),(816,'MODELS_MODEL_NAME','PARENT_MODELS_MODEL','Name','Name','backend'),(817,'MODELS_MODEL_LANGUAGE','PARENT_MODELS_MODEL','Language','Language','backend'),(818,'MODELS_MODEL_ENABLED','PARENT_MODELS_MODEL','Use this business model','Use this business model','backend'),(819,'MODELS_MODEL_LABEL','PARENT_MODELS_MODEL','Label','Label','backend'),(820,'MODELS_MODEL_MULTIPLE_CALENDARS','PARENT_MODELS_MODEL','Use multiple calendars','Use multiple calendars','backend'),(821,'MODELS_MODEL_CALENDAR_LABEL','PARENT_MODELS_MODEL','Calendar label','Calendar label','backend'),(822,'MODELS_MODEL_LOADED','PARENT_MODELS_MODEL','Business model loaded.','Business model loaded.','backend'),(823,'PARENT_MODELS_ADD_MODEL','','Business models - Add business model','Business models - Add business model','backend'),(824,'MODELS_ADD_MODEL_NAME','PARENT_MODELS_ADD_MODEL','New business model','New business model','backend'),(825,'MODELS_ADD_MODEL_LABEL','PARENT_MODELS_ADD_MODEL','New business model label','New business model label','backend'),(826,'MODELS_ADD_MODEL_LABEL_CALENDAR','PARENT_MODELS_ADD_MODEL','Calendar label','Calendar label','backend'),(827,'MODELS_ADD_MODEL_SUBMIT','PARENT_MODELS_ADD_MODEL','Add business model','Add business model','backend'),(828,'MODELS_ADD_MODEL_ADDING','PARENT_MODELS_ADD_MODEL','Adding a business model ...','Adding a business model ...','backend'),(829,'MODELS_ADD_MODEL_SUCCESS','PARENT_MODELS_ADD_MODEL','You have successfully added a new business model.','You have successfully added a new business model.','backend'),(830,'PARENT_MODELS_DELETE_MODEL','','Business models - Delete business model','Business models - Delete business model','backend'),(831,'MODELS_DELETE_MODEL_CONFIRMATION','PARENT_MODELS_DELETE_MODEL','Are you sure you want to delete this business model?','Are you sure you want to delete this business model?','backend'),(832,'MODELS_DELETE_MODEL_SUBMIT','PARENT_MODELS_DELETE_MODEL','Delete business model','Delete business model','backend'),(833,'MODELS_DELETE_MODEL_DELETING','PARENT_MODELS_DELETE_MODEL','Deleting business model ...','Deleting business model ...','backend'),(834,'MODELS_DELETE_MODEL_SUCCESS','PARENT_MODELS_DELETE_MODEL','You have successfully deleted the business model.','You have successfully deleted the business model.','backend'),(835,'PARENT_MODELS_HELP','','Business models - Help','Business models - Help','backend'),(836,'MODELS_HELP','PARENT_MODELS_HELP','Click on a business model item to open the editing area.','Click on a business model item to open the editing area.','backend'),(837,'MODELS_ADD_MODEL_HELP','PARENT_MODELS_HELP','Click on the \"plus\" icon to add a business model.','Click on the \"plus\" icon to add a business model.','backend'),(838,'MODELS_MODEL_HELP','PARENT_MODELS_HELP','Click the \"trash\" icon to delete the business model.','Click the \"trash\" icon to delete the business model.','backend'),(839,'MODELS_MODEL_NAME_HELP','PARENT_MODELS_HELP','Change business model name.','Change business model name.','backend'),(840,'MODELS_MODEL_LANGUAGE_HELP','PARENT_MODELS_HELP','Change to the language you want to edit the business models.','Change to the language you want to edit the business models.','backend'),(841,'MODELS_MODEL_ENABLED_HELP','PARENT_MODELS_HELP','Enable this to use the business model.','Enable this to use the business model.','backend'),(842,'MODELS_MODEL_LABEL_HELP','PARENT_MODELS_HELP','Enter business model label.','Enter business model label.','backend'),(843,'MODELS_MODEL_MULTIPLE_CALENDARS_HELP','PARENT_MODELS_HELP','Enable this option to add more than one calendar to your business model','Enable this option to add more than one calendar to your business model','backend'),(844,'MODELS_MODEL_CALENDAR_LABEL_HELP','PARENT_MODELS_HELP','Set how the calendars should be called. Examples: Rooms, Staff, ...','Set how the calendars should be called. Examples: Rooms, Staff, ...','backend'),(845,'PARENT_PRO','','Pro','Pro','backend'),(846,'WORDPRESS_BOOKING_FEATURES_TITLE','PARENT_PRO','Features','Features','backend'),(847,'WORDPRESS_BOOKING_FEATURES_MAIN_TITLE','PARENT_PRO','Why choose PRO?','Why choose PRO?','backend'),(848,'WORDPRESS_BOOKING_FEATURES_DESCRIPTION','PARENT_PRO','The booking system comes with a huge set of amazing features. View the list, compare FREE and PRO versions, and decide which is best suited for your needs.','The booking system comes with a huge set of amazing features. View the list, compare FREE and PRO versions, and decide which is best suited for your needs.','backend'),(849,'WORDPRESS_BOOKING_FEATURES_FREE','PARENT_PRO','Free','Free','backend'),(850,'WORDPRESS_BOOKING_FEATURES_DOWNLOAD','PARENT_PRO','Download','Download','backend'),(851,'WORDPRESS_BOOKING_FEATURES_STANDARD','PARENT_PRO','Standard','Standard','backend'),(852,'WORDPRESS_BOOKING_FEATURES_PRICING','PARENT_PRO','Pricing','Pricing','backend'),(853,'WORDPRESS_BOOKING_FEATURES_FROM','PARENT_PRO','from','from','backend'),(854,'WORDPRESS_BOOKING_FEATURES_GET','PARENT_PRO','Get','Get','backend'),(855,'WORDPRESS_BOOKING_FEATURES_SHOW','PARENT_PRO','Show More','Show More','backend'),(856,'WORDPRESS_BOOKING_FEATURES_HIDE','PARENT_PRO','Hide','Hide','backend'),(857,'WORDPRESS_BOOKING_FEATURES_BUY','PARENT_PRO','Buy now','Buy now','backend'),(858,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TITLE','PARENT_PRO','Booking calendar','Booking calendar','backend'),(859,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT1','PARENT_PRO','A booking calendar is displayed in the front-end, where clients can view availability and can make reservations & appointments.','A booking calendar is displayed in the front-end, where clients can view availability and can make reservations & appointments.','backend'),(860,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT2','PARENT_PRO','All administrators & users can create an unlimited number of booking calendars with PRO version.','All administrators & users can create an unlimited number of booking calendars with PRO version.','backend'),(861,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT3','PARENT_PRO','Booking calendars can be duplicated with all current data and settings.','Booking calendars can be duplicated with all current data and settings.','backend'),(862,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT4','PARENT_PRO','Booking can be stopped x minutes/hours/days in advance.','Booking can be stopped x minutes/hours/days in advance.','backend'),(863,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT5','PARENT_PRO','Calendars will display the data depending on users time zones.','Calendars will display the data depending on users time zones.','backend'),(864,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT6','PARENT_PRO','Clients can click on the calendar’s days and/or hours to select the booking period they want.','Clients can click on the calendar’s days and/or hours to select the booking period they want.','backend'),(865,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT7','PARENT_PRO','Clients can select to display multiple or fewer months for better visualization. The number of months to be initially displayed can be set from calendar settings.','Clients can select to display multiple or fewer months for better visualization. The number of months to be initially displayed can be set from calendar settings.','backend'),(866,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT8','PARENT_PRO','Front end booking calendar is responsive and can be viewed on all browsers and devices.','Front end booking calendar is responsive and can be viewed on all browsers and devices.','backend'),(867,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT9','PARENT_PRO','Only the calendar can be displayed so that your users can check only availability.','Only the calendar can be displayed so that your users can check only availability.','backend'),(868,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT10','PARENT_PRO','Price can be hidden in front end calendar.','Price can be hidden in front end calendar.','backend'),(869,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT11','PARENT_PRO','Support for Terms & Conditions.','Support for Terms & Conditions.','backend'),(870,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT12','PARENT_PRO','The booking calendar is AJAX powered, so there is no need to refresh the page to make a reservation, update schedule ...','The booking calendar is AJAX powered, so there is no need to refresh the page to make a reservation, update schedule ...','backend'),(871,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT13','PARENT_PRO','The booking calendar contains a sidebar where clients can search availability, they can select the number of rooms/items they want, can select extras & services, can use coupons/vouchers, can view reservation summary with discounts & taxes/fees and can enter their details in a customizable form.','The booking calendar contains a sidebar where clients can search availability, they can select the number of rooms/items they want, can select extras & services, can use coupons/vouchers, can view reservation summary with discounts & taxes/fees and can enter their details in a customizable form.','backend'),(872,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT14','PARENT_PRO','The calendar’s sidebar view is customizable.','The calendar’s sidebar view is customizable.','backend'),(873,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT15','PARENT_PRO','The check in/out dates can be in American (MM DD, YYYY) or European (DD MM YYYY) format.','The check in/out dates can be in American (MM DD, YYYY) or European (DD MM YYYY) format.','backend'),(874,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT16','PARENT_PRO','The back end booking calendar is similar to the front end version so that administrators can have a very familiar way to add information ... what they see the clients see.','The back end booking calendar is similar to the front end version so that administrators can have a very familiar way to add information ... what they see the clients see.','backend'),(875,'WORDPRESS_BOOKING_FEATURES_CALENDARS_TEXT17','PARENT_PRO','You can set the first day from which the calendar will start.','You can set the first day from which the calendar will start.','backend'),(876,'WORDPRESS_BOOKING_FEATURES_COUPONS_TITLE','PARENT_PRO','Coupons & vouchers','Coupons & vouchers','backend'),(877,'WORDPRESS_BOOKING_FEATURES_COUPONS_TEXT1','PARENT_PRO','Create coupon/voucher codes for your clients.','Create coupon/voucher codes for your clients.','backend'),(878,'WORDPRESS_BOOKING_FEATURES_COUPONS_TEXT2','PARENT_PRO','The value for coupons can be negative or positive, fixed or percent, once or by day/hour.','The value for coupons can be negative or positive, fixed or percent, once or by day/hour.','backend'),(879,'WORDPRESS_BOOKING_FEATURES_COUPONS_TEXT3','PARENT_PRO','You can set date/time when the coupons can be used.','You can set date/time when the coupons can be used.','backend'),(880,'WORDPRESS_BOOKING_FEATURES_COUPONS_TEXT4','PARENT_PRO','You can create unlimited number of coupons, to use with one or multiple calendars or you can use multiple coupons in one calendar.','You can create unlimited number of coupons, to use with one or multiple calendars or you can use multiple coupons in one calendar.','backend'),(881,'WORDPRESS_BOOKING_FEATURES_CSS_TEMPLATES_TITLE','PARENT_PRO','Support of multiple CSS Templates','Support of multiple CSS Templates','backend'),(882,'WORDPRESS_BOOKING_FEATURES_CSS_TEMPLATES_TEXT1','PARENT_PRO','You have the possibility to create an unlimited number of CSS Templates to customize your front-end booking calendars.','You have the possibility to create an unlimited number of CSS Templates to customize your front-end booking calendars.','backend'),(883,'WORDPRESS_BOOKING_FEATURES_CURRENCIES_TITLE','PARENT_PRO','Multi-currency support','Multi-currency support','backend'),(884,'WORDPRESS_BOOKING_FEATURES_CURRENCIES_TEXT1','PARENT_PRO','Any currency can be used with your booking calendar.','Any currency can be used with your booking calendar.','backend'),(885,'WORDPRESS_BOOKING_FEATURES_CURRENCIES_TEXT2','PARENT_PRO','Currency display can customize to show before or after price.','Currency display can customize to show before or after price.','backend'),(886,'WORDPRESS_BOOKING_FEATURES_CURRENCIES_TEXT3','PARENT_PRO','You can add your own currency using hooks.','You can add your own currency using hooks.','backend'),(887,'WORDPRESS_BOOKING_FEATURES_CUSTOM_POSTS_TITLE','PARENT_PRO','Support for custom post type','Support for custom post type','backend'),(888,'WORDPRESS_BOOKING_FEATURES_CUSTOM_POSTS_TEXT1','PARENT_PRO','Users have the possibility to create a post with a booking calendar attached.','Users have the possibility to create a post with a booking calendar attached.','backend'),(889,'WORDPRESS_BOOKING_FEATURES_CUSTOM_POSTS_TEXT2','PARENT_PRO','The booking calendar availability, reservations & settings can be managed from the post.','The booking calendar availability, reservations & settings can be managed from the post.','backend'),(890,'WORDPRESS_BOOKING_FEATURES_DAYS_TITLE','PARENT_PRO','Book days','Book days','backend'),(891,'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT1','PARENT_PRO','Add price, promo price, number of items available and information for each day in the front-end booking calendar. In the back end booking calendar administrators can add notes to themselves or other administrators.','Add price, promo price, number of items available and information for each day in the front-end booking calendar. In the back end booking calendar administrators can add notes to themselves or other administrators.','backend'),(892,'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT2','PARENT_PRO','Days are displayed in the booking calendar with the following statuses: None, Available, Booked, Special, Unavailable.','Days are displayed in the booking calendar with the following statuses: None, Available, Booked, Special, Unavailable.','backend'),(893,'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT3','PARENT_PRO','Days color can be changed from CSS depending on the period.','Days color can be changed from CSS depending on the period.','backend'),(894,'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT4','PARENT_PRO','One or more days can be selected.','One or more days can be selected.','backend'),(895,'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT5','PARENT_PRO','Set price & status for groups of days. Multiple groups can be booked together.','Set price & status for groups of days. Multiple groups can be booked together.','backend'),(896,'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT6','PARENT_PRO','Set the first day of the week that will appear in the booking calendar.','Set the first day of the week that will appear in the booking calendar.','backend'),(897,'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT7','PARENT_PRO','Set general available/unavailable weekdays.','Set general available/unavailable weekdays.','backend'),(898,'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT8','PARENT_PRO','Support for morning check-out. It will display information in the Booking Calendar if you need to check-in in the afternoon and check-out in the morning. This option is very useful for hotels.','Support for morning check-out. It will display information in the Booking Calendar if you need to check-in in the afternoon and check-out in the morning. This option is very useful for hotels.','backend'),(899,'WORDPRESS_BOOKING_FEATURES_DAYS_TEXT9','PARENT_PRO','You can limit the minimum and/or maximum number of days that can be booked.','You can limit the minimum and/or maximum number of days that can be booked.','backend'),(900,'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TITLE','PARENT_PRO','Booking discounts','Booking discounts','backend'),(901,'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TEXT1','PARENT_PRO','Set discounts depending on the number of days/hours/minutes that are in a booking request (reservation).','Set discounts depending on the number of days/hours/minutes that are in a booking request (reservation).','backend'),(902,'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TEXT2','PARENT_PRO','The value for discounts can be negative or positive, fixed or percent, once or by day/hour.','The value for discounts can be negative or positive, fixed or percent, once or by day/hour.','backend'),(903,'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TEXT3','PARENT_PRO','You can create unlimited number of different discounts, to use with one or multiple calendars.','You can create unlimited number of different discounts, to use with one or multiple calendars.','backend'),(904,'WORDPRESS_BOOKING_FEATURES_DISCOUNTS_TEXT4','PARENT_PRO','You can set specific discounts for the date/time for which the booking request (reservation) is made.','You can set specific discounts for the date/time for which the booking request (reservation) is made.','backend'),(905,'WORDPRESS_BOOKING_FEATURES_EMAILS_TITLE','PARENT_PRO','Email templates & notifications','Email templates & notifications','backend'),(906,'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT1','PARENT_PRO','Create email templates for all possible notifications and languages.','Create email templates for all possible notifications and languages.','backend'),(907,'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT2','PARENT_PRO','Email notifications can be sent with SMTP, PHPMailer class or with PHP mail function.','Email notifications can be sent with SMTP, PHPMailer class or with PHP mail function.','backend'),(908,'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT3','PARENT_PRO','Enable/disable which notifications should be sent.','Enable/disable which notifications should be sent.','backend'),(909,'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT4','PARENT_PRO','Notifications can be sent to multiple admins.','Notifications can be sent to multiple admins.','backend'),(910,'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT5','PARENT_PRO','You can add reply email & name.','You can add reply email & name.','backend'),(911,'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT6','PARENT_PRO','You can create unlimited number of email templates, to use with one or multiple calendars.','You can create unlimited number of email templates, to use with one or multiple calendars.','backend'),(912,'WORDPRESS_BOOKING_FEATURES_EMAILS_TEXT7','PARENT_PRO','You can set what information should be included in notifications regarding the booking request (reservation) by using shortcodes in the email templates.','You can set what information should be included in notifications regarding the booking request (reservation) by using shortcodes in the email templates.','backend'),(913,'WORDPRESS_BOOKING_FEATURES_EXTRAS_TITLE','PARENT_PRO','Extras (amenities, services & other stuff)','Extras (amenities, services & other stuff)','backend'),(914,'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT1','PARENT_PRO','Add amenities, services & other stuff, with price or not, to a booking request (reservation).','Add amenities, services & other stuff, with price or not, to a booking request (reservation).','backend'),(915,'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT2','PARENT_PRO','Extras can have default values.','Extras can have default values.','backend'),(916,'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT3','PARENT_PRO','Extras groups can be mandatory or not and a client can select a single or multiple items.','Extras groups can be mandatory or not and a client can select a single or multiple items.','backend'),(917,'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT4','PARENT_PRO','The value for extras can be negative or positive, fixed or percent, once or by day/hour, or 0.','The value for extras can be negative or positive, fixed or percent, once or by day/hour, or 0.','backend'),(918,'WORDPRESS_BOOKING_FEATURES_EXTRAS_TEXT5','PARENT_PRO','You can create unlimited number of different extras groups, to use with one or multiple calendars.','You can create unlimited number of different extras groups, to use with one or multiple calendars.','backend'),(919,'WORDPRESS_BOOKING_FEATURES_FEES_TITLE','PARENT_PRO','Taxes & Fees','Taxes & Fees','backend'),(920,'WORDPRESS_BOOKING_FEATURES_FEES_TEXT1','PARENT_PRO','Add taxes & fees that need to be paid with a booking request (reservation).','Add taxes & fees that need to be paid with a booking request (reservation).','backend'),(921,'WORDPRESS_BOOKING_FEATURES_FEES_TEXT2','PARENT_PRO','Taxes & fees included or not in booking request (reservation) price.','Taxes & fees included or not in booking request (reservation) price.','backend'),(922,'WORDPRESS_BOOKING_FEATURES_FEES_TEXT3','PARENT_PRO','The value for taxes & fees can be negative or positive, fixed or percent, once or by day/hour.','The value for taxes & fees can be negative or positive, fixed or percent, once or by day/hour.','backend'),(923,'WORDPRESS_BOOKING_FEATURES_FEES_TEXT4','PARENT_PRO','You can choose to include or not extras in the calculation of taxes & fees.','You can choose to include or not extras in the calculation of taxes & fees.','backend'),(924,'WORDPRESS_BOOKING_FEATURES_FEES_TEXT5','PARENT_PRO','You can create unlimited number of taxes & fees, to use with one or multiple calendars.','You can create unlimited number of taxes & fees, to use with one or multiple calendars.','backend'),(925,'WORDPRESS_BOOKING_FEATURES_FORMS_TITLE','PARENT_PRO','Booking forms','Booking forms','backend'),(926,'WORDPRESS_BOOKING_FEATURES_FORMS_TEXT1','PARENT_PRO','Create your own custom booking forms to get what information you want from your clients.','Create your own custom booking forms to get what information you want from your clients.','backend'),(927,'WORDPRESS_BOOKING_FEATURES_FORMS_TEXT2','PARENT_PRO','The booking form supports Text fields (email, phone, name etc), Text areas, Checkboxes & Dropdowns.','The booking form supports Text fields (email, phone, name etc), Text areas, Checkboxes & Dropdowns.','backend'),(928,'WORDPRESS_BOOKING_FEATURES_FORMS_TEXT3','PARENT_PRO','You can create unlimited number of booking forms, to use with one or multiple calendars.','You can create unlimited number of booking forms, to use with one or multiple calendars.','backend'),(929,'WORDPRESS_BOOKING_FEATURES_HOURS_TITLE','PARENT_PRO','Book hours/minutes','Book hours/minutes','backend'),(930,'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT1','PARENT_PRO','Add price, promo price, number of items available and information for each hour in the front-end booking calendar. In the back end booking calendar administrators can add notes to themselves or other administrators.','Add price, promo price, number of items available and information for each hour in the front-end booking calendar. In the back end booking calendar administrators can add notes to themselves or other administrators.','backend'),(931,'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT2','PARENT_PRO','One or more hours can be selected.','One or more hours can be selected.','backend'),(932,'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT3','PARENT_PRO','Hours can be in AM/PM or 24 hours format.','Hours can be in AM/PM or 24 hours format.','backend'),(933,'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT4','PARENT_PRO','Hours intervals are supported.','Hours intervals are supported.','backend'),(934,'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT5','PARENT_PRO','Set price & status for groups of hours. Multiple groups can be booked together.','Set price & status for groups of hours. Multiple groups can be booked together.','backend'),(935,'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT6','PARENT_PRO','The hours are displayed in the Booking Calendar with the following statuses: None, Available, Booked, Special, Unavailable.','The hours are displayed in the Booking Calendar with the following statuses: None, Available, Booked, Special, Unavailable.','backend'),(936,'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT7','PARENT_PRO','You can limit the minimum and/or maximum number of minutes that can be booked.','You can limit the minimum and/or maximum number of minutes that can be booked.','backend'),(937,'WORDPRESS_BOOKING_FEATURES_HOURS_TEXT8','PARENT_PRO','You have complete control over what hours you are using in your booking calendar. You can set same hours by the minute for the whole calendar or you can set different hours for different days.','You have complete control over what hours you are using in your booking calendar. You can set same hours by the minute for the whole calendar or you can set different hours for different days.','backend'),(938,'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TITLE','PARENT_PRO','Multilingual support for front-end & back-end','Multilingual support for front-end & back-end','backend'),(939,'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT1','PARENT_PRO','All booking system text is changeable (calendars, extras, form fields, taxes ...).','All booking system text is changeable (calendars, extras, form fields, taxes ...).','backend'),(940,'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT2','PARENT_PRO','Change translation or text in back-end with an easy “to do” translation tool.','Change translation or text in back-end with an easy “to do” translation tool.','backend'),(941,'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT3','PARENT_PRO','Enable/disable languages.','Enable/disable languages.','backend'),(942,'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT4','PARENT_PRO','You can add your own language using hooks.','You can add your own language using hooks.','backend'),(943,'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT5','PARENT_PRO','WPML plugin is compatible and supported by Pinpoint Booking System.','WPML plugin is compatible and supported by Pinpoint Booking System.','backend'),(944,'WORDPRESS_BOOKING_FEATURES_LANGUAGES_TEXT6','PARENT_PRO','Note: Not all languages are translated.','Note: Not all languages are translated.','backend'),(945,'WORDPRESS_BOOKING_FEATURES_LOCATIONS_TITLE','PARENT_PRO','Locations','Locations','backend'),(946,'WORDPRESS_BOOKING_FEATURES_LOCATIONS_TEXT1','PARENT_PRO','Locations can be added on a Google map, and it can have multiple calendars attached to it.','Locations can be added on a Google map, and it can have multiple calendars attached to it.','backend'),(947,'WORDPRESS_BOOKING_FEATURES_LOCATIONS_TEXT2','PARENT_PRO','The locations will display on search results when you view the map.','The locations will display on search results when you view the map.','backend'),(948,'WORDPRESS_BOOKING_FEATURES_LOCATIONS_TEXT3','PARENT_PRO','Your business location can be shared on PINPOINT.WORLD','Your business location can be shared on PINPOINT.WORLD','backend'),(949,'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TITLE','PARENT_PRO','Support for Multi-Sites/Multi-Users','Support for Multi-Sites/Multi-Users','backend'),(950,'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TEXT1','PARENT_PRO','Allow administrators to access all calendars.','Allow administrators to access all calendars.','backend'),(951,'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TEXT2','PARENT_PRO','Allow users access to the booking system.','Allow users access to the booking system.','backend'),(952,'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TEXT3','PARENT_PRO','Allow users access to booking system custom post types.','Allow users access to booking system custom post types.','backend'),(953,'WORDPRESS_BOOKING_FEATURES_MULTI_SITES_USERS_TEXT4','PARENT_PRO','Allow administrators to create booking calendars and give access to different users.','Allow administrators to create booking calendars and give access to different users.','backend'),(954,'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TITLE','PARENT_PRO','Payment systems','Payment systems','backend'),(955,'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT1','PARENT_PRO','Payment cannot be mandatory when a client creates a booking request (reservation).','Payment cannot be mandatory when a client creates a booking request (reservation).','backend'),(956,'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT2','PARENT_PRO','Payment can be made when a client arrives at the location he/she booked.','Payment can be made when a client arrives at the location he/she booked.','backend'),(957,'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT3','PARENT_PRO','PayPal (credit card supported) is included.','PayPal (credit card supported) is included.','backend'),(958,'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT4','PARENT_PRO','Add-ons can be used to add other payment gateways like 2Checkout, Authorize.Net, Braintree, ICEPAY, Mollie, Stripe, and WePay.','Add-ons can be used to add other payment gateways like 2Checkout, Authorize.Net, Braintree, ICEPAY, Mollie, Stripe, and WePay.','backend'),(959,'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT5','PARENT_PRO','Billing and shipping addresses can be added to payment systems.','Billing and shipping addresses can be added to payment systems.','backend'),(960,'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT6','PARENT_PRO','Deposits can also be used with all payment gateways, and clients can pay only a percent or fixed amount of the sum or the full value of their booking.','Deposits can also be used with all payment gateways, and clients can pay only a percent or fixed amount of the sum or the full value of their booking.','backend'),(961,'WORDPRESS_BOOKING_FEATURES_PAYMENTS_TEXT7','PARENT_PRO','Each payment system has a refund function included.','Each payment system has a refund function included.','backend'),(962,'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TITLE','PARENT_PRO','Reservations','Reservations','backend'),(963,'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT1','PARENT_PRO','Administrators have the possibility to add, approve, reject, edit, cancel or delete a booking request (reservation).','Administrators have the possibility to add, approve, reject, edit, cancel or delete a booking request (reservation).','backend'),(964,'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT2','PARENT_PRO','Administrators have the possibility to filter and/or search throw booking requests (reservations).','Administrators have the possibility to filter and/or search throw booking requests (reservations).','backend'),(965,'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT3','PARENT_PRO','Booking requests (reservations) can be instantly approved or can be approved/rejected by administrators. The booking calendar will be changed accordingly.','Booking requests (reservations) can be instantly approved or can be approved/rejected by administrators. The booking calendar will be changed accordingly.','backend'),(966,'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT4','PARENT_PRO','Booking requests (reservations) cannot overlap.','Booking requests (reservations) cannot overlap.','backend'),(967,'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT5','PARENT_PRO','Reservations are displayed in a list or in a calendar.','Reservations are displayed in a list or in a calendar.','backend'),(968,'WORDPRESS_BOOKING_FEATURES_RESERVATIONS_TEXT6','PARENT_PRO','Reservations can be printed and/or exported to CSV, XLS, ICS & JSON formats.','Reservations can be printed and/or exported to CSV, XLS, ICS & JSON formats.','backend'),(969,'WORDPRESS_BOOKING_FEATURES_RULES_TITLE','PARENT_PRO','Booking rules','Booking rules','backend'),(970,'WORDPRESS_BOOKING_FEATURES_RULES_TEXT1','PARENT_PRO','Set minimum & maximum number of days/hours/minutes that are permitted in a booking request (reservation).','Set minimum & maximum number of days/hours/minutes that are permitted in a booking request (reservation).','backend'),(971,'WORDPRESS_BOOKING_FEATURES_SEARCH_TITLE','PARENT_PRO','Search availability through all calendars','Search availability through all calendars','backend'),(972,'WORDPRESS_BOOKING_FEATURES_SEARCH_TEXT1','PARENT_PRO','You can search availability for hours or days, and you can filter results by location and price.','You can search availability for hours or days, and you can filter results by location and price.','backend'),(973,'WORDPRESS_BOOKING_FEATURES_SEARCH_TEXT2','PARENT_PRO','Results can be viewed in a list, a grid or by location on a Google map.','Results can be viewed in a list, a grid or by location on a Google map.','backend'),(974,'WORDPRESS_BOOKING_FEATURES_SEARCH_TEXT3','PARENT_PRO','If you select a result, you will be redirected to the page where the booking calendar is with search parameters already selected.','If you select a result, you will be redirected to the page where the booking calendar is with search parameters already selected.','backend'),(975,'WORDPRESS_BOOKING_FEATURES_SMS_TITLE','PARENT_PRO','SMS notifications','SMS notifications','backend'),(976,'WORDPRESS_BOOKING_FEATURES_SMS_TEXT1','PARENT_PRO','SMS can be sent, to you or your clients, about reservations status changes with Clickatell SMS gateway.','SMS can be sent, to you or your clients, about reservations status changes with Clickatell SMS gateway.','backend'),(977,'WORDPRESS_BOOKING_FEATURES_SYNCHRONIZATION_TITLE','PARENT_PRO','Synchronization with other systems','Synchronization with other systems','backend'),(978,'WORDPRESS_BOOKING_FEATURES_SYNCHRONIZATION_TEXT1','PARENT_PRO','Each Pinpoint booking calendar availability can be synchronized with Google Calendar, iCalendar or Airbnb.','Each Pinpoint booking calendar availability can be synchronized with Google Calendar, iCalendar or Airbnb.','backend'),(979,'WORDPRESS_BOOKING_FEATURES_TOOLS_TITLE','PARENT_PRO','Tools','Tools','backend'),(980,'WORDPRESS_BOOKING_FEATURES_TOOLS_TEXT1','PARENT_PRO','Pinpoint Booking System has a set of tools to repair technical problems that may appear with your installation.','Pinpoint Booking System has a set of tools to repair technical problems that may appear with your installation.','backend'),(981,'WORDPRESS_BOOKING_FEATURES_TOOLS_TEXT2','PARENT_PRO','\"Repair database & text\" tool can be used if your installation or update are not done properly, and you need to repair the database or the translation.','\"Repair database & text\" tool can be used if your installation or update are not done properly, and you need to repair the database or the translation.','backend'),(982,'WORDPRESS_BOOKING_FEATURES_TOOLS_TEXT3','PARENT_PRO','\"Repair calendars settings\" tool can be used if a calendar is not behaving as expected after you configure it.','\"Repair calendars settings\" tool can be used if a calendar is not behaving as expected after you configure it.','backend'),(983,'WORDPRESS_BOOKING_FEATURES_TOOLS_TEXT4','PARENT_PRO','\"Repair search settings\" tool can be used if a search module cannot be configured properly.','\"Repair search settings\" tool can be used if a search module cannot be configured properly.','backend'),(984,'WORDPRESS_BOOKING_FEATURES_WIDGETS_TITLE','PARENT_PRO','Support for Widgets','Support for Widgets','backend'),(985,'WORDPRESS_BOOKING_FEATURES_WIDGETS_TEXT1','PARENT_PRO','Add booking calendars in a widget area.','Add booking calendars in a widget area.','backend'),(986,'WORDPRESS_BOOKING_FEATURES_WIDGETS_TEXT2','PARENT_PRO','Display a booking calendar sidebar in a widget area.','Display a booking calendar sidebar in a widget area.','backend'),(987,'WORDPRESS_BOOKING_FEATURES_WOO_TITLE','PARENT_PRO','Extend with WooCommerce','Extend with WooCommerce','backend'),(988,'WORDPRESS_BOOKING_FEATURES_WOO_TEXT1','PARENT_PRO','Configure calendar availability, services, discounts, taxes & fees ... and attach it to a product.','Configure calendar availability, services, discounts, taxes & fees ... and attach it to a product.','backend'),(989,'WORDPRESS_BOOKING_FEATURES_WOO_TEXT2','PARENT_PRO','Add bookings to cart and use WooCommerce Extensions for coupons, deposits and more.','Add bookings to cart and use WooCommerce Extensions for coupons, deposits and more.','backend'),(990,'WORDPRESS_BOOKING_FEATURES_WOO_TEXT3','PARENT_PRO','All reservations and data is saved both in WooCommerce orders and Pinpoint','All reservations and data is saved both in WooCommerce orders and Pinpoint','backend'),(991,'WORDPRESS_BOOKING_FEATURES_WOO_TEXT4','PARENT_PRO','And the most important part ... you can use all the payment gateways and other plugins offered by WooCommerce.','And the most important part ... you can use all the payment gateways and other plugins offered by WooCommerce.','backend'),(992,'PARENT_ORDER','','Order','Order','all'),(993,'ORDER_TITLE','PARENT_ORDER','Order','Order','all'),(994,'ORDER_UNAVAILABLE','PARENT_ORDER','The period you selected is not available anymore. The calendar will refresh to update the schedule.','The period you selected is not available anymore. The calendar will refresh to update the schedule.','all'),(995,'ORDER_UNAVAILABLE_COUPON','PARENT_ORDER','The coupon you entered is not available anymore.','The coupon you entered is not available anymore.','all'),(996,'ORDER_PAYMENT_METHOD','PARENT_RESERVATIONS_RESERVATION','Payment method','Payment method','all'),(997,'ORDER_PAYMENT_FULL_AMOUNT','PARENT_RESERVATIONS_RESERVATION','Pay full amount','Pay full amount','all'),(998,'ORDER_PAYMENT_METHOD_NONE','PARENT_RESERVATIONS_RESERVATION','None','None','all'),(999,'ORDER_PAYMENT_METHOD_ARRIVAL','PARENT_RESERVATIONS_RESERVATION','On arrival','On arrival','all'),(1000,'ORDER_PAYMENT_METHOD_WOOCOMMERCE','PARENT_RESERVATIONS_RESERVATION','WooCommerce','WooCommerce','all'),(1001,'ORDER_PAYMENT_METHOD_WOOCOMMERCE_ORDER_ID','PARENT_RESERVATIONS_RESERVATION','Order ID','Order ID','all'),(1002,'ORDER_PAYMENT_METHOD_TRANSACTION_ID','PARENT_RESERVATIONS_RESERVATION','Transaction ID','Transaction ID','all'),(1003,'ORDER_PAYMENT_ARRIVAL','PARENT_ORDER','Pay on arrival (need to be approved)','Pay on arrival (need to be approved)','all'),(1004,'ORDER_PAYMENT_ARRIVAL_WITH_APPROVAL','PARENT_ORDER','Pay on arrival (instant booking)','Pay on arrival (instant booking)','all'),(1005,'ORDER_PAYMENT_ARRIVAL_SUCCESS','PARENT_ORDER','Your request has been successfully sent. Please wait for approval.','Your request has been successfully sent. Please wait for approval.','all'),(1006,'ORDER_PAYMENT_ARRIVAL_WITH_APPROVAL_SUCCESS','PARENT_ORDER','Your request has been successfully received. We are waiting you!','Your request has been successfully received. We are waiting you!','all'),(1007,'ORDER_TERMS_AND_CONDITIONS','PARENT_ORDER','I agree to the Terms & Conditions.','I agree to the Terms & Conditions.','all'),(1008,'ORDER_TERMS_AND_CONDITIONS_INVALID','PARENT_ORDER','You must agree with our Terms & Conditions to continue.','You must agree with our Terms & Conditions to continue.','all'),(1009,'ORDER_BOOK','PARENT_ORDER','Book now','Book now','all'),(1010,'PARENT_ORDER_ADDRESS','','Order - Billing/shipping address','Order - Billing/shipping address','all'),(1011,'ORDER_ADDRESS_SELECT_PAYMENT_METHOD','PARENT_ORDER_ADDRESS','Select payment method.','Select payment method.','all'),(1012,'ORDER_ADDRESS_BILLING','PARENT_ORDER_ADDRESS','Billing address','Billing address','all'),(1013,'ORDER_ADDRESS_BILLING_DISABLED','PARENT_ORDER_ADDRESS','Billing address is not enabled.','Billing address is not enabled.','all'),(1014,'ORDER_ADDRESS_SHIPPING','PARENT_ORDER_ADDRESS','Shipping address','Shipping address','all'),(1015,'ORDER_ADDRESS_SHIPPING_DISABLED','PARENT_ORDER_ADDRESS','Shipping address is not enabled.','Shipping address is not enabled.','all'),(1016,'ORDER_ADDRESS_SHIPPING_COPY','PARENT_ORDER_ADDRESS','Use billing address','Use billing address','all'),(1017,'ORDER_ADDRESS_FIRST_NAME','PARENT_ORDER_ADDRESS','First name','First name','all'),(1018,'ORDER_ADDRESS_LAST_NAME','PARENT_ORDER_ADDRESS','Last name','Last name','all'),(1019,'ORDER_ADDRESS_COMPANY','PARENT_ORDER_ADDRESS','Company','Company','all'),(1020,'ORDER_ADDRESS_EMAIL','PARENT_ORDER_ADDRESS','Email','Email','all'),(1021,'ORDER_ADDRESS_PHONE','PARENT_ORDER_ADDRESS','Phone number','Phone number','all'),(1022,'ORDER_ADDRESS_COUNTRY','PARENT_ORDER_ADDRESS','Country','Country','all'),(1023,'ORDER_ADDRESS_ADDRESS_FIRST','PARENT_ORDER_ADDRESS','Address line 1','Address line 1','all'),(1024,'ORDER_ADDRESS_ADDRESS_SECOND','PARENT_ORDER_ADDRESS','Address line 2','Address line 2','all'),(1025,'ORDER_ADDRESS_CITY','PARENT_ORDER_ADDRESS','City','City','all'),(1026,'ORDER_ADDRESS_STATE','PARENT_ORDER_ADDRESS','State/Province','State/Province','all'),(1027,'ORDER_ADDRESS_ZIP_CODE','PARENT_ORDER_ADDRESS','Zip code','Zip code','all'),(1028,'PARENT_RESERVATIONS','','Reservations','Reservations','backend'),(1029,'RESERVATIONS_TITLE','PARENT_RESERVATIONS','Reservations','Reservations','backend'),(1030,'RESERVATIONS_DISPLAY_NEW_RESERVATIONS','PARENT_RESERVATIONS','Display new reservations','Display new reservations','backend'),(1031,'RESERVATIONS_NO_RESERVATIONS','PARENT_RESERVATIONS','There are no reservations.','There are no reservations.','backend'),(1032,'PARENT_RESERVATIONS_FILTERS','','Reservations - Filters','Reservations - Filters','backend'),(1033,'RESERVATIONS_FILTERS_CALENDAR','PARENT_RESERVATIONS_FILTERS','Calendar','Calendar','backend'),(1034,'RESERVATIONS_FILTERS_CALENDAR_ALL','PARENT_RESERVATIONS_FILTERS','All','All','backend'),(1035,'RESERVATIONS_FILTERS_VIEW_CALENDAR','PARENT_RESERVATIONS_FILTERS','View calendar','View calendar','backend'),(1036,'RESERVATIONS_FILTERS_VIEW_LIST','PARENT_RESERVATIONS_FILTERS','View list','View list','backend'),(1037,'RESERVATIONS_FILTERS_PERIOD','PARENT_RESERVATIONS_FILTERS','Period','Period','backend'),(1038,'RESERVATIONS_FILTERS_START_DAY','PARENT_RESERVATIONS_FILTERS','Start day','Start day','backend'),(1039,'RESERVATIONS_FILTERS_END_DAY','PARENT_RESERVATIONS_FILTERS','End day','End day','backend'),(1040,'RESERVATIONS_FILTERS_START_HOUR','PARENT_RESERVATIONS_FILTERS','Start hour','Start hour','backend'),(1041,'RESERVATIONS_FILTERS_END_HOUR','PARENT_RESERVATIONS_FILTERS','End hour','End hour','backend'),(1042,'RESERVATIONS_FILTERS_STATUS','PARENT_RESERVATIONS_FILTERS','Status','Status','backend'),(1043,'RESERVATIONS_FILTERS_STATUS_LABEL','PARENT_RESERVATIONS_FILTERS','Select statuses','Select statuses','backend'),(1044,'RESERVATIONS_FILTERS_STATUS_PENDING','PARENT_RESERVATIONS_FILTERS','Pending','Pending','backend'),(1045,'RESERVATIONS_FILTERS_STATUS_APPROVED','PARENT_RESERVATIONS_FILTERS','Approved','Approved','backend'),(1046,'RESERVATIONS_FILTERS_STATUS_REJECTED','PARENT_RESERVATIONS_FILTERS','Rejected','Rejected','backend'),(1047,'RESERVATIONS_FILTERS_STATUS_CANCELED','PARENT_RESERVATIONS_FILTERS','Canceled','Canceled','backend'),(1048,'RESERVATIONS_FILTERS_STATUS_EXPIRED','PARENT_RESERVATIONS_FILTERS','Expired','Expired','backend'),(1049,'RESERVATIONS_FILTERS_PAYMENT_LABEL','PARENT_RESERVATIONS_FILTERS','Select payment methods','Select payment methods','backend'),(1050,'RESERVATIONS_FILTERS_SEARCH','PARENT_RESERVATIONS_FILTERS','Search','Search','backend'),(1051,'RESERVATIONS_FILTERS_PAGE','PARENT_RESERVATIONS_FILTERS','Page','Page','backend'),(1052,'RESERVATIONS_FILTERS_PER_PAGE','PARENT_RESERVATIONS_FILTERS','Reservations per page','Reservations per page','backend'),(1053,'RESERVATIONS_FILTERS_ORDER','PARENT_RESERVATIONS_FILTERS','Order','Order','backend'),(1054,'RESERVATIONS_FILTERS_ORDER_ASCENDING','PARENT_RESERVATIONS_FILTERS','Ascending','Ascending','backend'),(1055,'RESERVATIONS_FILTERS_ORDER_DESCENDING','PARENT_RESERVATIONS_FILTERS','Descending','Descending','backend'),(1056,'RESERVATIONS_FILTERS_ORDER_BY','PARENT_RESERVATIONS_FILTERS','Order by','Order by','backend'),(1057,'PARENT_RESERVATIONS_RESERVATION','','Reservations - Reservation','Reservations - Reservation','backend'),(1058,'RESERVATIONS_RESERVATION_ADD','PARENT_RESERVATIONS_RESERVATION','Add reservation','Add reservation','backend'),(1059,'RESERVATIONS_RESERVATION_ADD_SUCCESS','PARENT_RESERVATIONS_RESERVATION','Add reservation','Add reservation','backend'),(1060,'RESERVATIONS_RESERVATION_DETAILS_TITLE','PARENT_RESERVATIONS_RESERVATION','Details','Details','all'),(1061,'RESERVATIONS_RESERVATION_ID','PARENT_RESERVATIONS_RESERVATION','Reservation ID','Reservation ID','all'),(1062,'RESERVATIONS_RESERVATION_DATE_CREATED','PARENT_RESERVATIONS_RESERVATION','Date created','Date created','backend'),(1063,'RESERVATIONS_RESERVATION_IP_ADDRESS','PARENT_RESERVATIONS_RESERVATION','IP address','IP address','backend'),(1064,'RESERVATIONS_RESERVATION_CALENDAR_ID','PARENT_RESERVATIONS_RESERVATION','Calendar ID','Calendar ID','backend'),(1065,'RESERVATIONS_RESERVATION_CALENDAR_NAME','PARENT_RESERVATIONS_RESERVATION','Calendar name','Calendar name','backend'),(1066,'RESERVATIONS_RESERVATION_LANGUAGE','PARENT_RESERVATIONS_RESERVATION','Selected language','Selected language','backend'),(1067,'RESERVATIONS_RESERVATION_STATUS','PARENT_RESERVATIONS_RESERVATION','Status','Status','backend'),(1068,'RESERVATIONS_RESERVATION_STATUS_PENDING','PARENT_RESERVATIONS_RESERVATION','Pending','Pending','backend'),(1069,'RESERVATIONS_RESERVATION_STATUS_APPROVED','PARENT_RESERVATIONS_RESERVATION','Approved','Approved','backend'),(1070,'RESERVATIONS_RESERVATION_STATUS_REJECTED','PARENT_RESERVATIONS_RESERVATION','Rejected','Rejected','backend'),(1071,'RESERVATIONS_RESERVATION_STATUS_CANCELED','PARENT_RESERVATIONS_RESERVATION','Canceled','Canceled','backend'),(1072,'RESERVATIONS_RESERVATION_STATUS_EXPIRED','PARENT_RESERVATIONS_RESERVATION','Expired','Expired','backend'),(1073,'RESERVATIONS_RESERVATION_PAYMENT_PRICE_CHANGE','PARENT_RESERVATIONS_RESERVATION','Price change','Price change','all'),(1074,'RESERVATIONS_RESERVATION_SYNC','PARENT_RESERVATIONS_RESERVATION','Synced from','Synced from','all'),(1075,'RESERVATIONS_APPROVE_UNAVAILABLE','PARENT_RESERVATIONS_RESERVATION','Another approved reservation already exists for this period.','Another approved reservation already exists for this period.','all'),(1076,'RESERVATIONS_RESERVATION_NO_EXTRAS','PARENT_RESERVATIONS_RESERVATION','No extras.','No extras.','all'),(1077,'RESERVATIONS_RESERVATION_NO_DISCOUNT','PARENT_RESERVATIONS_RESERVATION','No discount.','No discount.','all'),(1078,'RESERVATIONS_RESERVATION_NO_COUPON','PARENT_RESERVATIONS_RESERVATION','No coupon.','No coupon.','all'),(1079,'RESERVATIONS_RESERVATION_NO_FEES','PARENT_RESERVATIONS_RESERVATION','No taxes or fees.','No taxes or fees.','all'),(1080,'RESERVATIONS_RESERVATION_NO_ADDRESS_BILLING','PARENT_RESERVATIONS_RESERVATION','No billing address.','No billing address.','all'),(1081,'RESERVATIONS_RESERVATION_NO_ADDRESS_SHIPPING','PARENT_RESERVATIONS_RESERVATION','No shipping address.','No shipping address.','all'),(1082,'RESERVATIONS_RESERVATION_NO_FORM','PARENT_RESERVATIONS_RESERVATION','Form was not completed.','Form was not completed.','all'),(1083,'RESERVATIONS_RESERVATION_NO_FORM_FIELD','PARENT_RESERVATIONS_RESERVATION','Form field was not completed.','Form field was not completed.','all'),(1084,'RESERVATIONS_RESERVATION_ADDRESS_SHIPPING_COPY','PARENT_RESERVATIONS_RESERVATION','Same as billing address.','Same as billing address.','all'),(1085,'RESERVATIONS_RESERVATION_INSTRUCTIONS','PARENT_RESERVATIONS_RESERVATION','Click to edit the reservation.','Click to edit the reservation.','all'),(1086,'RESERVATIONS_RESERVATION_APPROVE','PARENT_RESERVATIONS_RESERVATION','Approve','Approve','backend'),(1087,'RESERVATIONS_RESERVATION_APPROVE_CONFIRMATION','PARENT_RESERVATIONS_RESERVATION','Are you sure you want to approve this reservation?','Are you sure you want to approve this reservation?','backend'),(1088,'RESERVATIONS_RESERVATION_APPROVE_SUCCESS','PARENT_RESERVATIONS_RESERVATION','The reservation has been approved.','The reservation has been approved.','backend'),(1089,'RESERVATIONS_RESERVATION_CANCEL','PARENT_RESERVATIONS_RESERVATION','Cancel','Cancel','backend'),(1090,'RESERVATIONS_RESERVATION_CANCEL_CONFIRMATION','PARENT_RESERVATIONS_RESERVATION','Are you sure you want to cancel this reservation?','Are you sure you want to cancel this reservation?','backend'),(1091,'RESERVATIONS_RESERVATION_CANCEL_CONFIRMATION_REFUND','PARENT_RESERVATIONS_RESERVATION','Are you sure you want to cancel this reservation? A refund will be issued automatically.','Are you sure you want to cancel this reservation? A refund will be issued automatically.','backend'),(1092,'RESERVATIONS_RESERVATION_CANCEL_SUCCESS','PARENT_RESERVATIONS_RESERVATION','The reservation has been canceled.','The reservation has been canceled.','backend'),(1093,'RESERVATIONS_RESERVATION_CANCEL_SUCCESS_REFUND','PARENT_RESERVATIONS_RESERVATION','A refund of %s has been made.','A refund of %s has been made.','backend'),(1094,'RESERVATIONS_RESERVATION_CANCEL_SUCCESS_REFUND_WARNING','PARENT_RESERVATIONS_RESERVATION','A refund or a partial refund has already been made.','A refund or a partial refund has already been made.','backend'),(1095,'RESERVATIONS_RESERVATION_DELETE','PARENT_RESERVATIONS_RESERVATION','Delete','Delete','backend'),(1096,'RESERVATIONS_RESERVATION_DELETE_CONFIRMATION','PARENT_RESERVATIONS_RESERVATION','Are you sure you want to delete this reservation?','Are you sure you want to delete this reservation?','backend'),(1097,'RESERVATIONS_RESERVATION_DELETE_SUCCESS','PARENT_RESERVATIONS_RESERVATION','The reservation has been deleted.','The reservation has been deleted.','backend'),(1098,'RESERVATIONS_RESERVATION_REJECT','PARENT_RESERVATIONS_RESERVATION','Reject','Reject','backend'),(1099,'RESERVATIONS_RESERVATION_REJECT_CONFIRMATION','PARENT_RESERVATIONS_RESERVATION','Are you sure you want to reject this reservation?','Are you sure you want to reject this reservation?','backend'),(1100,'RESERVATIONS_RESERVATION_REJECT_SUCCESS','PARENT_RESERVATIONS_RESERVATION','The reservation has been rejected.','The reservation has been rejected.','backend'),(1101,'RESERVATIONS_RESERVATION_CLOSE','PARENT_RESERVATIONS_RESERVATION','Close','Close','backend'),(1102,'RESERVATIONS_RESERVATION_PRINT','PARENT_RESERVATIONS_RESERVATION','Print','Print','backend'),(1103,'RESERVATIONS_RESERVATION_EXPORT','PARENT_RESERVATIONS_RESERVATION','Export to:','Export to:','backend'),(1104,'PARENT_RESERVATIONS_HELP','','Reservations - Help','Reservations - Help','backend'),(1105,'RESERVATIONS_HELP','PARENT_RESERVATIONS_HELP','Manage reservations.','Manage reservations.','backend'),(1106,'RESERVATIONS_FILTERS_CALENDAR_HELP','PARENT_RESERVATIONS_HELP','Select the calendar for which you want to see reservations, or display all reservations.','Select the calendar for which you want to see reservations, or display all reservations.','backend'),(1107,'RESERVATIONS_FILTERS_VIEW_CALENDAR_HELP','PARENT_RESERVATIONS_HELP','Selecting \"Calendar view\" will display the reservations in a calendar. Only possible when you select one calendar.','Selecting \"Calendar view\" will display the reservations in a calendar. Only possible when you select one calendar.','backend'),(1108,'RESERVATIONS_FILTERS_VIEW_LIST_HELP','PARENT_RESERVATIONS_HELP','Selecting \"List view\" will display the reservations in a list.','Selecting \"List view\" will display the reservations in a list.','backend'),(1109,'RESERVATIONS_FILTERS_START_DAY_HELP','PARENT_RESERVATIONS_HELP','Select the day from where displayed reservations start.','Select the day from where displayed reservations start.','backend'),(1110,'RESERVATIONS_FILTERS_END_DAY_HELP','PARENT_RESERVATIONS_HELP','Select the day where displayed reservations end.','Select the day where displayed reservations end.','backend'),(1111,'RESERVATIONS_FILTERS_START_HOUR_HELP','PARENT_RESERVATIONS_HELP','Select the hour from where displayed reservations start.','Select the hour from where displayed reservations start.','backend'),(1112,'RESERVATIONS_FILTERS_END_HOUR_HELP','PARENT_RESERVATIONS_HELP','Select the hour where displayed reservations end.','Select the hour where displayed reservations end.','backend'),(1113,'RESERVATIONS_FILTERS_STATUS_HELP','PARENT_RESERVATIONS_HELP','Display reservations with selected status.','Display reservations with selected status.','backend'),(1114,'RESERVATIONS_FILTERS_PAYMENT_HELP','PARENT_RESERVATIONS_HELP','Display reservations with selected payment methods.','Display reservations with selected payment methods.','backend'),(1115,'RESERVATIONS_FILTERS_SEARCH_HELP','PARENT_RESERVATIONS_HELP','Enter the search value.','Enter the search value.','backend'),(1116,'RESERVATIONS_FILTERS_PAGE_HELP','PARENT_RESERVATIONS_HELP','Select page.','Select page.','backend'),(1117,'RESERVATIONS_FILTERS_PER_PAGE_HELP','PARENT_RESERVATIONS_HELP','Select the number of reservations which will be displayed on page.','Select the number of reservations which will be displayed on page.','backend'),(1118,'RESERVATIONS_FILTERS_ORDER_HELP','PARENT_RESERVATIONS_HELP','Order the reservations ascending or descending.','Order the reservations ascending or descending.','backend'),(1119,'RESERVATIONS_FILTERS_ORDER_BY_HELP','PARENT_RESERVATIONS_HELP','Select the field after which the reservations will be sorted.','Select the field after which the reservations will be sorted.','backend'),(1120,'PARENT_RESERVATIONS_RESERVATION_FRONT_END','','Reservations - Reservation front end','Reservations - Reservation front end','backend'),(1121,'RESERVATIONS_RESERVATION_FRONT_END_TITLE','PARENT_RESERVATIONS_RESERVATION_FRONT_END','Reservation','Reservation','all'),(1122,'RESERVATIONS_RESERVATION_FRONT_END_SELECT_DAYS','PARENT_RESERVATIONS_RESERVATION_FRONT_END','Please select the days from calendar.','Please select the days from calendar.','all'),(1123,'RESERVATIONS_RESERVATION_FRONT_END_SELECT_HOURS','PARENT_RESERVATIONS_RESERVATION_FRONT_END','Please select the days and hours from calendar.','Please select the days and hours from calendar.','all'),(1124,'RESERVATIONS_RESERVATION_FRONT_END_PRICE','PARENT_RESERVATIONS_RESERVATION_FRONT_END','Price','Price','all'),(1125,'RESERVATIONS_RESERVATION_FRONT_END_TOTAL_PRICE','PARENT_RESERVATIONS_RESERVATION_FRONT_END','Total','Total','all'),(1126,'RESERVATIONS_RESERVATION_FRONT_END_DEPOSIT','PARENT_RESERVATIONS_RESERVATION_FRONT_END','Deposit','Deposit','all'),(1127,'RESERVATIONS_RESERVATION_FRONT_END_DEPOSIT_LEFT','PARENT_RESERVATIONS_RESERVATION_FRONT_END','Left to pay','Left to pay','all'),(1128,'PARENT_REVIEWS','','Reviews','Reviews','backend'),(1129,'REVIEWS_TITLE','PARENT_REVIEWS','Reviews','Reviews','backend'),(1130,'PARENT_RULES','','Rules','Rules','backend'),(1131,'RULES_TITLE','PARENT_RULES','Rules','Rules','backend'),(1132,'RULES_DEFAULT_NAME','PARENT_RULES','New rule','New rule','backend'),(1133,'RULES_CREATED_BY','PARENT_RULES','Created by','Created by','backend'),(1134,'RULES_LOAD_SUCCESS','PARENT_RULES','Rules list loaded.','Rules list loaded.','backend'),(1135,'RULES_NO_RULES','PARENT_RULES','No rules. Click the above \"plus\" icon to add a new one.','No rules. Click the above \"plus\" icon to add a new one.','backend'),(1136,'PARENT_RULES_RULE','','Rules - Rule','Rules - Rule','backend'),(1137,'RULES_RULE_NAME','PARENT_RULES_RULE','Name','Name','backend'),(1138,'RULES_RULE_TIME_LAPSE_MIN','PARENT_RULES_RULE','Minimum time lapse','Minimum time lapse','backend'),(1139,'RULES_RULE_TIME_LAPSE_MAX','PARENT_RULES_RULE','Maximum time lapse','Maximum time lapse','backend'),(1140,'RULES_RULE_LOADED','PARENT_RULES_RULE','Rule loaded.','Rule loaded.','backend'),(1141,'PARENT_RULES_ADD_RULE','','Rules - Add rule','Rules - Add rule','backend'),(1142,'RULES_ADD_RULE_NAME','PARENT_RULES_ADD_RULE','New rule','New rule','backend'),(1143,'RULES_ADD_RULE_SUBMIT','PARENT_RULES_ADD_RULE','Add rule','Add rule','backend'),(1144,'RULES_ADD_RULE_ADDING','PARENT_RULES_ADD_RULE','Adding a new rule ...','Adding a new rule ...','backend'),(1145,'RULES_ADD_RULE_SUCCESS','PARENT_RULES_ADD_RULE','You have successfully added a new rule.','You have successfully added a new rule.','backend'),(1146,'PARENT_RULES_DELETE_RULE','','Rules - Delete rule','Rules - Delete rule','backend'),(1147,'RULES_DELETE_RULE_CONFIRMATION','PARENT_RULES_DELETE_RULE','Are you sure you want to delete this rule?','Are you sure you want to delete this rule?','backend'),(1148,'RULES_DELETE_RULE_SUBMIT','PARENT_RULES_DELETE_RULE','Delete rule','Delete rule','backend'),(1149,'RULES_DELETE_RULE_DELETING','PARENT_RULES_DELETE_RULE','Deleting rule ...','Deleting rule ...','backend'),(1150,'RULES_DELETE_RULE_SUCCESS','PARENT_RULES_DELETE_RULE','You have successfully deleted the rule.','You have successfully deleted the rule.','backend'),(1151,'PARENT_RULES_HELP','','Rules - Help','Rules - Help','backend'),(1152,'RULES_HELP','PARENT_RULES_HELP','Click on a rule item to open the editing area.','Click on a rule item to open the editing area.','backend'),(1153,'RULES_ADD_RULE_HELP','PARENT_RULES_HELP','Click on the \"plus\" icon to add a rule.','Click on the \"plus\" icon to add a rule.','backend'),(1154,'RULES_RULE_NAME_HELP','PARENT_RULES_HELP','Change rule name.','Change rule name.','backend'),(1155,'RULES_RULE_TIME_LAPSE_MIN_HELP','PARENT_RULES_RULE','Enter minimum booking time lapse. Default value is 1.','Enter minimum booking time lapse. Default value is 1.','backend'),(1156,'RULES_RULE_TIME_LAPSE_MAX_HELP','PARENT_RULES_RULE','Enter maximum booking time lapse. Add 0 for unlimited period.','Enter maximum booking time lapse. Add 0 for unlimited period.','backend'),(1157,'PARENT_RULES_FRONT_END','','Rules - Front end','Rules - Front end','backend'),(1158,'RULES_FRONT_END_MIN_TIME_LAPSE_DAYS_WARNING','PARENT_RULES_FRONT_END','You need to book a minimum number of %d days.','You need to book a minimum number of %d days.','calendar'),(1159,'RULES_FRONT_END_MAX_TIME_LAPSE_DAYS_WARNING','PARENT_RULES_FRONT_END','You can book only a maximum number of %d days.','You can book only a maximum number of %d days.','calendar'),(1160,'RULES_FRONT_END_MIN_TIME_LAPSE_HOURS_WARNING','PARENT_RULES_FRONT_END','You need to book a minimum number of %d hours.','You need to book a minimum number of %d hours.','calendar'),(1161,'RULES_FRONT_END_MAX_TIME_LAPSE_HOURS_WARNING','PARENT_RULES_FRONT_END','You can book only a maximum number of %d hours.','You can book only a maximum number of %d hours.','calendar'),(1162,'PARENT_SEARCHES','','Search','Search','backend'),(1163,'SEARCHES_TITLE','PARENT_SEARCHES','Search','Search','backend'),(1164,'SEARCHES_CREATED_BY','PARENT_SEARCHES','Created by','Created by','backend'),(1165,'SEARCHES_LOAD_SUCCESS','PARENT_SEARCHES','Search list loaded.','Search list loaded.','backend'),(1166,'SEARCHES_NO_SEARCHES','PARENT_SEARCHES','No searches. Click the above \"plus\" icon to add a new one.','No searches. Click the above \"plus\" icon to add a new one.','backend'),(1167,'PARENT_SEARCHES_SEARCH','','Search','Search','backend'),(1168,'SEARCHES_SEARCH_NAME','PARENT_SEARCHES_SEARCH','Name','Name','backend'),(1169,'SEARCHES_SEARCH_LOADED','PARENT_SEARCHES_SEARCH','Search loaded.','Search loaded.','backend'),(1170,'PARENT_SEARCHES_ADD_SEARCH','','Search - Add search','Search - Add search','backend'),(1171,'SEARCHES_ADD_SEARCH_NAME','PARENT_SEARCHES_ADD_SEARCH','New search','New search','backend'),(1172,'SEARCHES_ADD_SEARCH_SUBMIT','PARENT_SEARCHES_ADD_SEARCH','Add search','Add search','backend'),(1173,'SEARCHES_ADD_SEARCH_ADDING','PARENT_SEARCHES_ADD_SEARCH','Adding a new search ...','Adding a new search ...','backend'),(1174,'SEARCHES_ADD_SEARCH_SUCCESS','PARENT_SEARCHES_ADD_SEARCH','You have succesfully added a new search.','You have succesfully added a new search.','backend'),(1175,'PARENT_SEARCHES_EDIT_SEARCH','','Search - Edit search','Search - Edit search','backend'),(1176,'SEARCHES_EDIT_SEARCH','PARENT_SEARCHES_EDIT_SEARCH','Edit search details','Edit search details','backend'),(1177,'SEARCHES_EDIT_SEARCH_SETTINGS','PARENT_SEARCHES_EDIT_SEARCH','Edit search settings','Edit search settings','backend'),(1178,'SEARCHES_EDIT_SEARCH_EXCLUDED_CALENDARS_DAYS','PARENT_SEARCHES_EDIT_SEARCH','Exclude calendars from search [hours filters disabled]','Exclude calendars from search [hours filters disabled]','backend'),(1179,'SEARCHES_EDIT_SEARCH_EXCLUDED_CALENDARS_HOURS','PARENT_SEARCHES_EDIT_SEARCH','Exclude calendars from search [hours filters enabled]','Exclude calendars from search [hours filters enabled]','backend'),(1180,'SEARCHES_EDIT_SEARCH_NO_CALENDARS','PARENT_SEARCHES_EDIT_SEARCH','There are no calendars created. Go to <a href=\"%s\">calendars</a> page to create one.','There are no calendars created. Go to <a href=\"%s\">calendars</a> page to create one.','backend'),(1181,'PARENT_SEARCHES_DELETE_SEARCH','','Search - Delete search','Search - Delete search','backend'),(1182,'SEARCHES_DELETE_SEARCH_CONFIRMATION','PARENT_SEARCHES_DELETE_SEARCH','Are you sure you want to delete this search?','Are you sure you want to delete this search?','backend'),(1183,'SEARCHES_DELETE_SEARCH_SUBMIT','PARENT_SEARCHES_DELETE_SEARCH','Delete search','Delete search','backend'),(1184,'SEARCHES_DELETE_SEARCH_DELETING','PARENT_SEARCHES_DELETE_SEARCH','Deleting search ...','Deleting search ...','backend'),(1185,'SEARCHES_DELETE_SEARCH_SUCCESS','PARENT_SEARCHES_DELETE_SEARCH','You have succesfully deleted the search.','You have succesfully deleted the search.','backend'),(1186,'PARENT_SEARCHES_HELP','','Search - Help','Search - Help','backend'),(1187,'SEARCHES_HELP','PARENT_SEARCHES_HELP','Click on a search item to open the editing area.','Click on a search item to open the editing area.','backend'),(1188,'SEARCHES_ADD_SEARCH_HELP','PARENT_SEARCHES_HELP','Click on the \"plus\" icon to add a search.','Click on the \"plus\" icon to add a search.','backend'),(1189,'SEARCHES_EDIT_SEARCH_HELP','PARENT_SEARCHES_HELP','Click on the \"search\" icon to edit search details.','Click on the \"search\" icon to edit search details.','backend'),(1190,'SEARCHES_EDIT_SEARCH_SETTINGS_HELP','PARENT_SEARCHES_HELP','Click on the \"gear\" icon to edit search settings.','Click on the \"gear\" icon to edit search settings.','backend'),(1191,'SEARCHES_EDIT_SEARCH_DELETE_HELP','PARENT_SEARCHES_HELP','Click the \"trash\" icon to delete the search.','Click the \"trash\" icon to delete the search.','backend'),(1192,'SEARCHES_EDIT_SEARCH_EXCLUDED_CALENDARS_HELP','PARENT_SEARCHES_HELP','If hours filters are enabled only calendars that have availability set for hours are included in search, else only calendar that have availability set for days are included.','If hours filters are enabled only calendars that have availability set for hours are included in search, else only calendar that have availability set for days are included.','backend'),(1193,'SEARCHES_SEARCH_NAME_HELP','PARENT_SEARCHES_HELP','Change search name.','Change search name.','backend'),(1194,'PARENT_SEARCH_FRONT_END','','Search - Front end','Search - Front end','backend'),(1195,'SEARCH_FRONT_END_TITLE','PARENT_SEARCH_FRONT_END','Search','Search','all'),(1196,'SEARCH_FRONT_END_CHECK_IN','PARENT_SEARCH_FRONT_END','Check in','Check in','all'),(1197,'SEARCH_FRONT_END_CHECK_OUT','PARENT_SEARCH_FRONT_END','Check out','Check out','all'),(1198,'SEARCH_FRONT_END_START_HOUR','PARENT_SEARCH_FRONT_END','Start at','Start at','all'),(1199,'SEARCH_FRONT_END_END_HOUR','PARENT_SEARCH_FRONT_END','Finish at','Finish at','all'),(1200,'SEARCH_FRONT_END_NO_ITEMS','PARENT_SEARCH_FRONT_END','No book items','No book items','all'),(1201,'SEARCH_FRONT_END_NO_AVAILABILITY','PARENT_SEARCH_FRONT_END','Nothing available.','Nothing available.','all'),(1202,'SEARCH_FRONT_END_NO_SERVICES_AVAILABLE','PARENT_SEARCH_FRONT_END','There are no services available for the period you selected.','There are no services available for the period you selected.','all'),(1203,'SEARCH_FRONT_END_NO_SERVICES_AVAILABLE_SPLIT_GROUP','PARENT_SEARCH_FRONT_END','You cannot add divided groups to a reservation.','You cannot add divided groups to a reservation.','all'),(1204,'SEARCH_FRONT_END_SORT_TITLE','PARENT_SEARCH_FRONT_END','Sort by','Sort by','all'),(1205,'SEARCH_FRONT_END_SORT_NAME','PARENT_SEARCH_FRONT_END','Name','Name','all'),(1206,'SEARCH_FRONT_END_SORT_PRICE','PARENT_SEARCH_FRONT_END','Price','Price','all'),(1207,'SEARCH_FRONT_END_SORT_ASC','PARENT_SEARCH_FRONT_END','Ascending','Ascending','all'),(1208,'SEARCH_FRONT_END_SORT_DESC','PARENT_SEARCH_FRONT_END','Descending','Descending','all'),(1209,'SEARCH_FRONT_END_VIEW_GRID','PARENT_SEARCH_FRONT_END','Grid view','Grid view','all'),(1210,'SEARCH_FRONT_END_VIEW_LIST','PARENT_SEARCH_FRONT_END','List view','List view','all'),(1211,'SEARCH_FRONT_END_VIEW_MAP','PARENT_SEARCH_FRONT_END','Map view','Map view','all'),(1212,'SEARCH_FRONT_END_RESULTS_PRICE','PARENT_SEARCH_FRONT_END','Start at %s','Start at %s','all'),(1213,'SEARCH_FRONT_END_RESULTS_VIEW','PARENT_SEARCH_FRONT_END','View','View','all'),(1214,'PARENT_SETTINGS','','Settings','Settings','backend'),(1215,'SETTINGS_TITLE','PARENT_SETTINGS','Settings','Settings','backend'),(1216,'SETTINGS_ENABLED','PARENT_SETTINGS','Enabled','Enabled','backend'),(1217,'SETTINGS_DISABLED','PARENT_SETTINGS','Disabled','Disabled','backend'),(1218,'SETTINGS_GENERAL_TITLE','PARENT_SETTINGS','General settings','General settings','backend'),(1220,'SETTINGS_GENERAL_GOOGLE_MAP_API_KEY','PARENT_SETTINGS','Google Map API key','Google Map API key','backend'),(1221,'SETTINGS_GENERAL_REFERRAL_ID','PARENT_SETTINGS','Referral ID','Referral ID','backend'),(1222,'SETTINGS_GENERAL_REFERRAL_DISPLAY','PARENT_SETTINGS','Referral display','Referral display','backend'),(1223,'PARENT_SETTINGS_HELP','','Settings - Help','Settings - Help','backend'),(1224,'SETTINGS_HELP','PARENT_SETTINGS_HELP','Edit booking system settings.','Edit booking system settings.','backend'),(1225,'SETTINGS_GENERAL_GOOGLE_MAP_API_KEY_HELP','PARENT_SETTINGS_HELP','Enter Google Map API key.','Enter Google Map API key.','backend'),(1226,'SETTINGS_GENERAL_REFERRAL_ID_HELP','PARENT_SETTINGS_HELP','Enter your referral ID.You can find it in your account on pinpoint.world in the Affiliate program section. ','Enter your referral ID.You can find it in your account on pinpoint.world in the Affiliate program section. ','backend'),(1227,'SETTINGS_GENERAL_REFERRAL_DISPLAY_HELP','PARENT_SETTINGS_HELP','Enable if you want to display a link with the referral code in front-end.','Enable if you want to display a link with the referral code in front-end.','backend'),(1228,'PARENT_SETTINGS_CALENDAR','','Settings - Calendar','Settings - Calendar','backend'),(1229,'SETTINGS_CALENDAR_TITLE','PARENT_SETTINGS_CALENDAR','Calendar settings','Calendar settings','backend'),(1230,'SETTINGS_CALENDAR_NAME','PARENT_SETTINGS_CALENDAR','Name','Name','backend'),(1231,'SETTINGS_CALENDAR_GENERAL_SETTINGS','PARENT_SETTINGS_CALENDAR','General settings','General settings','backend'),(1232,'SETTINGS_CALENDAR_GENERAL_DATE_TYPE','PARENT_SETTINGS_CALENDAR','Date type','Date type','backend'),(1233,'SETTINGS_CALENDAR_GENERAL_DATE_TYPE_AMERICAN','PARENT_SETTINGS_CALENDAR','American (mm dd, yyyy)','American (mm dd, yyyy)','backend'),(1234,'SETTINGS_CALENDAR_GENERAL_DATE_TYPE_EUROPEAN','PARENT_SETTINGS_CALENDAR','European (dd mm yyyy)','European (dd mm yyyy)','backend'),(1235,'SETTINGS_CALENDAR_GENERAL_TEMPLATE','PARENT_SETTINGS_CALENDAR','Style template','Style template','backend'),(1236,'SETTINGS_CALENDAR_GENERAL_BOOKING_STOP','PARENT_SETTINGS_CALENDAR','Stop booking x minutes in advance','Stop booking x minutes in advance','backend'),(1237,'SETTINGS_CALENDAR_GENERAL_MONTHS_NO','PARENT_SETTINGS_CALENDAR','Number of months displayed','Number of months displayed','backend'),(1238,'SETTINGS_CALENDAR_GENERAL_VIEW_ONLY','PARENT_SETTINGS_CALENDAR','View only info','View only info','backend'),(1239,'SETTINGS_CALENDAR_GENERAL_SERVER_TIME','PARENT_SETTINGS_CALENDAR','Enable server time','Enable server time','backend'),(1240,'SETTINGS_CALENDAR_GENERAL_TIMEZONE','PARENT_SETTINGS_CALENDAR','Timezone','Timezone','backend'),(1241,'SETTINGS_CALENDAR_GENERAL_HIDE_PRICE','PARENT_SETTINGS_CALENDAR','Hide price','Hide price','backend'),(1242,'SETTINGS_CALENDAR_GENERAL_HIDE_NO_AVAILABLE','PARENT_SETTINGS_CALENDAR','Hide No available','Hide No available','backend'),(1243,'SETTINGS_CALENDAR_GENERAL_MINIMUM_NO_AVAILABLE','PARENT_SETTINGS_CALENDAR','Minimum no available','Minimum no available','backend'),(1244,'SETTINGS_CALENDAR_GENERAL_MAXIMUM_NO_AVAILABLE','PARENT_SETTINGS_CALENDAR','Maximum no available','Maximum no available','backend'),(1245,'SETTINGS_CALENDAR_GENERAL_POST_ID','PARENT_SETTINGS_CALENDAR','Post ID','Post ID','backend'),(1246,'SETTINGS_CALENDAR_CURRENCY_SETTINGS','PARENT_SETTINGS_CALENDAR','Currency settings','Currency settings','backend'),(1247,'SETTINGS_CALENDAR_CURRENCY','PARENT_SETTINGS_CALENDAR','Currency','Currency','backend'),(1248,'SETTINGS_CALENDAR_CURRENCY_POSITION','PARENT_SETTINGS_CALENDAR','Currency position','Currency position','backend'),(1249,'SETTINGS_CALENDAR_CURRENCY_POSITION_BEFORE','PARENT_SETTINGS_CALENDAR','Before','Before','backend'),(1250,'SETTINGS_CALENDAR_CURRENCY_POSITION_BEFORE_WITH_SPACE','PARENT_SETTINGS_CALENDAR','Before with space','Before with space','backend'),(1251,'SETTINGS_CALENDAR_CURRENCY_POSITION_AFTER','PARENT_SETTINGS_CALENDAR','After','After','backend'),(1252,'SETTINGS_CALENDAR_CURRENCY_POSITION_AFTER_WITH_SPACE','PARENT_SETTINGS_CALENDAR','After with space','After with space','backend'),(1253,'SETTINGS_CALENDAR_DAYS_SETTINGS','PARENT_SETTINGS_CALENDAR','Days settings','Days settings','backend'),(1254,'SETTINGS_CALENDAR_DAYS_AVAILABLE','PARENT_SETTINGS_CALENDAR','Available days','Available days','backend'),(1255,'SETTINGS_CALENDAR_DAYS_FIRST','PARENT_SETTINGS_CALENDAR','First weekday','First weekday','backend'),(1256,'SETTINGS_CALENDAR_DAYS_FIRST_DISPLAYED','PARENT_SETTINGS_CALENDAR','First day displayed','First day displayed','backend'),(1257,'SETTINGS_CALENDAR_DAYS_MULTIPLE_SELECT','PARENT_SETTINGS_CALENDAR','Use Check in/Check out','Use Check in/Check out','backend'),(1258,'SETTINGS_CALENDAR_DAYS_MORNING_CHECK_OUT','PARENT_SETTINGS_CALENDAR','Morning check out','Morning check out','backend'),(1259,'SETTINGS_CALENDAR_DAYS_DETAILS_FROM_HOURS','PARENT_SETTINGS_CALENDAR','Use hours details to set day details','Use hours details to set day details','backend'),(1260,'SETTINGS_CALENDAR_HOURS_SETTINGS','PARENT_SETTINGS_CALENDAR','Hours settings','Hours settings','backend'),(1261,'SETTINGS_CALENDAR_HOURS_ENABLED','PARENT_SETTINGS_CALENDAR','Use hours','Use hours','backend'),(1262,'SETTINGS_CALENDAR_HOURS_INFO_ENABLED','PARENT_SETTINGS_CALENDAR','Enable hours info','Enable hours info','backend'),(1263,'SETTINGS_CALENDAR_HOURS_DEFINITIONS','PARENT_SETTINGS_CALENDAR','Define hours','Define hours','backend'),(1264,'SETTINGS_CALENDAR_HOURS_MULTIPLE_SELECT','PARENT_SETTINGS_CALENDAR','Use start/finish hours','Use start/finish hours','backend'),(1265,'SETTINGS_CALENDAR_HOURS_AMPM','PARENT_SETTINGS_CALENDAR','Enable AM/PM format','Enable AM/PM format','backend'),(1266,'SETTINGS_CALENDAR_HOURS_ADD_LAST_HOUR_TO_TOTAL_PRICE','PARENT_SETTINGS_CALENDAR','Add last selected hour price to total price','Add last selected hour price to total price','backend'),(1267,'SETTINGS_CALENDAR_HOURS_INTERVAL_ENABLED','PARENT_SETTINGS_CALENDAR','Enable hours interval','Enable hours interval','backend'),(1268,'SETTINGS_CALENDAR_HOURS_INTERVAL_AUTOBREAK_ENABLED','PARENT_SETTINGS_CALENDAR','Enable breaks for hours interval','Enable breaks for hours interval','backend'),(1269,'SETTINGS_CALENDAR_SIDEBAR_SETTINGS','PARENT_SETTINGS_CALENDAR','Sidebar settings','Sidebar settings','backend'),(1270,'SETTINGS_CALENDAR_SIDEBAR_STYLE','PARENT_SETTINGS_CALENDAR','Sidebar style','Sidebar style','backend'),(1271,'SETTINGS_CALENDAR_SIDEBAR_NO_ITEMS_ENABLED','PARENT_SETTINGS_CALENDAR','Enable number of items select','Enable number of items select','backend'),(1272,'SETTINGS_CALENDAR_RULES_SETTINGS','PARENT_SETTINGS_CALENDAR','Rules settings','Rules settings','backend'),(1273,'SETTINGS_CALENDAR_RULES','PARENT_SETTINGS_CALENDAR','Select rule','Select rule','backend'),(1274,'SETTINGS_CALENDAR_RULES_NONE','PARENT_SETTINGS_CALENDAR','None','None','backend'),(1275,'SETTINGS_CALENDAR_EXTRAS_SETTINGS','PARENT_SETTINGS_CALENDAR','Extras settings','Extras settings','backend'),(1276,'SETTINGS_CALENDAR_EXTRAS','PARENT_SETTINGS_CALENDAR','Select extra','Select extra','backend'),(1277,'SETTINGS_CALENDAR_EXTRAS_NONE','PARENT_SETTINGS_CALENDAR','None','None','backend'),(1278,'SETTINGS_CALENDAR_CART_SETTINGS','PARENT_SETTINGS_CALENDAR','Cart settings','Cart settings','backend'),(1279,'SETTINGS_CALENDAR_CART_ENABLED','PARENT_SETTINGS_CALENDAR','Enable cart','Enable cart','backend'),(1280,'SETTINGS_CALENDAR_DISCOUNTS_SETTINGS','PARENT_SETTINGS_CALENDAR','Discounts settings','Discounts settings','backend'),(1281,'SETTINGS_CALENDAR_DISCOUNTS','PARENT_SETTINGS_CALENDAR','Select discount','Select discount','backend'),(1282,'SETTINGS_CALENDAR_DISCOUNTS_NONE','PARENT_SETTINGS_CALENDAR','None','None','backend'),(1283,'SETTINGS_CALENDAR_FEES_SETTINGS','PARENT_SETTINGS_CALENDAR','Taxes & fees settings','Taxes & fees settings','backend'),(1284,'SETTINGS_CALENDAR_FEES','PARENT_SETTINGS_CALENDAR','Select taxes and/or fees','Select taxes and/or fees','backend'),(1285,'SETTINGS_CALENDAR_COUPONS_SETTINGS','PARENT_SETTINGS_CALENDAR','Coupons settings','Coupons settings','backend'),(1286,'SETTINGS_CALENDAR_COUPONS','PARENT_SETTINGS_CALENDAR','Select coupons','Select coupons','backend'),(1287,'SETTINGS_CALENDAR_COUPONS_NONE','PARENT_SETTINGS_CALENDAR','None','None','backend'),(1288,'SETTINGS_CALENDAR_DEPOSIT_SETTINGS','PARENT_SETTINGS_CALENDAR','Deposit settings','Deposit settings','backend'),(1289,'SETTINGS_CALENDAR_DEPOSIT','PARENT_SETTINGS_CALENDAR','Deposit value','Deposit value','backend'),(1290,'SETTINGS_CALENDAR_DEPOSIT_TYPE','PARENT_SETTINGS_CALENDAR','Deposit type','Deposit type','backend'),(1291,'SETTINGS_CALENDAR_DEPOSIT_TYPE_FIXED','PARENT_SETTINGS_CALENDAR','Fixed','Fixed','backend'),(1292,'SETTINGS_CALENDAR_DEPOSIT_TYPE_PERCENT','PARENT_SETTINGS_CALENDAR','Percent','Percent','backend'),(1293,'SETTINGS_CALENDAR_DEPOSIT_PAY_FULL_AMOUNT','PARENT_SETTINGS_CALENDAR','Enable Pay full amount.','Enable Pay full amount.','backend'),(1294,'SETTINGS_CALENDAR_FORMS_SETTINGS','PARENT_SETTINGS_CALENDAR','Forms settings','Forms settings','backend'),(1295,'SETTINGS_CALENDAR_FORMS','PARENT_SETTINGS_CALENDAR','Select form','Select form','backend'),(1296,'SETTINGS_CALENDAR_ORDER_SETTINGS','PARENT_SETTINGS_CALENDAR','Order settings','Order settings','backend'),(1297,'SETTINGS_CALENDAR_ORDER_TERMS_AND_CONDITIONS_ENABLED','PARENT_SETTINGS_CALENDAR','Enable Terms & Conditions','Enable Terms & Conditions','backend'),(1298,'SETTINGS_CALENDAR_ORDER_TERMS_AND_CONDITIONS_LINK','PARENT_SETTINGS_CALENDAR','Terms & Conditions link','Terms & Conditions link','backend'),(1299,'SETTINGS_CALENDAR_GOOGLE_SYNC_SETTINGS','PARENT_SETTINGS_CALENDAR','Google Calendar Sync settings','Google Calendar Sync settings','backend'),(1300,'SETTINGS_CALENDAR_GOOGLE_ENABLED','PARENT_SETTINGS_CALENDAR','Enable Google Calendar Sync','Enable Google Calendar Sync','backend'),(1301,'SETTINGS_CALENDAR_GOOGLE_CLIENT_ID','PARENT_SETTINGS_CALENDAR','Client ID','Client ID','backend'),(1302,'SETTINGS_CALENDAR_GOOGLE_PROJECT_ID','PARENT_SETTINGS_CALENDAR','Project ID','Project ID','backend'),(1303,'SETTINGS_CALENDAR_GOOGLE_CLIENT_SECRET','PARENT_SETTINGS_CALENDAR','Client secret','Client secret','backend'),(1304,'SETTINGS_CALENDAR_GOOGLE_CALENDAR_ID','PARENT_SETTINGS_CALENDAR','Calendar ID','Calendar ID','backend'),(1305,'SETTINGS_CALENDAR_GOOGLE_FEED_URL','PARENT_SETTINGS_CALENDAR','Feed URL','Feed URL','backend'),(1307,'SETTINGS_CALENDAR_GOOGLE_TOKEN_URI','PARENT_SETTINGS_CALENDAR','Token URI','Token URI','backend'),(1308,'SETTINGS_CALENDAR_GOOGLE_SYNC_TIME','PARENT_SETTINGS_CALENDAR','Sync time','Sync time','backend'),(1309,'SETTINGS_CALENDAR_GOOGLE_SYNC_TIMEOUT','PARENT_SETTINGS_CALENDAR','Sync timeout','Sync timeout','backend'),(1310,'SETTINGS_CALENDAR_SYNC_SETTINGS','PARENT_SETTINGS_CALENDAR_HELP','iCalendar - Synchronization','iCalendar - Synchronization','backend'),(1311,'SETTINGS_CALENDAR_ICAL_URL','PARENT_SETTINGS_CALENDAR_HELP','iCalendar URL','iCalendar URL','backend'),(1312,'SETTINGS_CALENDAR_AIRBNB_SYNC_SETTINGS','PARENT_SETTINGS_CALENDAR','Airbnb Sync settings','Airbnb Sync settings','backend'),(1313,'SETTINGS_CALENDAR_AIRBNB_ENABLED','PARENT_SETTINGS_CALENDAR','Enable Airbnb Sync','Enable Airbnb Sync','backend'),(1314,'SETTINGS_CALENDAR_AIRBNB_FEED_URL','PARENT_SETTINGS_CALENDAR','Feed URL','Feed URL','backend'),(1315,'SETTINGS_CALENDAR_AIRBNB_SYNC_TIME','PARENT_SETTINGS_CALENDAR','Sync time','Sync time','backend'),(1316,'SETTINGS_CALENDAR_AIRBNB_SYNC_TIMEOUT','PARENT_SETTINGS_CALENDAR','Sync timeout','Sync timeout','backend'),(1317,'PARENT_SETTINGS_CALENDAR_HELP','','Settings - Calendar - Help','Settings - Calendar - Help','backend'),(1318,'SETTINGS_CALENDAR_NAME_HELP','PARENT_SETTINGS_CALENDAR_HELP','Change calendar name.','Change calendar name.','backend'),(1319,'SETTINGS_CALENDAR_GENERAL_DATE_TYPE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: American. Select date format: American (mm dd, yyyy) or European (dd mm yyyy).','Default value: American. Select date format: American (mm dd, yyyy) or European (dd mm yyyy).','backend'),(1320,'SETTINGS_CALENDAR_GENERAL_TEMPLATE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: default. Select styles template.','Default value: default. Select styles template.','backend'),(1321,'SETTINGS_CALENDAR_GENERAL_BOOKING_STOP_HELP','PARENT_SETTINGS_CALENDAR','Default value: 0. Set the number of minutes before the booking is stopped in advance. For 1 hour you have 60 minutes, for 1 day you have 1440 minutes.','Default value: 0. Set the number of minutes before the booking is stopped in advance. For 1 hour you have 60 minutes, for 1 day you have 1440 minutes.','backend'),(1322,'SETTINGS_CALENDAR_GENERAL_MONTHS_NO_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: 1. Set the number of months initially displayed. Maximum number allowed is 6.','Default value: 1. Set the number of months initially displayed. Maximum number allowed is 6.','backend'),(1323,'SETTINGS_CALENDAR_GENERAL_VIEW_ONLY_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Enabled. Set to display only booking information in front end.','Default value: Enabled. Set to display only booking information in front end.','backend'),(1324,'SETTINGS_CALENDAR_GENERAL_SERVER_TIME_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. Use server time.','Default value: Disabled. Use server time.','backend'),(1325,'SETTINGS_CALENDAR_GENERAL_TIMEZONE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Select your timezone.','Select your timezone.','backend'),(1326,'SETTINGS_CALENDAR_GENERAL_HIDE_PRICE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: false. Enable to hide price from calendar ( frontend ).','Default value: false. Enable to hide price from calendar ( frontend ).','backend'),(1327,'SETTINGS_CALENDAR_GENERAL_HIDE_NO_AVAILABLE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: false. Enable to hide number of days/hours available from calendar ( frontend ).','Default value: false. Enable to hide number of days/hours available from calendar ( frontend ).','backend'),(1328,'SETTINGS_CALENDAR_GENERAL_MINIMUM_NO_AVAILABLE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: 1. Set minimum no available from sidebar ( frontend ).','Default value: 1. Set minimum no available from sidebar ( frontend ).','backend'),(1329,'SETTINGS_CALENDAR_GENERAL_MAXIMUM_NO_AVAILABLE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: 1000. Set maximum no available from sidebar ( frontend ).','Default value: 1000. Set maximum no available from sidebar ( frontend ).','backend'),(1330,'SETTINGS_CALENDAR_GENERAL_POST_ID_HELP','PARENT_SETTINGS_CALENDAR_HELP','Set post ID where the calendar will be added. It is mandatory if you create a searching system through some calendars.','Set post ID where the calendar will be added. It is mandatory if you create a searching system through some calendars.','backend'),(1331,'SETTINGS_CALENDAR_CURRENCY_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: United States Dollar ($, USD). Select calendar currency.','Default value: United States Dollar ($, USD). Select calendar currency.','backend'),(1332,'SETTINGS_CALENDAR_CURRENCY_POSITION_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Before. Select currency position.','Default value: Before. Select currency position.','backend'),(1333,'SETTINGS_CALENDAR_DAYS_MULTIPLE_SELECT_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Enabled. Use Check in/Check out or select only one day.','Default value: Enabled. Use Check in/Check out or select only one day.','backend'),(1334,'SETTINGS_CALENDAR_DAYS_AVAILABLE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: all available. Select available weekdays.','Default value: all available. Select available weekdays.','backend'),(1335,'SETTINGS_CALENDAR_DAYS_FIRST_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Monday. Select calendar first weekday.','Default value: Monday. Select calendar first weekday.','backend'),(1336,'SETTINGS_CALENDAR_DAYS_FIRST_DISPLAYED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Format: YYYY-MM-DD. Default value: today. Select the day to be first displayed when the calendar calendar is loaded.','Format: YYYY-MM-DD. Default value: today. Select the day to be first displayed when the calendar calendar is loaded.','backend'),(1337,'SETTINGS_CALENDAR_DAYS_MORNING_CHECK_OUT_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. This option enables \"Check in\" in the afternoon of first day and \"Check out\" in the morning of the day after last day.','Default value: Disabled. This option enables \"Check in\" in the afternoon of first day and \"Check out\" in the morning of the day after last day.','backend'),(1338,'SETTINGS_CALENDAR_DAYS_DETAILS_FROM_HOURS_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Enabled. Check this option, when hours are enabled, if you want for days details to be updated (calculated) from hours details or disable it if you want to have complete control of day details.','Default value: Enabled. Check this option, when hours are enabled, if you want for days details to be updated (calculated) from hours details or disable it if you want to have complete control of day details.','backend'),(1339,'SETTINGS_CALENDAR_HOURS_ENABLED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. Enable hours for the calendar.','Default value: Disabled. Enable hours for the calendar.','backend'),(1340,'SETTINGS_CALENDAR_HOURS_INFO_ENABLED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Enabled. Display hours info when you hover a day in calendar.','Default value: Enabled. Display hours info when you hover a day in calendar.','backend'),(1341,'SETTINGS_CALENDAR_HOURS_DEFINITIONS_HELP','PARENT_SETTINGS_CALENDAR_HELP','Enter hh:mm ... add one per line. Changing the definitions will overwrite any previous hours data. Use only 24 hours format.','Enter hh:mm ... add one per line. Changing the definitions will overwrite any previous hours data. Use only 24 hours format.','backend'),(1342,'SETTINGS_CALENDAR_HOURS_MULTIPLE_SELECT_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Enabled. Use Start/Finish Hours or select only one hour.','Default value: Enabled. Use Start/Finish Hours or select only one hour.','backend'),(1343,'SETTINGS_CALENDAR_HOURS_AMPM_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. Display hours in AM/PM format. NOTE: Hours definitions still need to be in 24 hours format.','Default value: Disabled. Display hours in AM/PM format. NOTE: Hours definitions still need to be in 24 hours format.','backend'),(1344,'SETTINGS_CALENDAR_HOURS_ADD_LAST_HOUR_TO_TOTAL_PRICE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Enabled. It calculates the total price before the last hours selected if Disabled. It calculates the total price including the last hour selected if Enabled. <br /><br /><strong>Warning: </strong> In administration area the last hours from your definitions list will not be displayed.','Default value: Enabled. It calculates the total price before the last hours selected if Disabled. It calculates the total price including the last hour selected if Enabled. <br /><br /><strong>Warning: </strong> In administration area the last hours from your definitions list will not be displayed.','backend'),(1345,'SETTINGS_CALENDAR_HOURS_INTERVAL_ENABLED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. Show hours interval from the current hour to the next one.','Default value: Disabled. Show hours interval from the current hour to the next one.','backend'),(1346,'SETTINGS_CALENDAR_HOURS_INTERVAL_AUTOBREAK_ENABLED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. Put a break before each interval.Hours interval must be enabled.','Default value: Disabled. Put a break before each interval.Hours interval must be enabled.','backend'),(1347,'SETTINGS_CALENDAR_SIDEBAR_STYLE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Set sidebar position and number of columns.','Set sidebar position and number of columns.','backend'),(1348,'SETTINGS_CALENDAR_SIDEBAR_NO_ITEMS_ENABLED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Enabled. Set to display number of items you want to book in front end.','Default value: Enabled. Set to display number of items you want to book in front end.','backend'),(1349,'SETTINGS_CALENDAR_RULES_HELP','PARENT_SETTINGS_CALENDAR_HELP','Select calendar rules.','Select calendar rules.','backend'),(1350,'SETTINGS_CALENDAR_EXTRAS_HELP','PARENT_SETTINGS_CALENDAR_HELP','Select calendar extras.','Select calendar extras.','backend'),(1351,'SETTINGS_CALENDAR_CART_ENABLED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. Use a shopping cart in calendar.','Default value: Disabled. Use a shopping cart in calendar.','backend'),(1352,'SETTINGS_CALENDAR_DISCOUNTS_HELP','PARENT_SETTINGS_CALENDAR_HELP','Select calendar discount.','Select calendar discount.','backend'),(1353,'SETTINGS_CALENDAR_FEES_HELP','PARENT_SETTINGS_CALENDAR_HELP','Select calendar taxes and/or fees.','Select calendar taxes and/or fees.','backend'),(1354,'SETTINGS_CALENDAR_COUPONS_HELP','PARENT_SETTINGS_CALENDAR_HELP','Select calendar coupons.','Select calendar coupons.','backend'),(1355,'SETTINGS_CALENDAR_DEPOSIT_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: 0. Set calendar deposit value.','Default value: 0. Set calendar deposit value.','backend'),(1356,'SETTINGS_CALENDAR_DEPOSIT_TYPE_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Percent. Set deposit value type.','Default value: Percent. Set deposit value type.','backend'),(1357,'SETTINGS_CALENDAR_DEPOSIT_PAY_FULL_AMOUNT_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Enabled. Enable Pay full amount option.','Default value: Enabled. Enable Pay full amount option.','backend'),(1358,'SETTINGS_CALENDAR_FORMS_HELP','PARENT_SETTINGS_CALENDAR_HELP','Select calendar form.','Select calendar form.','backend'),(1359,'SETTINGS_CALENDAR_ORDER_TERMS_AND_CONDITIONS_ENABLED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. Enable Terms & Conditions check box.','Default value: Disabled. Enable Terms & Conditions check box.','backend'),(1360,'SETTINGS_CALENDAR_ORDER_TERMS_AND_CONDITIONS_LINK_HELP','PARENT_SETTINGS_CALENDAR_HELP','Enter the link to Terms & Conditions page.','Enter the link to Terms & Conditions page.','backend'),(1361,'SETTINGS_CALENDAR_GOOGLE_ENABLED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. Enable Google Calendar Sync.','Default value: Disabled. Enable Google Calendar Sync.','backend'),(1362,'SETTINGS_CALENDAR_GOOGLE_CLIENT_ID_HELP','PARENT_SETTINGS_CALENDAR_HELP','Enter Google Client ID.','Enter Google Client ID.','backend'),(1363,'SETTINGS_CALENDAR_GOOGLE_CLIENT_SECRET_HELP','PARENT_SETTINGS_CALENDAR_HELP','Enter Google Client secret.','Enter Google Client secret.','backend'),(1364,'SETTINGS_CALENDAR_GOOGLE_CALENDAR_ID_HELP','PARENT_SETTINGS_CALENDAR_HELP','Enter Google Calendar ID.','Enter Google Calendar ID.','backend'),(1365,'SETTINGS_CALENDAR_GOOGLE_FEED_URL_HELP','PARENT_SETTINGS_CALENDAR_HELP','Enter Google iCalendar feed URL.','Enter Google iCalendar feed URL.','backend'),(1366,'SETTINGS_CALENDAR_GOOGLE_SYNC_TIME_HELP','PARENT_SETTINGS_CALENDAR_HELP','Sync calendar at every x seconds.','Sync calendar at every x seconds.','backend'),(1367,'SETTINGS_CALENDAR_GOOGLE_SYNC_TIMEOUT_HELP','PARENT_SETTINGS_CALENDAR_HELP','Stop sync after x seconds if is not finished.','Stop sync after x seconds if is not finished.','backend'),(1368,'SETTINGS_CALENDAR_GOOGLE_CALENDAR_SYNC_HELP','PARENT_SETTINGS_CALENDAR_HELP','Synchronize','Synchronize','backend'),(1369,'SETTINGS_CALENDAR_ICAL_URL_HELP','PARENT_SETTINGS_CALENDAR_HELP','Copy the iCalendar URL and paste it in the import URL field.','Copy the iCalendar URL and paste it in the import URL field.','backend'),(1370,'SETTINGS_CALENDAR_AIRBNB_ENABLED_HELP','PARENT_SETTINGS_CALENDAR_HELP','Default value: Disabled. Enable Airbnb Sync.','Default value: Disabled. Enable Airbnb Sync.','backend'),(1371,'SETTINGS_CALENDAR_AIRBNB_FEED_URL_HELP','PARENT_SETTINGS_CALENDAR_HELP','Enter Airbnb ICAL feed URL.','Enter Airbnb ICAL feed URL.','backend'),(1372,'SETTINGS_CALENDAR_AIRBNB_SYNC_TIME_HELP','PARENT_SETTINGS_CALENDAR_HELP','Sync calendar at every x seconds.','Sync calendar at every x seconds.','backend'),(1373,'SETTINGS_CALENDAR_AIRBNB_SYNC_TIMEOUT_HELP','PARENT_SETTINGS_CALENDAR_HELP','Stop sync after x seconds if is not finished.','Stop sync after x seconds if is not finished.','backend'),(1374,'PARENT_SETTINGS_NOTIFICATIONS','','Settings - Notifications','Settings - Notifications','backend'),(1375,'SETTINGS_NOTIFICATIONS_TITLE','PARENT_SETTINGS_NOTIFICATIONS','Notifications','Notifications','backend'),(1376,'SETTINGS_NOTIFICATIONS_TEMPLATES','PARENT_SETTINGS_NOTIFICATIONS','Email templates','Email templates','backend'),(1377,'SETTINGS_NOTIFICATIONS_METHOD_ADMIN','PARENT_SETTINGS_NOTIFICATIONS','Admin notifications method','Admin notifications method','backend'),(1378,'SETTINGS_NOTIFICATIONS_METHOD_USER','PARENT_SETTINGS_NOTIFICATIONS','User notifications method','User notifications method','backend'),(1379,'SETTINGS_NOTIFICATIONS_EMAIL','PARENT_SETTINGS_NOTIFICATIONS','Notifications email','Notifications email','backend'),(1380,'SETTINGS_NOTIFICATIONS_ADMIN_EMAIL_SENDER','PARENT_SETTINGS_NOTIFICATIONS','Admin email sender','Admin email sender','backend'),(1381,'SETTINGS_NOTIFICATIONS_EMAIL_REPLY','PARENT_SETTINGS_NOTIFICATIONS','Reply email','Reply email','backend'),(1382,'SETTINGS_NOTIFICATIONS_EMAIL_NAME','PARENT_SETTINGS_NOTIFICATIONS','Email name','Email name','backend'),(1383,'SETTINGS_NOTIFICATIONS_EMAIL_CC','PARENT_SETTINGS_NOTIFICATIONS','Notifications Cc email(s)','Notifications Cc email(s)','backend'),(1384,'SETTINGS_NOTIFICATIONS_EMAIL_CC_NAME','PARENT_SETTINGS_NOTIFICATIONS','Notifications Cc name(s)','Notifications Cc name(s)','backend'),(1385,'SETTINGS_NOTIFICATIONS_EMAIL_BCC','PARENT_SETTINGS_NOTIFICATIONS','Notifications Bcc email(s)','Notifications Bcc email(s)','backend'),(1386,'SETTINGS_NOTIFICATIONS_EMAIL_BCC_NAME','PARENT_SETTINGS_NOTIFICATIONS','Notifications Bcc name(s)','Notifications Bcc name(s)','backend'),(1387,'SETTINGS_NOTIFICATIONS_SEND_TITLE','PARENT_SETTINGS_NOTIFICATIONS','Enable notifications','Enable notifications','backend'),(1388,'SETTINGS_NOTIFICATIONS_SEND_BOOK_ADMIN','PARENT_SETTINGS_NOTIFICATIONS','Notify admin on book request','Notify admin on book request','backend'),(1389,'SETTINGS_NOTIFICATIONS_SEND_BOOK_USER','PARENT_SETTINGS_NOTIFICATIONS','Notify user on book request','Notify user on book request','backend'),(1390,'SETTINGS_NOTIFICATIONS_SEND_BOOK_WITH_APPROVAL_ADMIN','PARENT_SETTINGS_NOTIFICATIONS','Notify admin on approved book request','Notify admin on approved book request','backend'),(1391,'SETTINGS_NOTIFICATIONS_SEND_BOOK_WITH_APPROVAL_USER','PARENT_SETTINGS_NOTIFICATIONS','Notify user on approved book request','Notify user on approved book request','backend'),(1392,'SETTINGS_NOTIFICATIONS_SEND_APPROVED','PARENT_SETTINGS_NOTIFICATIONS','Notify user when reservation is approved','Notify user when reservation is approved','backend'),(1393,'SETTINGS_NOTIFICATIONS_SEND_CANCELED','PARENT_SETTINGS_NOTIFICATIONS','Notify user when reservation is canceled','Notify user when reservation is canceled','backend'),(1394,'SETTINGS_NOTIFICATIONS_SEND_REJECTED','PARENT_SETTINGS_NOTIFICATIONS','Notify user when reservation is rejected','Notify user when reservation is rejected','backend'),(1395,'SETTINGS_NOTIFICATIONS_SMTP_TITLE','PARENT_SETTINGS_NOTIFICATIONS','SMTP settings','SMTP settings','backend'),(1396,'SETTINGS_NOTIFICATIONS_SMTP_SECOND_TITLE','PARENT_SETTINGS_NOTIFICATIONS','Second SMTP settings','Second SMTP settings','backend'),(1397,'SETTINGS_NOTIFICATIONS_SMTP_HOST_NAME','PARENT_SETTINGS_NOTIFICATIONS','SMTP host name','SMTP host name','backend'),(1398,'SETTINGS_NOTIFICATIONS_SMTP_HOST_PORT','PARENT_SETTINGS_NOTIFICATIONS','SMTP host port','SMTP host port','backend'),(1399,'SETTINGS_NOTIFICATIONS_SMTP_SSL','PARENT_SETTINGS_NOTIFICATIONS','SMTP SSL connection','SMTP SSL connection','backend'),(1400,'SETTINGS_NOTIFICATIONS_SMTP_TLS','PARENT_SETTINGS_NOTIFICATIONS','SMTP TLS connection','SMTP TLS connection','backend'),(1401,'SETTINGS_NOTIFICATIONS_SMTP_USER','PARENT_SETTINGS_NOTIFICATIONS','SMTP host user','SMTP host user','backend'),(1402,'SETTINGS_NOTIFICATIONS_SMTP_PASSWORD','PARENT_SETTINGS_NOTIFICATIONS','SMTP host password','SMTP host password','backend'),(1403,'SETTINGS_NOTIFICATIONS_TEST_TITLE','PARENT_SETTINGS_NOTIFICATIONS','Test notification methods','Test notification methods','backend'),(1404,'SETTINGS_NOTIFICATIONS_TEST_METHOD','PARENT_SETTINGS_NOTIFICATIONS','Select notifications method','Select notifications method','backend'),(1405,'SETTINGS_NOTIFICATIONS_TEST_EMAIL','PARENT_SETTINGS_NOTIFICATIONS','Test email','Test email','backend'),(1406,'SETTINGS_NOTIFICATIONS_TEST_SUBMIT','PARENT_SETTINGS_NOTIFICATIONS','Send test','Send test','backend'),(1407,'SETTINGS_NOTIFICATIONS_TEST_SENDING','PARENT_SETTINGS_NOTIFICATIONS','Sending notification test email ...','Sending notification test email ...','backend'),(1408,'SETTINGS_NOTIFICATIONS_TEST_SUCCESS','PARENT_SETTINGS_NOTIFICATIONS','Notification test email has been sent.','Notification test email has been sent.','backend'),(1409,'SETTINGS_NOTIFICATIONS_TEST_ERROR','PARENT_SETTINGS_NOTIFICATIONS','Notification test email could not be sent.','Notification test email could not be sent.','backend'),(1410,'SETTINGS_NOTIFICATIONS_TEST_MAIL_SUBJECT','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System - PHP mail notification test','Pinpoint Booking System - PHP mail notification test','backend'),(1411,'SETTINGS_NOTIFICATIONS_TEST_MAIL_MESSAGE','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System notification test sent with PHP mail function.','Pinpoint Booking System notification test sent with PHP mail function.','backend'),(1412,'SETTINGS_NOTIFICATIONS_TEST_MAILER_SUBJECT','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System - PHPMailer notification test','Pinpoint Booking System - PHPMailer notification test','backend'),(1413,'SETTINGS_NOTIFICATIONS_TEST_MAILER_MESSAGE','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System notification test sent with PHPMailer class.','Pinpoint Booking System notification test sent with PHPMailer class.','backend'),(1414,'SETTINGS_NOTIFICATIONS_TEST_SMTP_SUBJECT','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System - SMTP notification test','Pinpoint Booking System - SMTP notification test','backend'),(1415,'SETTINGS_NOTIFICATIONS_TEST_SMTP_MESSAGE','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System notification test sent with PHPMailer SMTP.','Pinpoint Booking System notification test sent with PHPMailer SMTP.','backend'),(1416,'SETTINGS_NOTIFICATIONS_TEST_SMTP2_SUBJECT','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System - Second SMTP notification test','Pinpoint Booking System - Second SMTP notification test','backend'),(1417,'SETTINGS_NOTIFICATIONS_TEST_SMTP2_MESSAGE','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System notification test sent with second SMTP.','Pinpoint Booking System notification test sent with second SMTP.','backend'),(1418,'SETTINGS_NOTIFICATIONS_TEST_WP_SUBJECT','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System - WordPress mail notification test','Pinpoint Booking System - WordPress mail notification test','backend'),(1419,'SETTINGS_NOTIFICATIONS_TEST_WP_MESSAGE','PARENT_SETTINGS_NOTIFICATIONS','Pinpoint Booking System notification test sent with WordPress mail function.','Pinpoint Booking System notification test sent with WordPress mail function.','backend'),(1420,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_TITLE','PARENT_SETTINGS_NOTIFICATIONS','SMS notifications - Clickatell.com','SMS notifications - Clickatell.com','backend'),(1421,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ACCOUNT_TYPE','PARENT_SETTINGS_NOTIFICATIONS','Account type','Account type','backend'),(1422,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_USERNAME','PARENT_SETTINGS_NOTIFICATIONS','Username','Username','backend'),(1423,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_PASSWORD','PARENT_SETTINGS_NOTIFICATIONS','Password','Password','backend'),(1424,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_API_ID','PARENT_SETTINGS_NOTIFICATIONS','API','API','backend'),(1425,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_FROM','PARENT_SETTINGS_NOTIFICATIONS','From','From','backend'),(1426,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ADMIN_PHONE','PARENT_SETTINGS_NOTIFICATIONS','Notifications phone','Notifications phone','backend'),(1427,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_TEMPLATES','PARENT_SETTINGS_NOTIFICATIONS','SMS templates','SMS templates','backend'),(1428,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_2WAY','PARENT_SETTINGS_NOTIFICATIONS','Enable 2 Way option','Enable 2 Way option','backend'),(1429,'PARENT_SETTINGS_NOTIFICATIONS_HELP','','Settings - Notifications - Help','Settings - Notifications - Help','backend'),(1430,'SETTINGS_NOTIFICATIONS_TEMPLATES_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Select email templates.','Select email templates.','backend'),(1431,'SETTINGS_NOTIFICATIONS_METHOD_ADMIN_HELP','PARENT_SETTINGS_NOTIFICATIONS','Select notifications method used to send emails to admins. You can use PHP mail function, PHPMailer class, SMTP, second SMTP or WordPress wp_mail function.','Select notifications method used to send emails to admins. You can use PHP mail function, PHPMailer class, SMTP, second SMTP or WordPress wp_mail function.','backend'),(1432,'SETTINGS_NOTIFICATIONS_METHOD_USER_HELP','PARENT_SETTINGS_NOTIFICATIONS','Select notifications method used to send emails to users. You can use PHP mail function, PHPMailer class, SMTP, second SMTP or WordPress wp_mail function.','Select notifications method used to send emails to users. You can use PHP mail function, PHPMailer class, SMTP, second SMTP or WordPress wp_mail function.','backend'),(1433,'SETTINGS_NOTIFICATIONS_EMAIL_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter the email where you will be notified about booking requests or you will use to notify users. Enter other emails that will be notified in Cc & Bcc fields.','Enter the email where you will be notified about booking requests or you will use to notify users. Enter other emails that will be notified in Cc & Bcc fields.','backend'),(1434,'SETTINGS_NOTIFICATIONS_EMAIL_REPLY_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter the reply email that will appear in the email the user will receive.','Enter the reply email that will appear in the email the user will receive.','backend'),(1435,'SETTINGS_NOTIFICATIONS_ADMIN_EMAIL_SENDER_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Add the same email (or a different one) as for admin in order to create a filter in your webclient. Recommended if your notifications end up in the spam folder.','Add the same email (or a different one) as for admin in order to create a filter in your webclient. Recommended if your notifications end up in the spam folder.','backend'),(1436,'SETTINGS_NOTIFICATIONS_EMAIL_NAME_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter the name that will appear in the email the user will receive.','Enter the name that will appear in the email the user will receive.','backend'),(1437,'SETTINGS_NOTIFICATIONS_EMAIL_CC_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter the email(s) for Cc field, where others be notified about booking requests or they will use to notify users. Add an email per line.','Enter the email(s) for Cc field, where others be notified about booking requests or they will use to notify users. Add an email per line.','backend'),(1438,'SETTINGS_NOTIFICATIONS_EMAIL_CC_NAME_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter the name(s) for Cc field, equivalent to Cc email(s). Add a name per line, like emails.','Enter the name(s) for Cc field, equivalent to Cc email(s). Add a name per line, like emails.','backend'),(1439,'SETTINGS_NOTIFICATIONS_EMAIL_BCC_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter the email(s) for Bcc field, where others be notified about booking requests or they will use to notify users. Add an email per line.','Enter the email(s) for Bcc field, where others be notified about booking requests or they will use to notify users. Add an email per line.','backend'),(1440,'SETTINGS_NOTIFICATIONS_EMAIL_BCC_NAME_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter the name(s) for Bcc field, equivalent to Bcc email(s). Add a name per line, like emails.','Enter the name(s) for Bcc field, equivalent to Bcc email(s). Add a name per line, like emails.','backend'),(1441,'SETTINGS_NOTIFICATIONS_SEND_BOOK_ADMIN_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an email notification to admin on book request.','Enable to send an email notification to admin on book request.','backend'),(1442,'SETTINGS_NOTIFICATIONS_SEND_BOOK_USER_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an email notification to user on book request.','Enable to send an email notification to user on book request.','backend'),(1443,'SETTINGS_NOTIFICATIONS_SEND_BOOK_WITH_APPROVAL_ADMIN_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an email notification to admin on book request and reservation is approved.','Enable to send an email notification to admin on book request and reservation is approved.','backend'),(1444,'SETTINGS_NOTIFICATIONS_SEND_BOOK_WITH_APPROVAL_USER_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an email notification to user on book request and reservation is approved.','Enable to send an email notification to user on book request and reservation is approved.','backend'),(1445,'SETTINGS_NOTIFICATIONS_SEND_APPROVED_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an email notification to user when reservation is approved.','Enable to send an email notification to user when reservation is approved.','backend'),(1446,'SETTINGS_NOTIFICATIONS_SEND_CANCELED_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an email notification to user when reservation is canceled.','Enable to send an email notification to user when reservation is canceled.','backend'),(1447,'SETTINGS_NOTIFICATIONS_SEND_REJECTED_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an email notification to user when reservation is rejected.','Enable to send an email notification to user when reservation is rejected.','backend'),(1448,'SETTINGS_NOTIFICATIONS_SMTP_HOST_NAME_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter SMTP host name.','Enter SMTP host name.','backend'),(1449,'SETTINGS_NOTIFICATIONS_SMTP_HOST_PORT_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter SMTP host port.','Enter SMTP host port.','backend'),(1450,'SETTINGS_NOTIFICATIONS_SMTP_SSL_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Use a  SSL connection.','Use a  SSL connection.','backend'),(1451,'SETTINGS_NOTIFICATIONS_SMTP_TLS_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Use a TLS connection.','Use a TLS connection.','backend'),(1452,'SETTINGS_NOTIFICATIONS_SMTP_USER_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter SMTP host username.','Enter SMTP host username.','backend'),(1453,'SETTINGS_NOTIFICATIONS_SMTP_PASSWORD_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enter SMTP host password.','Enter SMTP host password.','backend'),(1454,'SETTINGS_NOTIFICATIONS_TEST_METHOD_HELP','PARENT_SETTINGS_NOTIFICATIONS','Select the notifications method for which the test will be performed.','Select the notifications method for which the test will be performed.','backend'),(1455,'SETTINGS_NOTIFICATIONS_TEST_EMAIL_HELP','PARENT_SETTINGS_NOTIFICATIONS','Enter the email to which the test notification will be sent.','Enter the email to which the test notification will be sent.','backend'),(1456,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ACCOUNT_TYPE_HELP','PARENT_SETTINGS_NOTIFICATIONS','Select the type of account you own on clickatell.com.','Select the type of account you own on clickatell.com.','backend'),(1457,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_USERNAME_HELP','PARENT_SETTINGS_NOTIFICATIONS','Enter the username from clickatell.com. Mandatory for Central type accounts.','Enter the username from clickatell.com. Mandatory for Central type accounts.','backend'),(1458,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_PASSWORD_HELP','PARENT_SETTINGS_NOTIFICATIONS','Enter the password from clickatell.com. Mandatory for Central type accounts.','Enter the password from clickatell.com. Mandatory for Central type accounts.','backend'),(1459,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_API_ID_HELP','PARENT_SETTINGS_NOTIFICATIONS','Enter the API ID for Central accounts or API Key for Platform (from clickatell.com). Mandatory','Enter the API ID for Central accounts or API Key for Platform (from clickatell.com). Mandatory','backend'),(1460,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_FROM_HELP','PARENT_SETTINGS_NOTIFICATIONS','Enter the text from message header.','Enter the text from message header.','backend'),(1461,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ADMIN_PHONE_HELP','PARENT_SETTINGS_NOTIFICATIONS','Enter the admin phone.','Enter the admin phone.','backend'),(1462,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_ADMIN_PHONE_ADD_HELP','PARENT_SETTINGS_NOTIFICATIONS','Add phone number.','Add phone number.','backend'),(1463,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_TEMPLATES_HELP','PARENT_SETTINGS_NOTIFICATIONS','SMS templates','SMS templates','backend'),(1464,'SETTINGS_NOTIFICATIONS_SMS_CLICKATELL_2WAY_HELP','PARENT_SETTINGS_NOTIFICATIONS','Enable this option if you have Clickatell configured to use a 2 way number.','Enable this option if you have Clickatell configured to use a 2 way number.','backend'),(1465,'SETTINGS_NOTIFICATIONS_SMS_SEND_BOOK_ADMIN_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an SMS notification to admin on book request.','Enable to send an SMS notification to admin on book request.','backend'),(1466,'SETTINGS_NOTIFICATIONS_SMS_SEND_BOOK_USER_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an SMS notification to user on book request.','Enable to send an SMS notification to user on book request.','backend'),(1467,'SETTINGS_NOTIFICATIONS_SMS_SEND_BOOK_WITH_APPROVAL_ADMIN_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an SMS notification to admin on book request and reservation is approved.','Enable to send an SMS notification to admin on book request and reservation is approved.','backend'),(1468,'SETTINGS_NOTIFICATIONS_SMS_SEND_BOOK_WITH_APPROVAL_USER_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an SMS notification to user on book request and reservation is approved.','Enable to send an SMS notification to user on book request and reservation is approved.','backend'),(1469,'SETTINGS_NOTIFICATIONS_SMS_SEND_APPROVED_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an SMS notification to user when reservation is approved.','Enable to send an SMS notification to user when reservation is approved.','backend'),(1470,'SETTINGS_NOTIFICATIONS_SMS_SEND_CANCELED_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an SMS notification to user when reservation is canceled.','Enable to send an SMS notification to user when reservation is canceled.','backend'),(1471,'SETTINGS_NOTIFICATIONS_SMS_SEND_REJECTED_HELP','PARENT_SETTINGS_NOTIFICATIONS_HELP','Enable to send an SMS notification to user when reservation is rejected.','Enable to send an SMS notification to user when reservation is rejected.','backend'),(1472,'PARENT_SETTINGS_PAYMENT_GATEWAYS','','Settings - Payment gateways','Settings - Payment gateways','backend'),(1473,'SETTINGS_PAYMENT_GATEWAYS_TITLE','PARENT_SETTINGS_PAYMENT_GATEWAYS','Payment gateways','Payment gateways','backend'),(1474,'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_ARRIVAL_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Enable payment on arrival','Enable payment on arrival','backend'),(1475,'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_ARRIVAL_WITH_APPROVAL_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Enable instant approval','Enable instant approval','backend'),(1476,'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_REDIRECT','PARENT_SETTINGS_PAYMENT_GATEWAYS','Redirect after book','Redirect after book','backend'),(1477,'SETTINGS_PAYMENT_GATEWAYS_ADDONS_REDIRECT','PARENT_SETTINGS_PAYMENT_GATEWAYS','If you need more payment options please visit the','If you need more payment options please visit the','backend'),(1478,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING','PARENT_SETTINGS_PAYMENT_GATEWAYS','Billing address','Billing address','backend'),(1479,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Enable billing address','Enable billing address','backend'),(1480,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_FIRST_NAME_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','First name (enable)','First name (enable)','backend'),(1481,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_FIRST_NAME_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','First name (required)','First name (required)','backend'),(1482,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_LAST_NAME_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Last name (enable)','Last name (enable)','backend'),(1483,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_LAST_NAME_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Last name (required)','Last name (required)','backend'),(1484,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COMPANY_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Company (enable)','Company (enable)','backend'),(1485,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COMPANY_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Company (required)','Company (required)','backend'),(1486,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_EMAIL_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Email (enable)','Email (enable)','backend'),(1487,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_EMAIL_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Email (required)','Email (required)','backend'),(1488,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_PHONE_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Phone number (enable)','Phone number (enable)','backend'),(1489,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_PHONE_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Phone number (required)','Phone number (required)','backend'),(1490,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COUNTRY_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Country (enable)','Country (enable)','backend'),(1491,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COUNTRY_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Country (required)','Country (required)','backend'),(1492,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_FIRST_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Address line 1 (enable)','Address line 1 (enable)','backend'),(1493,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_FIRST_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Address line 1 (required)','Address line 1 (required)','backend'),(1494,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_SECOND_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Address line 2 (enable)','Address line 2 (enable)','backend'),(1495,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_SECOND_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Address line 2 (required)','Address line 2 (required)','backend'),(1496,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_CITY_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','City (enable)','City (enable)','backend'),(1497,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_CITY_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','City (required)','City (required)','backend'),(1498,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_STATE_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','State (enable)','State (enable)','backend'),(1499,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_STATE_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','State (required)','State (required)','backend'),(1500,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ZIP_CODE_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Zip code (enable)','Zip code (enable)','backend'),(1501,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ZIP_CODE_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Zip code (required)','Zip code (required)','backend'),(1502,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING','PARENT_SETTINGS_PAYMENT_GATEWAYS','Shipping address','Shipping address','backend'),(1503,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Enable shipping address','Enable shipping address','backend'),(1504,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_FIRST_NAME_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','First name (enable)','First name (enable)','backend'),(1505,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_FIRST_NAME_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','First name (required)','First name (required)','backend'),(1506,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_LAST_NAME_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Last name (enable)','Last name (enable)','backend'),(1507,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_LAST_NAME_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Last name (required)','Last name (required)','backend'),(1508,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COMPANY_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Company (enable)','Company (enable)','backend'),(1509,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COMPANY_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Company (required)','Company (required)','backend'),(1510,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_EMAIL_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Email (enable)','Email (enable)','backend'),(1511,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_EMAIL_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Email (required)','Email (required)','backend'),(1512,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_PHONE_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Phone number (enable)','Phone number (enable)','backend'),(1513,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_PHONE_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Phone number (required)','Phone number (required)','backend'),(1514,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COUNTRY_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Country (enable)','Country (enable)','backend'),(1515,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COUNTRY_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Country (required)','Country (required)','backend'),(1516,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_FIRST_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Address line 1 (enable)','Address line 1 (enable)','backend'),(1517,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_FIRST_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Address line 1 (required)','Address line 1 (required)','backend'),(1518,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_SECOND_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Address line 2 (enable)','Address line 2 (enable)','backend'),(1519,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_SECOND_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Address line 2 (required)','Address line 2 (required)','backend'),(1520,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_CITY_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','City (enable)','City (enable)','backend'),(1521,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_CITY_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','City (required)','City (required)','backend'),(1522,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_STATE_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','State (enable)','State (enable)','backend'),(1523,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_STATE_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','State (required)','State (required)','backend'),(1524,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ZIP_CODE_ENABLED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Zip code (enable)','Zip code (enable)','backend'),(1525,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ZIP_CODE_REQUIRED','PARENT_SETTINGS_PAYMENT_GATEWAYS','Zip code (required)','Zip code (required)','backend'),(1526,'PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','','Settings - Payment gateways - Help','Settings - Payment gateways - Help','backend'),(1527,'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_ARRIVAL_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Allow user to pay on arrival. Need approval.','Default value: Enabled. Allow user to pay on arrival. Need approval.','backend'),(1528,'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_ARRIVAL_WITH_APPROVAL_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Disabled. Instantly approve the reservation once the request to pay on arrival has been submitted.','Default value: Disabled. Instantly approve the reservation once the request to pay on arrival has been submitted.','backend'),(1529,'SETTINGS_PAYMENT_GATEWAYS_PAYMENT_REDIRECT_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Enter the URL where to redirect after the booking request has been sent. Leave it blank to not redirect.','Enter the URL where to redirect after the booking request has been sent. Leave it blank to not redirect.','backend'),(1530,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Disabled. Enable it if you want the billing address form to be visible.','Default value: Disabled. Enable it if you want the billing address form to be visible.','backend'),(1531,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_FIRST_NAME_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"First name\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"First name\" field to be visible in billing address form.','backend'),(1532,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_FIRST_NAME_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"First name\" field to be mandatory in billing address form.','Default value: Enabled. Enable it if you want the \"First name\" field to be mandatory in billing address form.','backend'),(1533,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_LAST_NAME_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Last name\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"Last name\" field to be visible in billing address form.','backend'),(1534,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_LAST_NAME_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Last name\" field to be mandatory in billing address form.','Default value: Enabled. Enable it if you want the \"Last name\" field to be mandatory in billing address form.','backend'),(1535,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COMPANY_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Company\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"Company\" field to be visible in billing address form.','backend'),(1536,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COMPANY_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Disabled. Enable it if you want the \"Company\" field to be mandatory in billing address form.','Default value: Disabled. Enable it if you want the \"Company\" field to be mandatory in billing address form.','backend'),(1537,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_EMAIL_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Email\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"Email\" field to be visible in billing address form.','backend'),(1538,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_EMAIL_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Email\" field to be mandatory in billing address form.','Default value: Enabled. Enable it if you want the \"Email\" field to be mandatory in billing address form.','backend'),(1539,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_PHONE_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Phone number\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"Phone number\" field to be visible in billing address form.','backend'),(1540,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_PHONE_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Phone number\" field to be mandatory in billing address form.','Default value: Enabled. Enable it if you want the \"Phone number\" field to be mandatory in billing address form.','backend'),(1541,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COUNTRY_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Country\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"Country\" field to be visible in billing address form.','backend'),(1542,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_COUNTRY_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Country\" field to be mandatory in billing address form.','Default value: Enabled. Enable it if you want the \"Country\" field to be mandatory in billing address form.','backend'),(1543,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_FIRST_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Address line 1\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"Address line 1\" field to be visible in billing address form.','backend'),(1544,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_FIRST_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Address line 1\" field to be mandatory in billing address form.','Default value: Enabled. Enable it if you want the \"Address line 1\" field to be mandatory in billing address form.','backend'),(1545,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_SECOND_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Address line 2\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"Address line 2\" field to be visible in billing address form.','backend'),(1546,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ADDRESS_SECOND_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Disabled. Enable it if you want the \"Address line 2\" field to be mandatory in billing address form.','Default value: Disabled. Enable it if you want the \"Address line 2\" field to be mandatory in billing address form.','backend'),(1547,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_CITY_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"City\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"City\" field to be visible in billing address form.','backend'),(1548,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_CITY_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"City\" field to be mandatory in billing address form.','Default value: Enabled. Enable it if you want the \"City\" field to be mandatory in billing address form.','backend'),(1549,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_STATE_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"State\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"State\" field to be visible in billing address form.','backend'),(1550,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_STATE_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"State\" field to be mandatory in billing address form.','Default value: Enabled. Enable it if you want the \"State\" field to be mandatory in billing address form.','backend'),(1551,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ZIP_CODE_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Zip code\" field to be visible in billing address form.','Default value: Enabled. Enable it if you want the \"Zip code\" field to be visible in billing address form.','backend'),(1552,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_BILLING_ZIP_CODE_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Zip code\" field to be mandatory in billing address form.','Default value: Enabled. Enable it if you want the \"Zip code\" field to be mandatory in billing address form.','backend'),(1553,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Disabled. Enable it if you want the shipping address form to be visible.','Default value: Disabled. Enable it if you want the shipping address form to be visible.','backend'),(1554,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_FIRST_NAME_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"First name\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"First name\" field to be visible in shipping address form.','backend'),(1555,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_FIRST_NAME_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"First name\" field to be mandatory in shipping address form.','Default value: Enabled. Enable it if you want the \"First name\" field to be mandatory in shipping address form.','backend'),(1556,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_LAST_NAME_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Last name\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"Last name\" field to be visible in shipping address form.','backend'),(1557,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_LAST_NAME_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Last name\" field to be mandatory in shipping address form.','Default value: Enabled. Enable it if you want the \"Last name\" field to be mandatory in shipping address form.','backend'),(1558,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COMPANY_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Company\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"Company\" field to be visible in shipping address form.','backend'),(1559,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COMPANY_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Disabled. Enable it if you want the \"Company\" field to be mandatory in shipping address form.','Default value: Disabled. Enable it if you want the \"Company\" field to be mandatory in shipping address form.','backend'),(1560,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_EMAIL_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Email\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"Email\" field to be visible in shipping address form.','backend'),(1561,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_EMAIL_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Email\" field to be mandatory in shipping address form.','Default value: Enabled. Enable it if you want the \"Email\" field to be mandatory in shipping address form.','backend'),(1562,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_PHONE_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Phone number\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"Phone number\" field to be visible in shipping address form.','backend'),(1563,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_PHONE_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Phone number\" field to be mandatory in shipping address form.','Default value: Enabled. Enable it if you want the \"Phone number\" field to be mandatory in shipping address form.','backend'),(1564,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COUNTRY_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Country\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"Country\" field to be visible in shipping address form.','backend'),(1565,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_COUNTRY_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Country\" field to be mandatory in shipping address form.','Default value: Enabled. Enable it if you want the \"Country\" field to be mandatory in shipping address form.','backend'),(1566,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_FIRST_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Address line 1\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"Address line 1\" field to be visible in shipping address form.','backend'),(1567,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_FIRST_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Address line 1\" field to be mandatory in shipping address form.','Default value: Enabled. Enable it if you want the \"Address line 1\" field to be mandatory in shipping address form.','backend'),(1568,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_SECOND_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Address line 2\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"Address line 2\" field to be visible in shipping address form.','backend'),(1569,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ADDRESS_SECOND_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Disabled. Enable it if you want the \"Address line 2\" field to be mandatory in shipping address form.','Default value: Disabled. Enable it if you want the \"Address line 2\" field to be mandatory in shipping address form.','backend'),(1570,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_CITY_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"City\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"City\" field to be visible in shipping address form.','backend'),(1571,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_CITY_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"City\" field to be mandatory in shipping address form.','Default value: Enabled. Enable it if you want the \"City\" field to be mandatory in shipping address form.','backend'),(1572,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_STATE_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"State\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"State\" field to be visible in shipping address form.','backend'),(1573,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_STATE_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"State\" field to be mandatory in shipping address form.','Default value: Enabled. Enable it if you want the \"State\" field to be mandatory in shipping address form.','backend'),(1574,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ZIP_CODE_ENABLED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Zip code\" field to be visible in shipping address form.','Default value: Enabled. Enable it if you want the \"Zip code\" field to be visible in shipping address form.','backend'),(1575,'SETTINGS_PAYMENT_GATEWAYS_ADDRESS_SHIPPING_ZIP_CODE_REQUIRED_HELP','PARENT_SETTINGS_PAYMENT_GATEWAYS_HELP','Default value: Enabled. Enable it if you want the \"Zip code\" field to be mandatory in shipping address form.','Default value: Enabled. Enable it if you want the \"Zip code\" field to be mandatory in shipping address form.','backend'),(1576,'PARENT_SETTINGS_SEARCH','','Settings - Search','Settings - Search','backend'),(1577,'SETTINGS_SEARCH_TITLE','PARENT_SETTINGS_SEARCH','Search settings','Search settings','backend'),(1578,'SETTINGS_SEARCH_GENERAL_SETTINGS','PARENT_SETTINGS_SEARCH','General settings','General settings','backend'),(1579,'SETTINGS_SEARCH_GENERAL_DATE_TYPE','PARENT_SETTINGS_SEARCH','Date type','Date type','backend'),(1580,'SETTINGS_SEARCH_GENERAL_DATE_TYPE_AMERICAN','PARENT_SETTINGS_SEARCH','American (mm dd, yyyy)','American (mm dd, yyyy)','backend'),(1581,'SETTINGS_SEARCH_GENERAL_DATE_TYPE_EUROPEAN','PARENT_SETTINGS_SEARCH','European (dd mm yyyy)','European (dd mm yyyy)','backend'),(1582,'SETTINGS_SEARCH_GENERAL_TEMPLATE','PARENT_SETTINGS_SEARCH','Style template','Style template','backend'),(1583,'SETTINGS_SEARCH_GENERAL_SEARCH_ENABLED','PARENT_SETTINGS_SEARCH','Enable search input','Enable search input','backend'),(1584,'SETTINGS_SEARCH_GENERAL_PRICE_ENABLED','PARENT_SETTINGS_SEARCH','Filter results by price','Filter results by price','backend'),(1585,'SETTINGS_SEARCH_VIEW_SETTINGS','PARENT_SETTINGS_SEARCH','View settings','View settings','backend'),(1586,'SETTINGS_SEARCH_VIEW_DEFAULT','PARENT_SETTINGS_SEARCH','Default view','Default view','backend'),(1587,'SETTINGS_SEARCH_VIEW_DEFAULT_LIST','PARENT_SETTINGS_SEARCH','List','List','backend'),(1588,'SETTINGS_SEARCH_VIEW_DEFAULT_GRID','PARENT_SETTINGS_SEARCH','Grid','Grid','backend'),(1589,'SETTINGS_SEARCH_VIEW_DEFAULT_MAP','PARENT_SETTINGS_SEARCH','Map','Map','backend'),(1590,'SETTINGS_SEARCH_VIEW_LIST_VIEW_ENABLED','PARENT_SETTINGS_SEARCH','List view','List view','backend'),(1591,'SETTINGS_SEARCH_VIEW_GRID_VIEW_ENABLED','PARENT_SETTINGS_SEARCH','Grid view','Grid view','backend'),(1592,'SETTINGS_SEARCH_VIEW_MAP_VIEW_ENABLED','PARENT_SETTINGS_SEARCH','Map view','Map view','backend'),(1593,'SETTINGS_SEARCH_VIEW_RESULTS_PAGE','PARENT_SETTINGS_SEARCH','Results per page','Results per page','backend'),(1594,'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION','PARENT_SETTINGS_SEARCH','Sidebar position','Sidebar position','backend'),(1595,'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION_LEFT','PARENT_SETTINGS_SEARCH','Left','Left','backend'),(1596,'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION_RIGHT','PARENT_SETTINGS_SEARCH','Right','Right','backend'),(1597,'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION_TOP','PARENT_SETTINGS_SEARCH','Top','Top','backend'),(1598,'SETTINGS_SEARCH_CURRENCY_SETTINGS','PARENT_SETTINGS_SEARCH','Currency settings','Currency settings','backend'),(1599,'SETTINGS_SEARCH_CURRENCY','PARENT_SETTINGS_SEARCH','Currency','Currency','backend'),(1600,'SETTINGS_SEARCH_CURRENCY_POSITION','PARENT_SETTINGS_SEARCH','Currency position','Currency position','backend'),(1601,'SETTINGS_SEARCH_CURRENCY_POSITION_BEFORE','PARENT_SETTINGS_SEARCH','Before','Before','backend'),(1602,'SETTINGS_SEARCH_CURRENCY_POSITION_BEFORE_WITH_SPACE','PARENT_SETTINGS_SEARCH','Before with space','Before with space','backend'),(1603,'SETTINGS_SEARCH_CURRENCY_POSITION_AFTER','PARENT_SETTINGS_SEARCH','After','After','backend'),(1604,'SETTINGS_SEARCH_CURRENCY_POSITION_AFTER_WITH_SPACE','PARENT_SETTINGS_SEARCH','After with space','After with space','backend'),(1605,'SETTINGS_SEARCH_DAYS_SETTINGS','PARENT_SETTINGS_SEARCH','Days settings','Days settings','backend'),(1606,'SETTINGS_SEARCH_DAYS_FIRST','PARENT_SETTINGS_SEARCH','First weekday','First weekday','backend'),(1607,'SETTINGS_SEARCH_DAYS_MULTIPLE_SELECT','PARENT_SETTINGS_SEARCH','Search start/end days','Search start/end days','backend'),(1608,'SETTINGS_SEARCH_HOURS_SETTINGS','PARENT_SETTINGS_SEARCH','Hours settings','Hours settings','backend'),(1609,'SETTINGS_SEARCH_HOURS_ENABLED','PARENT_SETTINGS_SEARCH','Search hours','Search hours','backend'),(1610,'SETTINGS_SEARCH_HOURS_DEFINITIONS','PARENT_SETTINGS_SEARCH','Define hours','Define hours','backend'),(1611,'SETTINGS_SEARCH_HOURS_MULTIPLE_SELECT','PARENT_SETTINGS_SEARCH','Search start/end hours','Search start/end hours','backend'),(1612,'SETTINGS_SEARCH_HOURS_AMPM','PARENT_SETTINGS_SEARCH','Enable AM/PM format','Enable AM/PM format','backend'),(1613,'SETTINGS_SEARCH_AVAILABILITY_SETTINGS','PARENT_SETTINGS_SEARCH','Availability settings','Availability settings','backend'),(1614,'SETTINGS_SEARCH_AVAILABILITY_ENABLED','PARENT_SETTINGS_SEARCH','Filter results by no of items available','Filter results by no of items available','backend'),(1615,'SETTINGS_SEARCH_AVAILABILITY_MIN','PARENT_SETTINGS_SEARCH','Minimum availability value','Minimum availability value','backend'),(1616,'SETTINGS_SEARCH_AVAILABILITY_MAX','PARENT_SETTINGS_SEARCH','Maximum availability value','Maximum availability value','backend'),(1617,'PARENT_SETTINGS_SEARCH_HELP','','Settings - Search - Help','Settings - Search - Help','backend'),(1618,'SETTINGS_SEARCH_GENERAL_DATE_TYPE_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: American. Select date format: American (mm dd, yyyy) or European (dd mm yyyy).','Default value: American. Select date format: American (mm dd, yyyy) or European (dd mm yyyy).','backend'),(1619,'SETTINGS_SEARCH_GENERAL_TEMPLATE_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: default. Select styles template.','Default value: default. Select styles template.','backend'),(1620,'SETTINGS_SEARCH_GENERAL_SEARCH_ENABLED_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Disabled. Enable the option to search by name or location (a location needs to be created).','Default value: Disabled. Enable the option to search by name or location (a location needs to be created).','backend'),(1621,'SETTINGS_SEARCH_GENERAL_PRICE_ENABLED_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Disabled. Enable the option to filter results by price.','Default value: Disabled. Enable the option to filter results by price.','backend'),(1622,'SETTINGS_SEARCH_VIEW_DEFAULT_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: List. Select the default view that the search results will first display.','Default value: List. Select the default view that the search results will first display.','backend'),(1623,'SETTINGS_SEARCH_VIEW_LIST_VIEW_ENABLED_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Enabled. Enable to display results in list view.','Default value: Enabled. Enable to display results in list view.','backend'),(1624,'SETTINGS_SEARCH_VIEW_GRID_VIEW_ENABLED_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Disabled. Enable to display results in grid view.','Default value: Disabled. Enable to display results in grid view.','backend'),(1625,'SETTINGS_SEARCH_VIEW_MAP_VIEW_ENABLED_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Disabled. Enable to display results on a google map.','Default value: Disabled. Enable to display results on a google map.','backend'),(1626,'SETTINGS_SEARCH_VIEW_RESULTS_PAGE_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: 10. Set the number of results to display on a page.','Default value: 10. Set the number of results to display on a page.','backend'),(1627,'SETTINGS_SEARCH_VIEW_SIDEBAR_POSITION_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Left. Set filters sidebar position: Left, Right & Top.','Default value: Left. Set filters sidebar position: Left, Right & Top.','backend'),(1628,'SETTINGS_SEARCH_CURRENCY_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: United States Dollar ($, USD). Select search default currency.','Default value: United States Dollar ($, USD). Select search default currency.','backend'),(1629,'SETTINGS_SEARCH_CURRENCY_POSITION_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Before. Select currency position.','Default value: Before. Select currency position.','backend'),(1630,'SETTINGS_SEARCH_DAYS_MULTIPLE_SELECT_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Enabled. Use start/end days or select only one day to filter results.','Default value: Enabled. Use start/end days or select only one day to filter results.','backend'),(1631,'SETTINGS_SEARCH_DAYS_FIRST_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Monday. Select search first weekday.','Default value: Monday. Select search first weekday.','backend'),(1632,'SETTINGS_SEARCH_HOURS_ENABLED_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Disabled. Enable hours to use them to filter results.','Default value: Disabled. Enable hours to use them to filter results.','backend'),(1633,'SETTINGS_SEARCH_HOURS_DEFINITIONS_HELP','PARENT_SETTINGS_SEARCH_HELP','Enter hh:mm ... add one per line.','Enter hh:mm ... add one per line.','backend'),(1634,'SETTINGS_SEARCH_HOURS_MULTIPLE_SELECT_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Enabled. Use start/end hours or select only one hour to filter results.','Default value: Enabled. Use start/end hours or select only one hour to filter results.','backend'),(1635,'SETTINGS_SEARCH_HOURS_AMPM_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Disabled. Display hours in AM/PM format. NOTE: Hours definitions still need to be in 24 hours format.','Default value: Disabled. Display hours in AM/PM format. NOTE: Hours definitions still need to be in 24 hours format.','backend'),(1636,'SETTINGS_SEARCH_AVAILABILITY_ENABLED_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: Disabled. Enable the option to filter results by the number of items available to book.','Default value: Disabled. Enable the option to filter results by the number of items available to book.','backend'),(1637,'SETTINGS_SEARCH_AVAILABILITY_MIN_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: 1. Set minimum availability value to filter results.','Default value: 1. Set minimum availability value to filter results.','backend'),(1638,'SETTINGS_SEARCH_AVAILABILITY_MAX_HELP','PARENT_SETTINGS_SEARCH_HELP','Default value: 10. Set maximum availability value to filter results.','Default value: 10. Set maximum availability value to filter results.','backend'),(1639,'PARENT_SETTINGS_USERS','','Settings - Users permissions','Settings - Users permissions','backend'),(1640,'SETTINGS_USERS_TITLE','PARENT_SETTINGS_USERS','Users permissions','Users permissions','backend'),(1641,'SETTINGS_USERS_PERMISSIONS','PARENT_SETTINGS_USERS','Set users permissions to use the booking system.','Set users permissions to use the booking system.','backend'),(1642,'SETTINGS_USERS_PERMISSIONS_ADMINISTRATORS_LABEL','PARENT_SETTINGS_USERS','Allow %s users to view all the calendars from all the users and/or individually add/edit them.','Allow %s users to view all the calendars from all the users and/or individually add/edit them.','backend'),(1643,'SETTINGS_USERS_PERMISSIONS_LABEL','PARENT_SETTINGS_USERS','Allow %s users to view the plugin and individually edit only their own calendars.','Allow %s users to view the plugin and individually edit only their own calendars.','backend'),(1644,'SETTINGS_USERS_PERMISSIONS_CUSTOM_POSTS','PARENT_SETTINGS_USERS','Set users permissions to use custom posts','Set users permissions to use custom posts','backend'),(1645,'SETTINGS_USERS_PERMISSIONS_CUSTOM_POSTS_LABEL','PARENT_SETTINGS_USERS','Allow %s users to use custom posts.','Allow %s users to use custom posts.','backend'),(1646,'SETTINGS_USERS_PERMISSIONS_INDIVIDUAL','PARENT_SETTINGS_USERS','Set permissions on individual users','Set permissions on individual users','backend'),(1647,'SETTINGS_USERS_PERMISSIONS_FILTERS_ROLE','PARENT_SETTINGS_USERS','Change role to','Change role to','backend'),(1648,'SETTINGS_USERS_PERMISSIONS_FILTERS_ROLE_ALL','PARENT_SETTINGS_USERS','All','All','backend'),(1649,'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_BY','PARENT_SETTINGS_USERS','Order by','Order by','backend'),(1650,'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_BY_EMAIL','PARENT_SETTINGS_USERS','Email','Email','backend'),(1651,'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_BY_ID','PARENT_SETTINGS_USERS','ID','ID','backend'),(1652,'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_BY_USERNAME','PARENT_SETTINGS_USERS','Username','Username','backend'),(1653,'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER','PARENT_SETTINGS_USERS','Order','Order','backend'),(1654,'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_ASCENDING','PARENT_SETTINGS_USERS','Ascending','Ascending','backend'),(1655,'SETTINGS_USERS_PERMISSIONS_FILTERS_ORDER_DESCENDING','PARENT_SETTINGS_USERS','Descending','Descending','backend'),(1656,'SETTINGS_USERS_PERMISSIONS_FILTERS_SEARCH','PARENT_SETTINGS_USERS','Search','Search','backend'),(1657,'SETTINGS_USERS_PERMISSIONS_LIST_ID','PARENT_SETTINGS_USERS','ID','ID','backend'),(1658,'SETTINGS_USERS_PERMISSIONS_USERNAME','PARENT_SETTINGS_USERS','Username','Username','backend'),(1659,'SETTINGS_USERS_PERMISSIONS_EMAIL','PARENT_SETTINGS_USERS','Email','Email','backend'),(1660,'SETTINGS_USERS_PERMISSIONS_ROLE','PARENT_SETTINGS_USERS','Role','Role','backend'),(1661,'SETTINGS_USERS_PERMISSIONS_VIEW','PARENT_SETTINGS_USERS','View all calendars','View all calendars','backend'),(1662,'SETTINGS_USERS_PERMISSIONS_USE','PARENT_SETTINGS_USERS','Use booking system','Use booking system','backend'),(1663,'SETTINGS_USERS_PERMISSIONS_USE_CUSTOM_POSTS','PARENT_SETTINGS_USERS','Use custom posts','Use custom posts','backend'),(1664,'SETTINGS_USERS_PERMISSIONS_USE_CALENDAR','PARENT_SETTINGS_USERS','Use calendar','Use calendar','backend'),(1665,'PARENT_SETTINGS_USERS_HELP','','Settings - Users Permissions - Help','Settings - Users Permissions - Help','backend'),(1666,'SETTINGS_USERS_PERMISSIONS_HELP','PARENT_SETTINGS_USERS_HELP','Allow administrators to edit/view all calendars and other users to use the plugin.','Allow administrators to edit/view all calendars and other users to use the plugin.','backend'),(1667,'SETTINGS_USERS_CUSTOM_POSTS_PERMISSIONS_HELP','PARENT_SETTINGS_USERS_HELP','Allow users to use custom posts.','Allow users to use custom posts.','backend'),(1668,'PARENT_SETTINGS_LICENCES','','Settings - Licences','Settings - Licences','backend'),(1669,'SETTINGS_LICENCES_TITLE','PARENT_SETTINGS_LICENCES','Licences','Licences','backend'),(1670,'SETTINGS_LICENCES_TITLE_PRO','PARENT_SETTINGS_LICENCES','Pinpoint Booking System PRO licence','Pinpoint Booking System PRO licence','backend'),(1671,'SETTINGS_LICENCES_STATUS','PARENT_SETTINGS_LICENCES','Status','Status','backend'),(1672,'SETTINGS_LICENCES_STATUS_ACTIVATE','PARENT_SETTINGS_LICENCES','Activate','Activate','backend'),(1673,'SETTINGS_LICENCES_STATUS_DEACTIVATE','PARENT_SETTINGS_LICENCES','Deactivate','Deactivate','backend'),(1674,'SETTINGS_LICENCES_STATUS_ACTIVATED','PARENT_SETTINGS_LICENCES','Activated','Activated','backend'),(1675,'SETTINGS_LICENCES_STATUS_ACTIVATED_SUCCESS','PARENT_SETTINGS_LICENCES','The item was successfully activated.','The item was successfully activated.','backend'),(1676,'SETTINGS_LICENCES_STATUS_ACTIVATED_ERROR','PARENT_SETTINGS_LICENCES','There is an error when trying to activate the item. Please try again.','There is an error when trying to activate the item. Please try again.','backend'),(1677,'SETTINGS_LICENCES_STATUS_DEACTIVATED','PARENT_SETTINGS_LICENCES','Deactivated','Deactivated','backend'),(1678,'SETTINGS_LICENCES_STATUS_DEACTIVATED_SUCCESS','PARENT_SETTINGS_LICENCES','The item was successfully deactivated.','The item was successfully deactivated.','backend'),(1679,'SETTINGS_LICENCES_STATUS_DEACTIVATED_ERROR','PARENT_SETTINGS_LICENCES','There is an error when trying to deactivate the item. Please try again.','There is an error when trying to deactivate the item. Please try again.','backend'),(1680,'SETTINGS_LICENCES_STATUS_TIMEOUT_ERROR','PARENT_SETTINGS_LICENCES','The connection to the server timed out. Please try again later.','The connection to the server timed out. Please try again later.','backend'),(1681,'SETTINGS_LICENCES_KEY','PARENT_SETTINGS_LICENCES','Licence key','Licence key','backend'),(1682,'SETTINGS_LICENCES_EMAIL','PARENT_SETTINGS_LICENCES','Licence email','Licence email','backend'),(1683,'PARENT_SETTINGS_LICENCES_HELP','','Settings - Licences - Help','Settings - Licences - Help','backend'),(1684,'SETTINGS_LICENCES_HELP','PARENT_SETTINGS_LICENCES_HELP','Activate the plugin and add-ons to check and receive automatic updates. Activation is not required to use the items.','Activate the plugin and add-ons to check and receive automatic updates. Activation is not required to use the items.','backend'),(1685,'SETTINGS_LICENCES_KEY_HELP','PARENT_SETTINGS_LICENCES_HELP','Enter the licence key which you received with your order confirmation email. You can also find it in %s','Enter the licence key which you received with your order confirmation email. You can also find it in %s','backend'),(1686,'SETTINGS_LICENCES_EMAIL_HELP','PARENT_SETTINGS_LICENCES_HELP','Enter the email you are using on %s','Enter the email you are using on %s','backend'),(1687,'PARENT_SMSES','','SMS templates','SMS templates','backend'),(1688,'SMSES_TITLE','PARENT_SMSES','SMS templates','SMS templates','backend'),(1689,'SMSES_CREATED_BY','PARENT_SMSES','Created by','Created by','backend'),(1690,'SMSES_LOAD_SUCCESS','PARENT_SMSES','SMS templates  list loaded.','SMS templates  list loaded.','backend'),(1691,'SMSES_NO_SMSES','PARENT_SMSES','No SMS templates. Click the above \"plus\" icon to add new ones.','No SMS templates. Click the above \"plus\" icon to add new ones.','backend'),(1692,'PARENT_SMSES_DEFAULT','','SMS templates - Default messages','SMS templates - Default messages','backend'),(1693,'SMSES_DEFAULT_NAME','PARENT_SMSES_DEFAULT','Default SMS templates','Default SMS templates','backend'),(1694,'SMSES_DEFAULT_BOOK_ADMIN','PARENT_SMSES_DEFAULT','You received a booking request.','You received a booking request.','backend'),(1695,'SMSES_DEFAULT_BOOK_USER','PARENT_SMSES_DEFAULT','Your booking request has been sent.','Your booking request has been sent.','backend'),(1696,'SMSES_DEFAULT_BOOK_WITH_APPROVAL_ADMIN','PARENT_SMSES_DEFAULT','You received a booking request.','You received a booking request.','backend'),(1697,'SMSES_DEFAULT_BOOK_WITH_APPROVAL_USER','PARENT_SMSES_DEFAULT','Your booking request has been sent.Please wait for approval.','Your booking request has been sent.Please wait for approval.','backend'),(1698,'SMSES_DEFAULT_APPROVED','PARENT_SMSES_DEFAULT','Your booking request has been approved.','Your booking request has been approved.','backend'),(1699,'SMSES_DEFAULT_CANCELED','PARENT_SMSES_DEFAULT','Your booking request has been canceled.','Your booking request has been canceled.','backend'),(1700,'SMSES_DEFAULT_REJECTED','PARENT_SMSES_DEFAULT','Your booking request has been rejected.','Your booking request has been rejected.','backend'),(1701,'PARENT_SMSES_SMS','','SMS templates - Templates','SMS templates - Templates','backend'),(1702,'SMSES_SMS_NAME','PARENT_SMSES_SMS','Name','Name','backend'),(1703,'SMSES_SMS_LANGUAGE','PARENT_SMSES_SMS','Language','Language','backend'),(1704,'SMSES_SMS_TEMPLATE_SELECT','PARENT_SMSES_SMS','Select template','Select template','backend'),(1705,'SMSES_SMS_TEMPLATE_SELECT_BOOK_ADMIN','PARENT_SMSES_SMS','Admin notification','Admin notification','backend'),(1706,'SMSES_SMS_TEMPLATE_SELECT_BOOK_USER','PARENT_SMSES_SMS','User notification','User notification','backend'),(1707,'SMSES_SMS_TEMPLATE_SELECT_BOOK_WITH_APPROVAL_ADMIN','PARENT_SMSES_SMS','Instant approval admin notification','Instant approval admin notification','backend'),(1708,'SMSES_SMS_TEMPLATE_SELECT_BOOK_WITH_APPROVAL_USER','PARENT_SMSES_SMS','Instant approval user notification','Instant approval user notification','backend'),(1709,'SMSES_SMS_TEMPLATE_SELECT_APPROVED','PARENT_SMSES_SMS','Approve reservation','Approve reservation','backend'),(1710,'SMSES_SMS_TEMPLATE_SELECT_CANCELED','PARENT_SMSES_SMS','Cancel reservation','Cancel reservation','backend'),(1711,'SMSES_SMS_TEMPLATE_SELECT_REJECTED','PARENT_SMSES_SMS','Reject reservation','Reject reservation','backend'),(1712,'SMSES_SMS_MESSAGE','PARENT_SMSES_SMS','Message','Message','backend'),(1713,'SMSES_SMS_LOADED','PARENT_SMSES_SMS','SMS templates loaded.','SMS templates loaded.','backend'),(1714,'PARENT_SMSES_ADD_SMS','','SMS templates - Add templates','SMS templates - Add templates','backend'),(1715,'SMSES_ADD_SMS_NAME','PARENT_SMSES_ADD_SMS','New SMS templates','New SMS templates','backend'),(1716,'SMSES_ADD_SMS_SUBMIT','PARENT_SMSES_ADD_SMS','Add SMS templates','Add SMS templates','backend'),(1717,'SMSES_ADD_SMS_ADDING','PARENT_SMSES_ADD_SMS','Adding new SMS templates ...','Adding new SMS templates ...','backend'),(1718,'SMSES_ADD_SMS_SUCCESS','PARENT_SMSES_ADD_SMS','You have successfully added new SMS templates.','You have successfully added new SMS templates.','backend'),(1719,'PARENT_SMSES_DELETE_SMS','','SMS templates - Delete templates','SMS templates - Delete templates','backend'),(1720,'SMSES_DELETE_SMS_CONFIRMATION','PARENT_SMSES_DELETE_SMS','Are you sure you want to delete the SMS templates?','Are you sure you want to delete the SMS templates?','backend'),(1721,'SMSES_DELETE_SMS_SUBMIT','PARENT_SMSES_DELETE_SMS','Delete SMS templates','Delete SMS templates','backend'),(1722,'SMSES_DELETE_SMS_DELETING','PARENT_SMSES_DELETE_SMS','Deleting SMS templates ...','Deleting SMS templates ...','backend'),(1723,'SMSES_DELETE_SMS_SUCCESS','PARENT_SMSES_DELETE_SMS','You have successfully deleted the SMS templates.','You have successfully deleted the SMS templates.','backend'),(1724,'PARENT_SMSES_HELP','','SMS templates - Help','SMS templates - Help','backend'),(1725,'SMSES_HELP','PARENT_SMSES_HELP','Click on a templates item to open the editing area.','Click on a templates item to open the editing area.','backend'),(1726,'SMSES_ADD_SMS_HELP','PARENT_SMSES_HELP','Click on the \"plus\" icon to add SMS templates.','Click on the \"plus\" icon to add SMS templates.','backend'),(1727,'SMSES_SMS_HELP','PARENT_SMSES_HELP','Click the \"trash\" icon to delete the sms.','Click the \"trash\" icon to delete the sms.','backend'),(1728,'SMSES_SMS_NAME_HELP','PARENT_SMSES_HELP','Change SMS templates name.','Change SMS templates name.','backend'),(1729,'SMSES_SMS_LANGUAGE_HELP','PARENT_SMSES_HELP','Change to the language you want to edit the SMS templates.','Change to the language you want to edit the SMS templates.','backend'),(1730,'SMSES_SMS_TEMPLATE_SELECT_HELP','PARENT_SMSES_HELP','Select the template you want to edit and modify the message.','Select the template you want to edit and modify the message.','backend'),(1731,'PARENT_TEMPLATES','','Templates','Templates','backend'),(1732,'TEMPLATES_TITLE','PARENT_TEMPLATES','Templates','Templates','backend'),(1733,'PARENT_THEMES','','Themes','Themes','backend'),(1734,'THEMES_TITLE','PARENT_THEMES','Themes','Themes','backend'),(1735,'THEMES_HELP','PARENT_THEMES','A collection of themes specially created to be used with the Pinpoint Booking System. PRO version is included with each.','A collection of themes specially created to be used with the Pinpoint Booking System. PRO version is included with each.','backend'),(1736,'THEMES_LOAD_SUCCESS','PARENT_THEMES','Themes list loaded.','Themes list loaded.','backend'),(1737,'THEMES_LOAD_ERROR','PARENT_THEMES','Themes list failed to load. Please refresh the page to try again.','Themes list failed to load. Please refresh the page to try again.','backend'),(1738,'THEMES_FILTERS_SEARCH','PARENT_THEMES','Search','Search','backend'),(1739,'THEMES_FILTERS_SEARCH_TERMS','PARENT_THEMES','Enter search terms','Enter search terms','backend'),(1740,'THEMES_FILTERS_TAGS','PARENT_THEMES','Tags','Tags','backend'),(1741,'THEMES_FILTERS_TAGS_ALL','PARENT_THEMES','All','All','backend'),(1742,'THEMES_THEME_PRICE','PARENT_THEMES','Price:','Price:','backend'),(1743,'THEMES_THEME_GET_IT_NOW','PARENT_THEMES','Get it now','Get it now','backend'),(1744,'THEMES_THEME_VIEW_DEMO','PARENT_THEMES','View demo','View demo','backend'),(1745,'PARENT_TOOLS','','Tools','Tools','backend'),(1746,'TOOLS_TITLE','PARENT_TOOLS','Tools','Tools','backend'),(1747,'PARENT_TOOLS_HELP','','Tools - Help','Tools - Help','backend'),(1748,'TOOLS_HELP','PARENT_TOOLS_HELP','Tools to help you with some of the booking system needs.','Tools to help you with some of the booking system needs.','backend'),(1749,'PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','','Tools - Repair calendars settings','Tools - Repair calendars settings','backend'),(1750,'TOOLS_REPAIR_CALENDARS_SETTINGS_TITLE','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','Repair calendars settings','Repair calendars settings','backend'),(1751,'TOOLS_REPAIR_CALENDARS_SETTINGS_CONFIRMATION','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','Are you sure you want to start calendars settings repairs?','Are you sure you want to start calendars settings repairs?','backend'),(1752,'TOOLS_REPAIR_CALENDARS_SETTINGS_REPAIRING','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','Repairing calendars settings ...','Repairing calendars settings ...','backend'),(1753,'TOOLS_REPAIR_CALENDARS_SETTINGS_SUCCESS','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','The settings have been repaired.','The settings have been repaired.','backend'),(1754,'TOOLS_REPAIR_CALENDARS_SETTINGS_CALENDARS','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','Calendars','Calendars','backend'),(1755,'TOOLS_REPAIR_CALENDARS_SETTINGS_SETTINGS_DATABASE','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','Settings database','Settings database','backend'),(1756,'TOOLS_REPAIR_CALENDARS_SETTINGS_NOTIFICATIONS_DATABASE','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','Notifications database','Notifications database','backend'),(1757,'TOOLS_REPAIR_CALENDARS_SETTINGS_PAYMENT_DATABASE','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','Payment database','Payment database','backend'),(1758,'TOOLS_REPAIR_CALENDARS_SETTINGS_UNCHANGED','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','Unchanged','Unchanged','backend'),(1759,'TOOLS_REPAIR_CALENDARS_SETTINGS_REPAIRED','PARENT_TOOLS_REPAIR_CALENDARS_SETTINGS','Repaired','Repaired','backend'),(1760,'PARENT_TOOLS_REPAIR_DATABASE_TEXT','','Tools - Repair database & text','Tools - Repair database & text','backend'),(1761,'TOOLS_REPAIR_DATABASE_TEXT_TITLE','PARENT_TOOLS_REPAIR_DATABASE_TEXT','Repair database & text','Repair database & text','backend'),(1762,'TOOLS_REPAIR_DATABASE_TEXT_CONFIRMATION','PARENT_TOOLS_REPAIR_DATABASE_TEXT','Are you sure you want to verify the database & the text and repair them if needed?','Are you sure you want to verify the database & the text and repair them if needed?','backend'),(1763,'TOOLS_REPAIR_DATABASE_TEXT_REPAIRING','PARENT_TOOLS_REPAIR_DATABASE_TEXT','Verifying and repairing the database & the text ...','Verifying and repairing the database & the text ...','backend'),(1764,'TOOLS_REPAIR_DATABASE_TEXT_SUCCESS','PARENT_TOOLS_REPAIR_DATABASE_TEXT','The database & the text have been verified and repaired. The page will redirect shortly to Dashboard.','The database & the text have been verified and repaired. The page will redirect shortly to Dashboard.','backend'),(1765,'PARENT_TOOLS_REPAIR_SEARCH_SETTINGS','','Tools - Repair search settings','Tools - Repair search settings','backend'),(1766,'TOOLS_REPAIR_SEARCH_SETTINGS_TITLE','PARENT_TOOLS_REPAIR_SEARCH_SETTINGS','Repair search settings','Repair search settings','backend'),(1767,'TOOLS_REPAIR_SEARCH_SETTINGS_CONFIRMATION','PARENT_TOOLS_REPAIR_SEARCH_SETTINGS','Are you sure you want to start search settings repairs?','Are you sure you want to start search settings repairs?','backend'),(1768,'TOOLS_REPAIR_SEARCH_SETTINGS_REPAIRING','PARENT_TOOLS_REPAIR_SEARCH_SETTINGS','Repairing search settings ...','Repairing search settings ...','backend'),(1769,'TOOLS_REPAIR_SEARCH_SETTINGS_SUCCESS','PARENT_TOOLS_REPAIR_SEARCH_SETTINGS','The settings have been repaired.','The settings have been repaired.','backend'),(1770,'TOOLS_REPAIR_SEARCH_SETTINGS_SEARCHES','PARENT_TOOLS_REPAIR_SEARCH_SETTINGS','Searches','Searches','backend'),(1771,'TOOLS_REPAIR_SEARCH_SETTINGS_SETTINGS_DATABASE','PARENT_TOOLS_REPAIR_SEARCH_SETTINGS','Settings database','Settings database','backend'),(1772,'TOOLS_REPAIR_SEARCH_SETTINGS_UNCHANGED','PARENT_TOOLS_REPAIR_SEARCH_SETTINGS','Unchanged','Unchanged','backend'),(1773,'TOOLS_REPAIR_SEARCH_SETTINGS_REPAIRED','PARENT_TOOLS_REPAIR_SEARCH_SETTINGS','Repaired','Repaired','backend'),(1774,'PARENT_TRANSLATION','','Translation','Translation','backend'),(1775,'TRANSLATION_TITLE','PARENT_TRANSLATION','Translation','Translation','backend'),(1776,'TRANSLATION_SUBMIT','PARENT_TRANSLATION','Manage translation','Manage translation','backend'),(1777,'TRANSLATION_LOADED','PARENT_TRANSLATION','Translation has been loaded.','Translation has been loaded.','backend'),(1778,'TRANSLATION_LANGUAGE','PARENT_TRANSLATION','Select language','Select language','backend'),(1779,'TRANSLATION_TEXT_GROUP','PARENT_TRANSLATION','Select text group','Select text group','backend'),(1780,'TRANSLATION_TEXT_GROUP_ALL','PARENT_TRANSLATION','All','All','backend'),(1781,'TRANSLATION_SEARCH','PARENT_TRANSLATION','Search','Search','backend'),(1782,'TRANSLATION_RESET','PARENT_TRANSLATION','Reset translation','Reset translation','backend'),(1783,'TRANSLATION_RESET_CONFIRMATION','PARENT_TRANSLATION','Are you sure you want to reset all translation data? All your modifications are going to be overwritten.','Are you sure you want to reset all translation data? All your modifications are going to be overwritten.','backend'),(1784,'TRANSLATION_RESETING','PARENT_TRANSLATION','Translation is resetting ...','Translation is resetting ...','backend'),(1785,'TRANSLATION_RESET_SUCCESS','PARENT_TRANSLATION','The translation has reset. The page will refresh shortly.','The translation has reset. The page will refresh shortly.','backend'),(1786,'PARENT_TRANSLATION_HELP','','Translation - Help','Translation - Help','backend'),(1787,'TRANSLATION_HELP','PARENT_TRANSLATION_HELP','Select the language & text group you want to translate.','Select the language & text group you want to translate.','backend'),(1788,'TRANSLATION_SEARCH_HELP','PARENT_TRANSLATION_HELP','Use the search field to look & display the text you want.','Use the search field to look & display the text you want.','backend'),(1789,'TRANSLATION_RESET_HELP','PARENT_TRANSLATION_HELP','If you want to use the translation that came with the plugin click \"Reset translation\" button. Note that all your modifications will be overwritten.','If you want to use the translation that came with the plugin click \"Reset translation\" button. Note that all your modifications will be overwritten.','backend'),(1790,'PARENT_WIDGET','','Widget','Widget','backend'),(1791,'WIDGET_TITLE','PARENT_WIDGET','Pinpoint Booking System','Pinpoint Booking System','backend'),(1792,'WIDGET_DESCRIPTION','PARENT_WIDGET','Select option you want to appear in the widget and ID(s) of the calendar(s).','Select option you want to appear in the widget and ID(s) of the calendar(s).','backend'),(1793,'WIDGET_TITLE_LABEL','PARENT_WIDGET','Title:','Title:','backend'),(1794,'WIDGET_SELECTION_LABEL','PARENT_WIDGET','Select action:','Select action:','backend'),(1795,'WIDGET_SELECTION_ADD_CALENDAR','PARENT_WIDGET','Add calendar','Add calendar','backend'),(1796,'WIDGET_SELECTION_ADD_SIDEBAR','PARENT_WIDGET','Add calendar sidebar','Add calendar sidebar','backend'),(1797,'WIDGET_ID_LABEL','PARENT_WIDGET','Select calendar ID:','Select calendar ID:','backend'),(1798,'WIDGET_NO_CALENDARS','PARENT_WIDGET','No calendars.','No calendars.','backend'),(1799,'WIDGET_LANGUAGE_LABEL','PARENT_WIDGET','Select language:','Select language:','backend');
/*!40000 ALTER TABLE `wpew_dopbsp_translation_en` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_eg_grids`
--

DROP TABLE IF EXISTS `wpew_eg_grids`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_eg_grids` (
  `id` mediumint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `postparams` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `layers` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci,
  `last_modified` datetime DEFAULT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_eg_grids`
--

LOCK TABLES `wpew_eg_grids` WRITE;
/*!40000 ALTER TABLE `wpew_eg_grids` DISABLE KEYS */;
INSERT INTO `wpew_eg_grids` VALUES (1,'home main 1','home main 1','{\"source-type\":\"custom\",\"post_types\":\"post\",\"post_category\":\"\",\"category-relation\":\"OR\",\"additional-query\":\"\",\"selected_pages\":\"\",\"max_entries\":\"-1\",\"max_entries_preview\":\"20\",\"stream-source-type\":\"instagram\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"youtube-thumb-size\":\"default\",\"youtube-full-size\":\"default\",\"youtube-count\":\"12\",\"youtube-transient-sec\":\"86400\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"vimeo-thumb-size\":\"thumbnail_small\",\"vimeo-count\":\"12\",\"vimeo-transient-sec\":\"86400\",\"instagram-token-source\":\"account\",\"instagram-connected-to\":\"\",\"instagram-api-key\":\"\",\"instagram-count\":\"12\",\"instagram-transient-sec\":\"86400\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"flickr-thumb-size\":\"Small 320\",\"flickr-full-size\":\"Medium 800\",\"flickr-count\":\"12\",\"flickr-transient-sec\":\"86400\",\"facebook-access-token\":\"\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"timeline\",\"facebook-album\":\"\",\"facebook-album-select\":\"\",\"facebook-count\":\"12\",\"facebook-transient-sec\":\"86400\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"true\",\"twitter-include-retweets\":\"on\",\"twitter-exclude-replies\":\"on\",\"twitter-count\":\"12\",\"twitter-transient-sec\":\"86400\",\"behance-api\":\"\",\"behance-user-id\":\"\",\"behance-type\":\"projects\",\"behance-project\":\"\",\"behance-project-select\":\"\",\"behance-projects-thumb-size\":\"202\",\"behance-projects-full-size\":\"202\",\"behance-project-thumb-size\":\"max_1240\",\"behance-project-full-size\":\"disp\",\"behance-count\":\"12\",\"behance-transient-sec\":\"86400\",\"dribbble-api\":\"\",\"media-source-order\":[\"featured-image\"],\"poster-source-order\":[\"featured-image\"],\"image-source-type\":\"full\",\"image-source-type-mobile\":\"full\",\"default-image\":\"\",\"youtube-default-image\":\"\",\"vimeo-default-image\":\"\",\"html-default-image\":\"\"}','{\"layout-sizing\":\"boxed\",\"fullscreen-offset-container\":\"\",\"layout\":\"even\",\"content-push\":\"off\",\"x-ratio\":\"4\",\"y-ratio\":\"3\",\"auto-ratio\":\"true\",\"rtl\":\"off\",\"videoplaybackingrid\":\"on\",\"videoplaybackonhover\":\"off\",\"videocontrolsinline\":\"off\",\"videomuteinline\":\"on\",\"keeplayersovermedia\":\"off\",\"show-even-on-device\":\"0\",\"use-cobbles-pattern\":\"off\",\"columns-advanced\":\"off\",\"columns-height\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"columns-width\":[\"1400\",\"1170\",\"1024\",\"960\",\"778\",\"640\",\"480\"],\"mascontent-height\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"columns\":[\"3\",\"3\",\"3\",\"3\",\"3\",\"1\",\"1\"],\"blank-item-breakpoint\":\"1\",\"rows-unlimited\":\"off\",\"rows\":\"3\",\"enable-rows-mobile\":\"off\",\"rows-mobile\":\"3\",\"pagination-autoplay\":\"off\",\"pagination-autoplay-speed\":\"5000\",\"pagination-touchswipe\":\"off\",\"pagination-dragvertical\":\"on\",\"pagination-swipebuffer\":\"30\",\"load-more\":\"none\",\"load-more-hide\":\"off\",\"load-more-text\":\"Load More\",\"load-more-show-number\":\"on\",\"load-more-start\":\"3\",\"load-more-amount\":\"3\",\"lazy-loading\":\"off\",\"lazy-loading-blur\":\"on\",\"lazy-load-color\":\"#FFFFFF\",\"spacings\":\"15\",\"grid-padding\":[\"0\",\"0\",\"0\",\"0\"],\"main-background-color\":\"transparent\",\"navigation-skin\":\"minimal-light\",\"navigation-preview-bg\":\"dark\",\"0\":\"\",\"entry-skin\":\"1\",\"grid-start-animation\":\"reveal\",\"hide-markup-before-load\":\"on\",\"grid-start-animation-speed\":\"1000\",\"grid-start-animation-delay\":\"100\",\"grid-start-animation-type\":\"item\",\"start-anime-in-viewport\":\"off\",\"start-anime-viewport-buffer\":\"20\",\"grid-animation\":\"fade\",\"grid-animation-speed\":\"1000\",\"grid-animation-delay\":\"1\",\"grid-animation-type\":\"item\",\"grid-item-animation\":\"none\",\"grid-item-animation-zoomin\":\"125\",\"grid-item-animation-zoomout\":\"75\",\"grid-item-animation-fade\":\"75\",\"grid-item-animation-blur\":\"5\",\"grid-item-animation-rotate\":\"30\",\"grid-item-animation-shift\":\"up\",\"grid-item-animation-shift-amount\":\"10\",\"grid-item-animation-other\":\"none\",\"grid-item-other-zoomin\":\"125\",\"grid-item-other-zoomout\":\"75\",\"grid-item-other-fade\":\"75\",\"grid-item-other-blur\":\"5\",\"grid-item-other-rotate\":\"30\",\"grid-item-other-shift\":\"up\",\"grid-item-other-shift-amount\":\"10\",\"top-1-align\":\"center\",\"top-1-margin-bottom\":\"0\",\"top-2-align\":\"center\",\"top-2-margin-bottom\":\"0\",\"bottom-1-align\":\"center\",\"bottom-1-margin-top\":\"0\",\"bottom-2-align\":\"center\",\"bottom-2-margin-top\":\"0\",\"left-margin-left\":\"0\",\"right-margin-right\":\"0\",\"module-spacings\":\"5\",\"pagination-numbers\":\"smart\",\"pagination-scroll\":\"off\",\"pagination-scroll-offset\":\"0\",\"filter-arrows\":\"single\",\"filter-logic\":\"or\",\"add-filters-by\":\"default\",\"filter-start\":\"\",\"filter-deep-link\":\"off\",\"filter-show-on\":\"hover\",\"convert-mobile-filters\":\"off\",\"filter-all-visible\":\"on\",\"filter-all-text\":\"Filter - All\",\"filter-listing\":\"list\",\"filter-dropdown-text\":\"Filter Categories\",\"filter-counter\":\"off\",\"sort-by-text\":\"Sort By \",\"sorting-order-by\":\"date\",\"sorting-order-by-start\":\"none\",\"sorting-order-by-start-meta\":\"\",\"sorting-order-type\":\"ASC\",\"search-text\":\"Search...\",\"lb-source-order\":[\"featured-image\"],\"lightbox-mode\":\"single\",\"lightbox-exclude-media\":\"off\",\"lightbox-deep-link\":\"group\",\"lightbox-videoautoplay\":\"on\",\"lightbox-title\":\"off\",\"lbox-padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-effect-open-close\":\"fade\",\"lightbox-effect-open-close-speed\":\"500\",\"lightbox-effect-next-prev\":\"fade\",\"lightbox-effect-next-prev-speed\":\"500\",\"lightbox-autoplay\":\"off\",\"lbox-playspeed\":\"3000\",\"lightbox-arrows\":\"on\",\"lightbox-loop\":\"on\",\"lightbox-numbers\":\"on\",\"lightbox-mousewheel\":\"off\",\"lb-button-order\":[\"share\",\"thumbs\",\"close\"],\"lightbox-post-content-min-width\":\"75\",\"lightbox-post-content-min-perc\":\"on\",\"lightbox-post-content-max-width\":\"75\",\"lightbox-post-content-max-perc\":\"on\",\"lightbox-post-content-overflow\":\"on\",\"lbox-content_padding\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-post-spinner\":\"off\",\"lightbox-post-content-img\":\"off\",\"lightbox-post-content-img-position\":\"top\",\"lightbox-post-content-img-width\":\"50\",\"lightbox-post-content-img-margin\":[\"0\",\"0\",\"0\",\"0\"],\"lightbox-post-content-title\":\"off\",\"lightbox-post-content-title-tag\":\"h2\",\"aj-source-order\":[\"post-content\"],\"ajax-container-id\":\"ess-grid-ajax-container-\",\"ajax-container-position\":\"top\",\"ajax-scroll-onload\":\"on\",\"ajax-scrollto-offset\":\"0\",\"ajax-close-button\":\"off\",\"ajax-button-text\":\"Close\",\"ajax-nav-button\":\"off\",\"ajax-button-skin\":\"light\",\"ajax-button-type\":\"type1\",\"ajax-button-inner\":\"false\",\"ajax-button-h-pos\":\"r\",\"ajax-button-v-pos\":\"t\",\"ajax-container-pre\":\"\",\"ajax-container-post\":\"\",\"ajax-container-css\":\"\",\"ajax-callback\":\"\",\"ajax-callback-arg\":\"false\",\"ajax-css-url\":\"\",\"ajax-js-url\":\"\",\"use-spinner\":\"0\",\"spinner-color\":\"#FFFFFF\",\"custom-javascript\":\"\",\"cookie-save-time\":\"30\",\"cookie-save-search\":\"off\",\"cookie-save-filter\":\"off\",\"cookie-save-pagination\":\"off\",\"css-id\":\"\"}','[\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"3945\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"Luxury Car Rentals\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"3939\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"Executive Transportation\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"3943\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"Private Airfare\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"3935\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"Yacht Charter\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"3938\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"Luxury Shopping\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\",\"{\\\"custom-type\\\":\\\"image\\\",\\\"custom-image\\\":\\\"3944\\\",\\\"custom-ratio\\\":\\\"1\\\",\\\"cobbles-size\\\":\\\"1:1\\\",\\\"use-skin\\\":\\\"-1\\\",\\\"title\\\":\\\"VIP Nightlife\\\",\\\"image-fit\\\":\\\"-1\\\",\\\"image-repeat\\\":\\\"-1\\\",\\\"image-align-horizontal\\\":\\\"-1\\\",\\\"image-align-vertical\\\":\\\"-1\\\"}\"]',NULL,'2021-06-24 06:15:42');
/*!40000 ALTER TABLE `wpew_eg_grids` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_eg_item_elements`
--

DROP TABLE IF EXISTS `wpew_eg_item_elements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_eg_item_elements` (
  `id` mediumint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_eg_item_elements`
--

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

--
-- Table structure for table `wpew_eg_item_skins`
--

DROP TABLE IF EXISTS `wpew_eg_item_skins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_eg_item_skins` (
  `id` mediumint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `params` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `layers` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `name` (`name`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_eg_item_skins`
--

LOCK TABLES `wpew_eg_item_skins` WRITE;
/*!40000 ALTER TABLE `wpew_eg_item_skins` DISABLE KEYS */;
INSERT INTO `wpew_eg_item_skins` VALUES (1,'Washington','washington','{\"eg-item-skin-element-last-id\":\"9\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"splitted-item\":\"none\",\"cover-type\":\"full\",\"cover-blend-mode\":\"normal\",\"container-background-color\":\"rgba(0,0,0,0.65)\",\"cover-always-visible-desktop\":\"false\",\"cover-always-visible-mobile\":\"false\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#3f424a\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius-type\":\"px\",\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius-type\":\"px\",\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"content-box-shadow-inset\":\"false\",\"content-box-shadow-hover\":\"false\",\"cover-animation-top\":\"fade\",\"cover-animation-duration-top\":\"default\",\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-color-top\":\"#FFFFFF\",\"cover-animation-center\":\"fade\",\"cover-animation-duration-center\":\"default\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-color-center\":\"#FFFFFF\",\"cover-animation-bottom\":\"fade\",\"cover-animation-duration-bottom\":\"default\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-color-bottom\":\"#FFFFFF\",\"cover-group-animation\":\"fade\",\"cover-group-animation-duration\":\"default\",\"cover-group-animation-delay\":\"0\",\"media-animation\":\"none\",\"media-animation-duration\":\"default\",\"media-animation-delay\":\"0\",\"media-animation-blur\":\"5\",\"element-hover-image\":\"false\",\"hover-image-animation\":\"fade\",\"hover-image-animation-duration\":\"default\",\"hover-image-animation-delay\":\"0\",\"link-set-to\":\"none\",\"link-link-type\":\"none\",\"link-target\":\"_self\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\"}','[null,null,{\"id\":\"8\",\"order\":0,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"false\",\"enable-hover\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"min-height\":\"0\",\"max-height\":\"none\",\"duration\":\"default\",\"letter-spacing\":\"normal\",\"letter-spacing-hover\":\"normal\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"show-on-lightbox-video\":\"false\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"source-text\":\"LINE-BREAK\"}},{\"id\":\"3\",\"order\":2,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"20\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"Arial, Helvetica, sans-serif\",\"font-weight\":\"500\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":{\"0\":\"15\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"padding\":{\"0\":\"5\",\"1\":\"10\",\"2\":\"5\",\"3\":\"10\"},\"background-color\":\"rgba(12, 12, 12, 0.47)\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"box-shadow\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"20\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"Arial, Helvetica, sans-serif\",\"font-weight-hover\":\"500\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"box-shadow-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-hover\":{\"0\":\"0\",\"1\":\"0\",\"2\":\"0\",\"3\":\"0\"},\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"flipup\",\"delay\":\"10\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"false\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\",\"min-height\":\"0\",\"max-height\":\"none\",\"duration\":\"default\",\"letter-spacing\":\"normal\",\"letter-spacing-hover\":\"normal\",\"source-taxonomy\":\"post_tag\",\"source-function\":\"link\",\"hideunderheight\":\"0\",\"hidetype\":\"visibility\",\"show-on-lightbox-video\":\"false\",\"link-target\":\"_self\",\"source-text-style-disable\":\"\",\"source-post\":\"title\"}},{\"id\":\"9\",\"order\":1,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\",\"min-height\":0,\"max-height\":\"none\",\"duration\":\"default\",\"letter-spacing\":\"normal\",\"letter-spacing-hover\":\"normal\"}}]',NULL),(2,'Adams','adams','{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(137,175,114,1)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"transparent\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"10\",\"cover-animation-center\":\"flipleft\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"turnout\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideright\",\"delay\":\"10\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"css\":\".eg-adams-element-0{}\",\"css-hover\":\".eg-adams-element-0{}\",\"transition-type\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#000000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"2\",\"2\",\"2\",\"2\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideleft\",\"delay\":\"20\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"css\":\".eg-adams-element-3{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-adams-element-3{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"5\",\"order\":7,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"20\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\".eg-adams-element-5{}\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\".eg-adams-element-5{}\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"words\",\"limit-num\":\"6\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"7\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\"}},{\"id\":\"8\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"true\",\"always-visible-mobile\":\"true\"}}]',NULL),(3,'Jefferson','jefferson','{\"eg-item-skin-element-last-id\":\"8\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(227,58,12,1)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#ffffff\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"fliphorizontal\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"fliphorizontalout\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"46\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"17\",\"17\",\"17\",\"17\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#e33a0c\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"50\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"3\",\"order\":3,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"17\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"800\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"10\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"background-color\":\"transparent\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"17\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"uppercase\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"60\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"5\",\"order\":6,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"on\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"1\",\"5\",\"1\",\"5\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"3\",\"3\",\"3\",\"3\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"12\",\"line-height-hover\":\"20\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"3\",\"3\",\"3\",\"3\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"70\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\"   \",\"limit-type\":\"words\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"border-unit-hover\":\"px\",\"box-shadow-unit-hover\":\"px\",\"source-post\":\"cat_list\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"7\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"8\",\"order\":4,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}}]',NULL),(4,'Madison','madison','{\"eg-item-skin-element-last-id\":\"7\",\"choose-layout\":\"even\",\"show-content\":\"bottom\",\"content-align\":\"left\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(88,92,103,1)\",\"0\":\"Default\",\"element-container-background-color-opacity\":\"100\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"#585c67\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"#ffffff\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"double\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"rgba(0,0,0,1)\",\"content-shadow-alpha\":\"100\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"flipvertical\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"fade\",\"media-animation\":\"flipverticalout\",\"media-animation-delay\":\"0\"}','[{\"id\":\"0\",\"order\":0,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"10\",\"0\",\"0\"],\"padding\":[\"19\",\"19\",\"19\",\"19\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.25)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"50\",\"link-type\":\"lightbox\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-search\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"1\",\"order\":1,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"icon\",\"enable-hover\":\"on\",\"font-size\":\"16\",\"line-height\":\"22\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"none\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"19\",\"19\",\"19\",\"19\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit\":\"px\",\"border-color\":\"#ffffff\",\"border-style\":\"solid\",\"font-size-hover\":\"16\",\"line-height-hover\":\"22\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(0,0,0,0.25)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"60\",\"60\",\"60\",\"60\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"#ffffff\",\"border-style-hover\":\"solid\",\"hideunder\":\"0\",\"transition\":\"zoomfront\",\"delay\":\"35\",\"link-type\":\"post\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"border-hover-unit\":\"px\",\"border-radius-hover-unit\":\"px\",\"box-shadow-hover-unit\":\"px\",\"transition-type\":\"\",\"css\":\"\",\"position\":\"relative\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"align\":\"t_l\",\"css-hover\":\"\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"force-important\":\"true\",\"absolute-unit\":\"px\",\"hide-on-video\":\"\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"source-icon\":\"eg-icon-link\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"3\",\"order\":4,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"13\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"700\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"uppercase\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"15\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"700\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slideup\",\"delay\":\"35\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"title\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},null,{\"id\":\"5\",\"order\":7,\"container\":\"c\",\"settings\":{\"0\":\"Default\",\"source\":\"post\",\"enable-hover\":\"\",\"font-size\":\"12\",\"line-height\":\"20\",\"color\":\"#ffffff\",\"font-family\":\"\",\"font-weight\":\"400\",\"text-decoration\":\"none\",\"font-style\":\"\",\"text-transform\":\"none\",\"display\":\"inline-block\",\"text-align\":\"center\",\"float\":\"none\",\"clear\":\"both\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"5\",\"10\",\"5\",\"10\"],\"background-color\":\"rgba(255,255,255,0.15)\",\"bg-alpha\":\"100\",\"background-size\":\"cover\",\"background-repeat\":\"no-repeat\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"font-size-hover\":\"13\",\"line-height-hover\":\"14\",\"color-hover\":\"#ffffff\",\"font-family-hover\":\"\",\"font-weight-hover\":\"300\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"background-color-hover\":\"rgba(255,255,255,0.15)\",\"bg-alpha-hover\":\"100\",\"background-size-hover\":\"cover\",\"background-size-x-hover\":\"100\",\"background-size-y-hover\":\"100\",\"background-repeat-hover\":\"no-repeat\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit-hover\":\"px\",\"border-color-hover\":\"transparent\",\"border-style-hover\":\"none\",\"hideunder\":\"0\",\"transition\":\"slidedown\",\"delay\":\"45\",\"link-type\":\"none\",\"url-link\":\"\",\"javascript-link\":\"\",\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"transition-type\":\"\",\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"words\",\"limit-num\":\"6\",\"tag-type\":\"div\",\"force-important\":\"\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"source-post\":\"excerpt\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"6\",\"order\":2,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}},{\"id\":\"7\",\"order\":5,\"container\":\"c\",\"settings\":{\"background-color\":\"rgba(255,255,255,0.20)\",\"bg-alpha\":\"100\",\"clear\":\"both\",\"border-width\":\"0\",\"color\":\"transparent\",\"display\":\"block\",\"font-size\":\"10\",\"font-style\":\"italic\",\"font-weight\":\"700\",\"line-height\":\"5\",\"margin\":[\"0\",\"0\",\"0\",\"0\"],\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-align\":\"center\",\"transition\":\"none\",\"text-transform\":\"uppercase\",\"source\":\"text\",\"special\":\"true\",\"font-family\":\"\",\"text-decoration\":\"none\",\"float\":\"none\",\"border\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-unit\":\"px\",\"border-color\":\"transparent\",\"border-style\":\"solid\",\"shadow-color\":\"rgba(0,0,0,1)\",\"shadow-alpha\":\"100\",\"box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"position\":\"relative\",\"top-bottom\":\"0\",\"left-right\":\"0\",\"source-separate\":\",\",\"source-catmax\":\"-1\",\"limit-type\":\"none\",\"limit-num\":\"10\",\"transition-type\":\"\",\"delay\":\"10\",\"link-type\":\"none\",\"hideunder\":\"0\",\"hide-on-video\":\"\",\"enable-hover\":\"\",\"attribute\":\"\",\"class\":\"\",\"rel\":\"\",\"tag-type\":\"div\",\"force-important\":\"true\",\"align\":\"t_l\",\"absolute-unit\":\"px\",\"show-on-sale\":\"\",\"show-if-featured\":\"\",\"font-size-hover\":\"12\",\"line-height-hover\":\"14\",\"color-hover\":\"#000\",\"font-family-hover\":\"\",\"font-weight-hover\":\"400\",\"text-decoration-hover\":\"none\",\"font-style-hover\":\"\",\"text-transform-hover\":\"none\",\"border-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius-hover\":[\"0\",\"0\",\"0\",\"0\"],\"border-color-hover\":\"transparent\",\"border-style-hover\":\"solid\",\"background-color-hover\":\"rgba(255,255,255,1)\",\"bg-alpha-hover\":\"100\",\"shadow-color-hover\":\"rgba(0,0,0,1)\",\"shadow-alpha-hover\":\"100\",\"box-shadow-hover\":[\"0\",\"0\",\"0\",\"0\"],\"margin-unit\":\"px\",\"padding-unit\":\"px\",\"border-unit\":\"px\",\"box-shadow-unit\":\"px\",\"source-text\":\"LINE-BREAK\",\"always-visible-desktop\":\"\",\"always-visible-mobile\":\"\"}}]',NULL),(5,'ESGBlankSkin','esgblankskin','{\"eg-item-skin-element-last-id\":\"0\",\"choose-layout\":\"even\",\"show-content\":\"none\",\"content-align\":\"left\",\"image-repeat\":\"no-repeat\",\"image-fit\":\"cover\",\"image-align-horizontal\":\"center\",\"image-align-vertical\":\"center\",\"element-x-ratio\":\"4\",\"element-y-ratio\":\"3\",\"splitted-item\":\"none\",\"cover-type\":\"full\",\"container-background-color\":\"rgba(0, 0, 0, 0)\",\"cover-always-visible-desktop\":\"false\",\"cover-always-visible-mobile\":\"false\",\"cover-background-size\":\"cover\",\"cover-background-repeat\":\"no-repeat\",\"cover-background-image\":\"0\",\"cover-background-image-url\":\"\",\"full-bg-color\":\"rgba(255, 255, 255, 0)\",\"full-padding\":[\"0\",\"0\",\"0\",\"0\"],\"full-border\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"full-border-color\":\"transparent\",\"full-border-style\":\"none\",\"full-overflow-hidden\":\"false\",\"content-bg-color\":\"rgba(255, 255, 255, 0)\",\"content-padding\":[\"0\",\"0\",\"0\",\"0\"],\"content-border\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"content-border-color\":\"transparent\",\"content-border-style\":\"none\",\"all-shadow-used\":\"none\",\"content-shadow-color\":\"#000000\",\"content-box-shadow\":[\"0\",\"0\",\"0\",\"0\"],\"cover-animation-top-type\":\"\",\"cover-animation-delay-top\":\"0\",\"cover-animation-top\":\"fade\",\"cover-animation-center-type\":\"\",\"cover-animation-delay-center\":\"0\",\"cover-animation-center\":\"none\",\"cover-animation-bottom-type\":\"\",\"cover-animation-delay-bottom\":\"0\",\"cover-animation-bottom\":\"fade\",\"cover-group-animation\":\"none\",\"media-animation\":\"none\",\"media-animation-delay\":\"0\",\"element-hover-image\":\"false\",\"hover-image-animation\":\"fade\",\"hover-image-animation-delay\":\"0\",\"link-set-to\":\"none\",\"link-link-type\":\"none\",\"link-url-link\":\"\",\"link-meta-link\":\"\",\"link-javascript-link\":\"\",\"link-target\":\"_self\"}','[]',NULL);
/*!40000 ALTER TABLE `wpew_eg_item_skins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_eg_navigation_skins`
--

DROP TABLE IF EXISTS `wpew_eg_navigation_skins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_eg_navigation_skins` (
  `id` mediumint(6) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `css` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `navversion` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `handle` (`handle`)
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_eg_navigation_skins`
--

LOCK TABLES `wpew_eg_navigation_skins` WRITE;
/*!40000 ALTER TABLE `wpew_eg_navigation_skins` DISABLE KEYS */;
INSERT INTO `wpew_eg_navigation_skins` VALUES (1,'Flat Light','flat-light','/*************************************\n	-	FLAT LIGHT 3.0.0 SKIN -\n*************************************/\n\n.flat-light .navigationbuttons,\n.flat-light .esg-pagination,\n.flat-light .esg-filters {\n	text-transform: uppercase;\n	text-align: center;\n}\n\n.flat-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.flat-light input.eg-search-input,\n.flat-light .esg-filterbutton,\n.flat-light .esg-navigationbutton,\n.flat-light .esg-sortbutton,\n.flat-light .esg-cartbutton,\n.flat-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.flat-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #999;\n	margin-right: 5px;\n	cursor: pointer;\n	position: relative;\n	z-index: 2;\n	padding: 0px 30px;\n	border: 1px solid rgba(0,0,0,0.15);\n	line-height: 40px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: #fff;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 40px;\n	vertical-align: middle;\n}\n\n.flat-light .esg-cartbutton a {\n	color: #999;\n}\n\n.flat-light input.eg-search-input::placeholder {\n	line-height: 40px;\n	vertical-align: middle;\n	color:#999;\n}\n\n.flat-light .esg-navigationbutton {\n	padding: 0px;\n	width:40px;\n}\n\n.flat-light .esg-navigationbutton * {\n	color: #999;\n}\n\n.flat-light .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.flat-light .esg-sortbutton-wrapper,\n.flat-light .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.flat-light .esg-sortbutton-order,\n.flat-light .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: 1px solid rgba(0,0,0,0.15);\n	width: 40px;\n	line-height: 40px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: #eee;\n	background: #fff;\n	margin-left: 5px;\n}\n\n.flat-light .esg-cartbutton {\n	color: #999;\n	cursor: default !important;\n}\n\n.flat-light .esg-cartbutton .esgicon-basket {\n	color: #999;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.flat-light .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.flat-light .esg-sortbutton,\n.flat-light .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-radius: 5px;\n}\n\n.flat-light input.eg-search-input.hovered,\n.flat-light input.eg-search-input:focus,\n.flat-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.flat-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.flat-light .esg-navigationbutton.hovered,\n.flat-light .esg-filterbutton.hovered,\n.flat-light .esg-sortbutton.hovered,\n.flat-light .esg-sortbutton-order.hovered,\n.flat-light .esg-cartbutton-order.hovered,\n.flat-light .esg-filterbutton.selected,\n.flat-light .esg-cartbutton.hovered,\n.flat-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.flat-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #000;\n	background: #fff;\n    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.13);\n}\n\n.flat-light .esg-navigationbutton.hovered * {\n	color: #000;\n}\n\n.flat-light .esg-sortbutton-order.hovered.tp-desc {\n	color: #000;\n}\n\n.flat-light .esg-filter-checked {\n	color: #cbcbcb;\n	background: #cbcbcb;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n.flat-light .esg-filterbutton.selected .esg-filter-checked,\n.flat-light .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.flat-light .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n.flat-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.flat-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.flat-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.flat-light .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.flat-light .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:transparent;\n	padding:0px;\n}\n\n.flat-light .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative\n}\n\n.flat-light .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 12px;\n	color:#999;\n}\n.flat-light .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open,\n.flat-light .esg-selected-filterbutton.hovered .eg-icon-down-open {\n	color:#000;\n}',NULL),(2,'Flat Dark','flat-dark','/********************************\n	-	FLAT DARK 3.0.0 SKIN -\n*********************************/\n\n.flat-dark .navigationbuttons,\n.flat-dark .esg-pagination,\n.flat-dark .esg-filters {\n	text-transform: uppercase;\n	text-align: center;\n}\n\n.flat-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.flat-dark input.eg-search-input,\n.flat-dark .esg-filterbutton,\n.flat-dark .esg-navigationbutton,\n.flat-dark .esg-sortbutton,\n.flat-dark .esg-cartbutton,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #fff;\n	margin-right: 5px;\n	cursor: pointer;\n	position: relative;\n	z-index: 2;\n	padding: 1px 30px;\n	border: none;\n	line-height: 38px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: rgba(0, 0, 0, 0.2);\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 38px;\n	vertical-align: middle;\n}\n\n.flat-dark .esg-cartbutton a {\n	color:#fff;\n}\n\n.flat-dark input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n	color:#fff;\n}\n\n.flat-dark .esg-navigationbutton {\n	padding: 2px 12px;\n}\n\n.flat-dark .esg-navigationbutton * {\n	color: #fff;\n}\n\n.flat-dark .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.flat-dark .esg-sortbutton-wrapper,\n.flat-dark .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.flat-dark .esg-sortbutton-order,\n.flat-dark .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: none;\n	width: 40px;\n	line-height: 40px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	color: #fff;\n	cursor: pointer;\n	background: rgba(0, 0, 0, 0.2);\n	margin-left: 5px;\n}\n\n.flat-dark .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n}\n\n.flat-dark .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.flat-dark .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.flat-dark .esg-sortbutton,\n.flat-dark .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-radius: 5px;\n}\n\n.flat-dark input.eg-search-input.hovered,\n.flat-dark input.eg-search-input:focus,\n.flat-dark .esg-navigationbutton.hovered,\n.flat-dark .esg-filterbutton.hovered,\n.flat-dark .esg-sortbutton.hovered,\n.flat-dark .esg-sortbutton-order.hovered,\n.flat-dark .esg-cartbutton-order.hovered,\n.flat-dark .esg-filterbutton.selected,\n.flat-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.flat-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.flat-dark .esg-cartbutton.hovered,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	border-color: none;\n	color: #fff;\n	background: rgba(0, 0, 0, 0.5);\n}\n\n.flat-dark .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.flat-dark .esg-sortbutton-order.hovered .tp-desc {\n	color: #333;\n}\n\n.flat-dark .esg-filter-checked {\n	color: transparent;\n	background: rgba(0, 0, 0, 0.2);\n	margin-left: 7px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n.flat-dark .esg-filterbutton.selected .esg-filter-checked,\n.flat-dark .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: rgba(0, 0, 0, 0.2);\n}\n\n.flat-dark .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n.flat-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.flat-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.flat-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.flat-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.flat-dark .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:transparent;\n	padding:0px;\n}\n\n.flat-dark .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	background:rgba(0,0,0,0.5);\n}\n\n.flat-dark .esg-dropdown-wrapper .esg-filterbutton.selected,\n.flat-dark .esg-dropdown-wrapper .esg-filterbutton.hovered {\n	background:rgba(0,0,0,0.75);\n}\n\n\n.flat-dark .esg-dropdown-wrapper .esg-filterbutton .esg-filter-checked {\n	position: absolute;\n	left: 10px;\n	top: 50%;\n	transform: translateY(-50%);\n	width: 12px;\n	height: 12px;\n	text-align: center;\n	line-height: 12px\n}\n\n.flat-dark .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right:-10px;\n	font-size:12px;\n	color:#fff;\n}',NULL),(3,'Minimal Dark','minimal-dark','/**************************************\n	-	MINIMAL DARK V3.0.0 SKIN    -\n**************************************/\n\n.minimal-dark .navigationbuttons,\n.minimal-dark .esg-pagination,\n.minimal-dark .esg-filters {\n	text-align: center;\n}\n\n.minimal-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.minimal-dark input.eg-search-input,\n.minimal-dark .esg-filterbutton,\n.minimal-dark .esg-navigationbutton,\n.minimal-dark .esg-sortbutton,\n.minimal-dark .esg-cartbutton,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: rgba(255, 255, 255, 1);\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 17px;\n	border: 1px solid rgba(255, 255, 255, 0.1);\n	line-height: 38px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 600;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: transparent;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 38px;\n	vertical-align: middle;\n}\n\n.minimal-dark .esg-cartbutton a {\n	color:#fff;\n}\n\n.minimal-dark input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n	color:#fff;\n}\n\n.minimal-dark .esg-navigationbutton * {\n	color: rgba(255, 255, 255, 1);\n}\n\n.minimal-dark .esg-navigationbutton {\n	padding: 0px 11px;\n}\n\n.minimal-dark .esg-pagination-button {\n	padding: 0px 16px;\n}\n\n.minimal-dark .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.minimal-dark .esg-sortbutton-wrapper,\n.minimal-dark .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.minimal-dark .esg-sortbutton-order,\n.minimal-dark .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: 1px solid rgba(255, 255, 255, 0.1);\n	width: 40px;\n	line-height: 38px;\n	border-radius: 0px 5px 5px 0px;\n	font-size: 12px;\n	font-weight: 600;\n	color: #fff;\n	cursor: pointer;\n	background: transparent;\n}\n\n.minimal-dark .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n}\n\n.minimal-dark .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.minimal-dark .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.minimal-dark .esg-sortbutton,\n.minimal-dark .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-right: none;\n	border-radius: 5px 0px 0px 5px;\n}\n\n.minimal-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.minimal-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.minimal-dark .esg-navigationbutton.hovered,\n.minimal-dark .esg-filterbutton.hovered,\n.minimal-dark .esg-sortbutton.hovered,\n.minimal-dark .esg-sortbutton-order.hovered,\n.minimal-dark .esg-cartbutton-order.hovered,\n.minimal-dark .esg-filterbutton.selected,\n.minimal-dark .esg-cartbutton.hovered,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	border-color: rgba(255, 255, 255, 0.2);\n	color: #fff;\n	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);\n	background: rgba(255, 255, 255, 0.1);\n}\n\n.minimal-dark .esg-navigationbutton.hovered * {\n	color: #fff;\n}\n\n.minimal-dark .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	border-color: rgba(255, 255, 255, 0.2);\n	color: #fff;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.minimal-dark .esg-filter-checked {\n	color: transparent;\n	background: rgba(0, 0, 0, 0.10);\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n	margin-left:7px;\n}\n\n.minimal-dark .esg-filter-wrapper.dropdownstyle .esg-filter-checked {\n	margin-left:-22px;\n	margin-right:10px;\n	border:1px solid rgba(255,255,255,.2);\n}\n\n.minimal-dark .esg-filterbutton.selected .esg-filter-checked,\n.minimal-dark .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: rgba(0, 0, 0, 0.10);\n}\n\n/* */\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left:5px;\n	margin-right:0px;\n}\n\n.minimal-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.minimal-dark .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:rgba(0,0,0,0.95);\n	border-radius: 5px;\n}\n\n.minimal-dark .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	border:none;\n	box-shadow: none;\n	text-align: left;\n	color:rgba(255,255,255,0.5);\n	background:transparent;\n	line-height: 25px;\n	min-height: 25px;\n}\n\n.minimal-dark .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.minimal-dark .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color:#fff;\n}\n\n\n.minimal-dark .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	color:#fff;\n	font-size:12px;\n}',NULL),(4,'Minimal Light','minimal-light','/*************************************\n	-	MINIMAL LIGHT 3.0.0 SKIN	-\n*************************************/\n\n.minimal-light .navigationbuttons,\n.minimal-light .esg-pagination,\n.minimal-light .esg-filters {\n	text-align: center;\n}\n\n.minimal-light .esg-filter-wrapper.dropdownstyle >.esg-selected-filterbutton,\n.minimal-light input.eg-search-input,\n.minimal-light .esg-filterbutton,\n.minimal-light .esg-navigationbutton,\n.minimal-light .esg-sortbutton,\n.minimal-light .esg-cartbutton a,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #999;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 16px;\n	border: 1px solid #e5e5e5;\n	line-height: 38px;\n	border-radius: 5px;\n	font-size: 12px;\n	font-weight: 700;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: #fff;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 38px;\n	vertical-align: middle;\n}\n\n .minimal-light input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n}\n\n.minimal-light .esg-navigationbutton * {\n	color: #999;\n}\n\n.minimal-light .esg-navigationbutton {\n	padding: 0px 16px;\n}\n\n.minimal-light .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.minimal-light .esg-left,\n.minimal-light .esg-right {\n	padding: 0px 11px;\n}\n\n.minimal-light .esg-sortbutton-wrapper,\n.minimal-light .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.minimal-light .esg-sortbutton-order,\n.minimal-light .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: 1px solid #e5e5e5;\n	width: 40px;\n	line-height: 38px;\n	border-radius: 0px 5px 5px 0px;\n	font-size: 12px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: #fff;\n}\n\n.minimal-light .esg-cartbutton {\n	color: #333;\n	cursor: default !important;\n}\n\n.minimal-light .esg-cartbutton .esgicon-basket {\n	color: #333;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.minimal-light .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.minimal-light .esg-sortbutton,\n.minimal-light .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-right: none;\n	border-radius: 5px 0px 0px 5px;\n}\n\n.minimal-light input.eg-search-input.hovered,\n.minimal-light input.eg-search-input:focus,\n.minimal-light .esg-navigationbutton.hovered,\n.minimal-light .esg-filterbutton.hovered,\n.minimal-light .esg-sortbutton.hovered,\n.minimal-light .esg-sortbutton-order.hovered,\n.minimal-light .esg-cartbutton.hovered a,\n.minimal-light .esg-filter-wrapper.dropdownstyle >.esg-selected-filterbutton.hovered,\n.minimal-light .esg-filterbutton.selected,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);\n}\n\n.minimal-light .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.minimal-light .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.minimal-light .esg-filter-checked {\n	color: #cbcbcb;\n	background: #cbcbcb;\n	margin-left:10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n.minimal-light .esg-filter-wrapper.dropdownstyle .esg-filter-checked {\n	margin-left:-22px;\n	margin-right:10px;\n}\n\n.minimal-light .esg-filterbutton.selected .esg-filter-checked,\n.minimal-light .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.minimal-light .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n\n\n.minimal-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.minimal-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.minimal-light .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.minimal-light .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left:50%;\n	background:rgba(255,255,255,0.95);\n	border-radius: 5px;\n	border: 1px solid #e5e5e5;\n}\n\n.minimal-light .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	border:none;\n	box-shadow: none;\n	text-align: left;\n	color:#999;\n	background:transparent;\n	line-height: 25px;\n	min-height: 25px;\n}\n\n.minimal-light .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.minimal-light .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color:#333;\n}\n\n.minimal-light .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right:-10px;\n	font-size:12px;\n}\n\n.minimal-light .esg-selected-filterbutton.hovered .eg-icon-down-open {\n	color:#333;\n}',NULL),(5,'Simple Light','simple-light','/*************************************\n	-	SIMPLE LIGHT 3.0.0 SKIN   -\n*************************************/\n\n.simple-light .navigationbuttons,\n.simple-light .esg-pagination,\n.simple-light .esg-filters {\n	text-align: center;\n}\n\n.simple-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.simple-light input.eg-search-input,\n.simple-light .esg-filterbutton,\n.simple-light .esg-navigationbutton,\n.simple-light .esg-sortbutton,\n.simple-light .esg-cartbutton,\n.simple-light .esg-sortbutton-order,\n.simple-light .esg-cartbutton-order,\n.simple-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.simple-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 11px;\n	border: 1px solid #e5e5e5;\n	line-height: 30px;\n	font-size: 12px;\n	font-weight: 400;\n	font-family: \"Open Sans\",sans-serif;\n 	display: inline-block;\n	background: #eee;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 30px;\n	vertical-align: middle;\n}\n\n.simple-light .esg-cartbutton a {\n	color:#000;\n}\n\n.simple-light input.eg-search-input::placeholder {\n	line-height: 30px;\n	vertical-align: middle;\n	color:#000;\n}\n\n.simple-light .esg-navigationbutton * {\n	color: #000;\n}\n\n.simple-light .esg-left,\n.simple-light .esg-right {\n	color: #000;\n	padding: 0px 7px;\n}\n\n.simple-light .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.simple-light .esg-sortbutton-wrapper,\n.simple-light .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.simple-light .esg-sortbutton-order,\n.simple-light .esg-cartbutton-order {\n	padding: 0px;\n	width: 29px;\n	font-size: 9px;\n}\n\n.simple-light .esg-cartbutton {\n	color: #333;\n	cursor: default !important;\n}\n\n.simple-light .esg-cartbutton .esgicon-basket {\n	color: #333;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.simple-light .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.simple-light .esg-sortbutton,\n.simple-light .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 5px;\n}\n\n.simple-light input.eg-search-input.hovered,\n.simple-light input.eg-search-input:focus,\n.simple-light .esg-navigationbutton.hovered,\n.simple-light .esg-filterbutton.hovered,\n.simple-light .esg-sortbutton.hovered,\n.simple-light .esg-sortbutton-order.hovered,\n.simple-light .esg-cartbutton.hovered,\n.simple-light .esg-filterbutton.selected,\n.simple-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.simple-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.simple-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.simple-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);\n}\n\n.simple-light .esg-cartbutton.hovered a {\n	color:#000;\n}\n\n.simple-light .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.simple-light .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.simple-light .esg-filter-checked {\n	color: #c5c5c5;\n	background: #ddd;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	line-height: 20px;\n	vertical-align: middle;\n}\n\n.simple-light .esg-filterbutton.selected .esg-filter-checked,\n.simple-light .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.simple-light .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 30px;\n	white-space: nowrap;\n}\n\n.simple-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.simple-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.simple-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:29px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.simple-light .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border-radius:0px;\n}\n\n.simple-light .esg-dropdown-wrapper {\n	left: 0px;\n	background:#fff;\n}\n\n.simple-light .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n}\n\n.simple-light .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#000;\n}\n.simple-light .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.simple-light .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#333;\n}',NULL),(6,'Simple Dark','simple-dark','/*************************************\n	-	SIMPLE DARK 3.0.0 SKIN   -\n*************************************/\n\n.simple-dark .navigationbuttons,\n.simple-dark .esg-pagination,\n.simple-dark .esg-filters {\n	text-align: center;\n}\n\n.simple-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.simple-dark input.eg-search-input,\n.simple-dark .esg-filterbutton,\n.simple-dark .esg-navigationbutton,\n.simple-dark .esg-sortbutton,\n.simple-dark .esg-cartbutton,\n.simple-dark .esg-sortbutton-order,\n.simple-dark .esg-cartbutton-order,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #fff;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 10px;\n	border:1px solid rgba(255,255,255,0.15);\n	line-height: 29px;\n	font-size: 12px;\n	font-weight: 600;\n	font-family: \"Open Sans\",sans-serif;\n 	display: inline-block;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 29px;\n	background: rgba(255,255,255,0.08 );\n	vertical-align: middle;\n}\n\n.simple-dark .esg-cartbutton a {\n	color:#fff;\n}\n\n.simple-dark input.eg-search-input::placeholder {\n	line-height: 29px;\n	vertical-align: middle;\n	color:#fff;\n}\n\n\n\n.simple-dark .esg-navigationbutton * {\n	color: #fff;\n}\n\n.simple-dark .esg-left,\n.simple-dark .esg-right {\n	color: #fff;\n	padding: 0px 7px;\n}\n\n.simple-dark .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.simple-dark .esg-sortbutton-wrapper,\n.simple-dark .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.simple-dark .esg-sortbutton-order,\n.simple-dark .esg-cartbutton-order {\n	padding: 0px;\n	width: 29px;\n	font-size: 9px;\n}\n\n.simple-dark .esg-cartbutton {\n	color: #000;\n	cursor: default !important;\n}\n\n.simple-dark .esg-cartbutton .esgicon-basket {\n	color: #000;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.simple-dark .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.simple-dark .esg-sortbutton,\n.simple-dark .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 5px;\n}\n\n.simple-dark input.eg-search-input.hovered,\n.simple-dark input.eg-search-input:focus,\n.simple-dark .esg-navigationbutton.hovered,\n.simple-dark .esg-filterbutton.hovered,\n.simple-dark .esg-sortbutton.hovered,\n.simple-dark .esg-sortbutton-order.hovered,\n.simple-dark .esg-cartbutton.hovered,\n.simple-dark .esg-filterbutton.selected,\n.simple-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.simple-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	border-color: #fff;\n	color: #000;\n	box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);\n}\n\n.simple-dark .esg-cartbutton.hovered a,\n.simple-dark input.eg-search-input.hovered::placeholder {\n	color:#000;\n}\n\n.simple-dark .esg-navigationbutton.hovered * {\n	color: #000;\n}\n\n.simple-dark .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	color: #000;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.simple-dark .esg-filter-checked {\n	color: transparent;\n	background: rgba(255,255,255,0.15);\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	vertical-align: top;\n}\n\n.simple-dark .esg-filterbutton.selected .esg-filter-checked,\n.simple-dark .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n\n\n.simple-dark .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 29px;\n	white-space: nowrap;\n}\n\n.simple-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.simple-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.simple-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:29px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.simple-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n    border-radius:0px;\n}\n\n.simple-dark .esg-dropdown-wrapper {\n	left: 0px;\n	background:#fff;\n	border:1px solid rgba(255,255,255,0.15);\n}\n\n.simple-dark .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n	color:#777;\n}\n\n.simple-dark .esg-dropdown-wrapper .esg-filterbutton .esg-filter-checked {\n	border: 1px solid rgba(0,0,0,0.2);\n}\n\n.simple-dark .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.simple-dark .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color:#000;\n}\n\n.simple-dark .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#fff;\n}\n.simple-dark .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.simple-dark .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#000;\n}',NULL),(7,'Text Dark','text-dark','/*************************************\n	-	TEXT DARK 3.0.0 SKIN   -\n*************************************/\n\n.text-dark .navigationbuttons,\n.text-dark .esg-pagination,\n.text-dark .esg-filters {\n	text-align: center;\n}\n\n.text-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.text-dark input.eg-search-input,\n.text-dark .esg-filterbutton,\n.text-dark .esg-navigationbutton,\n.text-dark .esg-sortbutton,\n.text-dark .esg-cartbutton,\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	color: rgba(255, 255, 255, 0.4);\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 15px 0px 10px;\n	line-height: 20px;\n	font-size: 12px;\n	font-weight: 600;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: transparent;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 20px;\n	vertical-align: top;\n}\n\n.text-dark .esg-cartbutton a {\n	color: #fff;\n}\n\n.text-dark input.eg-search-input::placeholder {\n	line-height: 29px;\n	vertical-align: middle;\n	color: rgba(255, 255, 255, 0.4);\n}\n\n.text-dark .esg-navigationbutton * {\n	color: rgba(255, 255, 255, 0.4);\n}\n\n.text-dark .esg-sortbutton-wrapper,\n.text-dark .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.text-dark .esg-sortbutton-order,\n.text-dark .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	width: 29px;\n	line-height: 20px;\n	font-size: 9px;\n	font-weight: 700;\n	color: #fff;\n	color: rgba(255, 255, 255, 0.4);\n	cursor: pointer;\n	background: transparent;\n}\n\n.text-dark .esg-cartbutton {\n	color: rgba(255, 255, 255, 0.4);\n	cursor: default !important;\n}\n\n.text-dark .esg-cartbutton .esgicon-basket {\n	color: rgba(255, 255, 255, 0.4);\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.text-dark .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.text-dark .esg-sortbutton,\n.text-dark .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n}\n\n.text-dark input.eg-search-input.hovered,\n.text-dark input.eg-search-input:focus,\n.text-dark .esg-navigationbutton.hovered,\n.text-dark .esg-filterbutton.hovered,\n.text-dark .esg-sortbutton.hovered,\n.text-dark .esg-filterbutton.selected,\n.text-dark .esg-sortbutton-order.hovered,\n.text-dark .esg-cartbutton-order.hovered,\n.text-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.text-dark .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.text-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.text-dark .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #fff;\n}\n\n.text-dark .esg-navigationbutton.hovered,\n.text-dark .esg-filterbutton:hover span:first-child,\n.text-dark .esg-filterbutton.selected span:first-child {\n	text-decoration: none;\n}\n\n.text-dark .esg-filterbutton {\n	border-right: 1px solid #fff;\n	border-right: 1px solid rgba(255, 255, 255, 0.15);\n}\n\n.text-dark .esg-filterbutton:last-child {\n	border-right: none;\n}\n\n.text-dark .esg-sortbutton-order {\n	padding-left: 10px;\n	border-left: 1px solid #fff;\n	border-left: 1px solid rgba(255, 255, 255, 0.15);\n}\n\n.text-dark .esg-navigationbutton.hovered * {\n	color: #fff;\n}\n\n.text-dark .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	border-color: rgba(255, 255, 255, 0.15);\n	color: #fff;\n}\n\n.text-dark .esg-filter-checked {\n	color: transparent;\n	background: rgba(0, 0, 0, 0.10);\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n\n.text-dark .esg-filterbutton.selected .esg-filter-checked,\n.text-dark .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n}\n\n.text-dark .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 20px;\n	white-space: nowrap;\n}\n\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:20px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.text-dark .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border:none !important;\n	line-height: 20px;\n	height: 20px;\n}\n\n.text-dark .esg-dropdown-wrapper {\n	left: 0px;\n	background:rgba(0, 0, 0, 0.85);\n}\n\n.text-dark .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n	color: rgba(255, 255, 255, 0.4);\n}\n\n\n.text-dark .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.text-dark .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color: #fff;\n}\n\n.text-dark .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color: rgba(255, 255, 255, 0.4);\n}\n.text-dark .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.text-dark .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#fff;\n}',NULL),(8,'Text Light','text-light','/*************************************\n	-	TEXT LIGHT 3.0.0 SKIN   -\n*************************************/\n\n.text-light .navigationbuttons,\n.text-light .esg-pagination,\n.text-light .esg-filters {\n	text-align: center;\n}\n\n.text-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.text-light input.eg-search-input,\n.text-light .esg-filterbutton,\n.text-light .esg-navigationbutton,\n.text-light .esg-sortbutton,\n.text-light .esg-cartbutton,\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	color: #999;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 15px 0px 10px;\n	line-height: 20px;\n	font-size: 12px;\n	font-weight: 600;\n	font-family: \"Open Sans\", sans-serif;\n	display: inline-block;\n	background: transparent;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 20px;\n	vertical-align: top;\n}\n\n.text-light .esg-cartbutton a {\n	color: #999;\n}\n\n.text-light input.eg-search-input::placeholder {\n	line-height: 29px;\n	vertical-align: middle;\n	color: #999;\n}\n\n.text-light .esg-navigationbutton * {\n	color: #999;\n}\n\n.text-light .esg-sortbutton-wrapper,\n.text-light .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.text-light .esg-sortbutton-order,\n.text-light .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	width: 29px;\n	line-height: 20px;\n	font-size: 9px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: transparent;\n}\n\n.text-light .esg-cartbutton {\n	color: #999;\n	cursor: default !important;\n}\n\n.text-light .esg-cartbutton .esgicon-basket {\n	color: #999;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.text-light .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.text-light .esg-sortbutton,\n.text-light .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n}\n\n.text-light input.eg-search-input.hovered,\n.text-light input.eg-search-input:focus,\n.text-light .esg-navigationbutton.hovered,\n.text-light .esg-filterbutton.hovered,\n.text-light .esg-sortbutton.hovered,\n.text-light .esg-filterbutton.selected,\n.text-light .esg-sortbutton-order.hovered,\n.text-light .esg-cartbutton-order.hovered,\n.text-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.text-light .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.text-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.text-light .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #444;\n}\n\n.text-light .esg-cartbutton.hovered a,\n.text-light input.eg-search-input.hovered::placeholder {\n	color: #999;\n}\n\n.text-light .esg-navigationbutton.hovered,\n.text-light .esg-filterbutton:hover span:first-child,\n.text-light .esg-filterbutton.selected span:first-child {\n	text-decoration: none;\n}\n\n.text-light .esg-filterbutton {\n	border-right: 1px solid rgba(0, 0, 0, 0.15);\n}\n\n.text-light .esg-filterbutton:last-child {\n	border-right: none;\n}\n\n.text-light .esg-sortbutton-order {\n	padding-left: 10px;\n	border-left: 1px solid rgba(0, 0, 0, 0.15);\n}\n\n.text-light .esg-navigationbutton.hovered * {\n	color: #444;\n}\n\n.text-light .esg-sortbutton-order.hovered .tp-desc {\n	border-color: rgba(0, 0, 0, 0.15);\n	color: #444;\n}\n\n.text-light .esg-filter-checked {\n	color: transparent;\n	background: rgba(0, 0, 0, 0.10);\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n\n.text-light .esg-filterbutton.selected .esg-filter-checked,\n.text-light .esg-filterbutton.hovered .esg-filter-checked {\n	color: #444;\n}\n\n.text-light .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 20px;\n	white-space: nowrap;\n}\n\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:20px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.text-light .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border:none !important;\n	line-height: 20px;\n	height: 20px;\n}\n\n.text-light .esg-dropdown-wrapper {\n	left: 0px;\n	background:rgba(255, 255, 255, 0.85);\n}\n\n.text-light .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n	color: #999;\n}\n\n\n.text-light .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.text-light .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color: #444;\n}\n\n.text-light .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color: #999;\n}\n.text-light .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.text-light .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#444;\n}',NULL),(9,'Pat LaFontaine','pat-lafontaine','/*************************************\n	-	Pat LaFontaine 3.0.0 SKIN -\n*************************************/\n.pat-lafontaine .esg-overflowtrick {\n  margin: 20px 0\n}\n\n.pat-lafontaine .navigationbuttons,\n.pat-lafontaine .esg-pagination,\n.pat-lafontaine .esg-filters {\n	text-transform: uppercase;\n	text-align: center;\n}\n\n.pat-lafontaine .esg-filters {margin-bottom: 1px !important}\n\n.pat-lafontaine .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.pat-lafontaine input.eg-search-input,\n.pat-lafontaine .esg-filterbutton,\n.pat-lafontaine .esg-navigationbutton,\n.pat-lafontaine .esg-sortbutton,\n.pat-lafontaine .esg-cartbutton,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	margin-right: 1px;\n	cursor: pointer;\n	position: relative;\n	z-index: 2;\n	padding: 0px 20px;\n	border: none;\n	line-height: 50px;\n	border-radius: 0;\n	font-size: 14px;\n	font-weight: 400;\n	font-family: \"Barlow Condensed\", sans-serif;\n	display: inline-block;\n	background: #eaedf1;\n	margin-bottom: 0 !important;\n	white-space: nowrap;\n	min-height: 50px;\n	vertical-align: middle;\n  	transition: all 0.3s ease;\n  	min-width: 50px;\n}\n\n.pat-lafontaine .esg-filter-wrapper {\n  margin: 0 !important\n    }\n\n.pat-lafontaine .esg-allfilter {\n  background: #f03e3f !important;\n  color: #fff !important\n}\n\n.pat-lafontaine .esg-allfilter.hovered {\n  background: #000 !important;\n  color: #fff !important\n}\n\n.pat-lafontaine span.eg-el-amount {\n  letter-spacing: 1px\n}\n\n.pat-lafontaine span.eg-el-amount:before {\n  content: \"[\";\n  opacity: 0.5\n}\n\n.pat-lafontaine span.eg-el-amount:after {\n  content: \"]\";\n  opacity: 0.5\n}\n\n.pat-lafontaine .esg-cartbutton a {\n	color: #000;\n}\n\n.pat-lafontaine input.eg-search-input::placeholder {\n	line-height: 40px;\n	vertical-align: middle;\n	color:#999;\n}\n\n.pat-lafontaine .esg-navigationbutton {\n	padding: 0px;\n	min-width: 50px;\n}\n\n.pat-lafontaine .esg-navigationbutton.esg-loadmore {\n  padding: 0 20px;\n  text-transform: uppercase;\n}\n\n.pat-lafontaine .esg-navigationbutton * {\n	color: #000;\n}\n\n.pat-lafontaine .esg-navigationbutton.hovered i {\n  	color: #fff;\n}\n\n.pat-lafontaine .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.pat-lafontaine .esg-sortbutton-wrapper,\n.pat-lafontaine .esg-cartbutton-wrapper {\n	display: inline-block;\n  	margin-right: 1px !important;\n  	margin-left: 0 !important;\n}\n\n.pat-lafontaine .esg-sortbutton-order,\n.pat-lafontaine .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: middle;\n	border: none;\n	width: 50px;\n	line-height: 50px;\n	font-size: 12px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: #eaedf1;\n	margin-left: 1px;\n  	border-radius: 0;\n}\n\n.pat-lafontaine .esg-sortbutton-order.eg-icon-down-open:before {\n  	content: \"arrow_downward\";\n 	font-family: \"Material Icons\";\n  	font-size: 18px;\n  	color: #000;\n  	vertical-align: middle;\n}\n\n.pat-lafontaine .esg-sortbutton-order.hovered.eg-icon-down-open:before {\n  color: #fff\n}\n\n.pat-lafontaine .esg-cartbutton {\n	color: #999;\n	cursor: default !important;\n 	border-radius: 0 !important;\n  	padding: 0 20px 0 16px\n}\n\n.pat-lafontaine .esg-cartbutton.hovered .eg-icon-basket,\n.pat-lafontaine .esg-cartbutton.hovered .ess-cart-content {\n  color: #fff\n}\n\n.pat-lafontaine .esg-cartbutton .esgicon-basket {\n	color: #999;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.pat-lafontaine .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.pat-lafontaine .esg-sortbutton,\n.pat-lafontaine .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-radius: 5px;\n}\n\n.pat-lafontaine input.eg-search-input.hovered,\n.pat-lafontaine input.eg-search-input:focus,\n.pat-lafontaine .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.pat-lafontaine .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.pat-lafontaine .esg-navigationbutton.hovered,\n.pat-lafontaine .esg-filterbutton.hovered,\n.pat-lafontaine .esg-sortbutton.hovered,\n.pat-lafontaine .esg-sortbutton-order.hovered,\n.pat-lafontaine .esg-cartbutton-order.hovered,\n.pat-lafontaine .esg-filterbutton.selected,\n.pat-lafontaine .esg-cartbutton.hovered,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	border-color: none;\n	color: #fff;\n	background: #000;\n}\n\n.pat-lafontaine .esg-navigationbutton.hovered * {\n	color: #000;\n}\n\n.pat-lafontaine .esg-sortbutton-order.hovered.tp-desc {\n	color: #000;\n}\n\n.pat-lafontaine .esg-filter-checked {\n	color: #cbcbcb;\n	background: none;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 13px;\n	vertical-align: middle;\n  	display: inline-block;\n    transform: translateY(-1px);\n  	border: 1px solid #cbcbcb;\n}\n.pat-lafontaine .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.pat-lafontaine .esg-filterbutton.selected .esg-filter-checked {\n  background: #fff;\n  color: #000;\n  border: 1px solid #fff;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.pat-lafontaine .esg-sortbutton {\n  	border-radius: 0;\n  	padding-right: 40px\n}\n\n.pat-lafontaine .esg-sortbutton:after,\n.pat-lafontaine .esg-selected-filterbutton .eg-icon-down-open:before{\n  	content: \"\";\n  	position: absolute;\n  	width: 5px;\n  	height: 5px;\n  	border-left: 1px solid #000;\n  	border-bottom: 1px solid #000;\n  	transform: rotate(-45deg) translateY(-6px);\n  	right: 15px;\n  	top: 50%\n}\n\n.pat-lafontaine .esg-sortbutton.hovered:after {\n  	border-left: 1px solid #fff;\n  	border-bottom: 1px solid #fff;\n}\n\n.pat-lafontaine .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:transparent;\n	padding:0px;\n}\n\n.pat-lafontaine .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n  	width: 100%;\n}\n\n.pat-lafontaine .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 12px;\n	color:#999;\n}\n\n.pat-lafontaine .dropdownstyle .esg-filterbutton .esg-filter-checked {\n  margin-left: 0;\n  transform: translateY(-2px);\n}\n\n.pat-lafontaine .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open,\n.pat-lafontaine .esg-selected-filterbutton.hovered .eg-icon-down-open {\n	color:#000;\n}\n\n.pat-lafontaine .eg-search-wrapper {background: #3d3b3e}\n.pat-lafontaine .eg-search-wrapper .eg-search-input {\n  background: #3d3b3e;\n  font-style: italic;\n  border-bottom: 1px solid #868689;\n  line-height: 22px;\n  min-height: 22px;\n  padding: 0;\n  margin: 0 0 0 20px !important;\n}\n\n.pat-lafontaine .eg-search-wrapper .eg-search-input.hovered,\n.pat-lafontaine .eg-search-wrapper .eg-search-input:focus,\n.pat-lafontaine .eg-search-wrapper .eg-search-input:active,\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n  background-color: #3d3b3e !important;\n  color: #fff !important;\n}\n\n.pat-lafontaine .eg-search-wrapper .eg-search-input.hovered,\n.pat-lafontaine .eg-search-wrapper input:-webkit-autofill,\n.pat-lafontaine .eg-search-wrapper input:-webkit-autofill:hover,\n.pat-lafontaine .eg-search-wrapper input:-webkit-autofill:focus {\n  border-bottom: 1px solid #fff;\n  -webkit-text-fill-color: #fff;\n  -webkit-box-shadow: 0 0 0px 1000px #3d3b3e inset;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n  margin-left: 0;\n  width: 46px;\n}\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-submit.hovered {\n  background: #000;\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n  margin-left: 0;\n  width: 46px;\n  background: #000;\n  color: #fff\n}\n\n.pat-lafontaine .esg-filter-wrapper.eg-search-wrapper .eg-search-clean.hovered {\n  background: #f03e3f;\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,500;0,600;1,400&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(10,'Grant Fuhr','grant-fuhr','/*************************************\n	-	Grant Fuhr 3.0.0 SKIN -\n*************************************/\n.grant-fuhr .esg-filters {\n  margin-bottom: 20px !important;\n}\n\n.grant-fuhr .navigationbuttons,\n.grant-fuhr .esg-pagination,\n.grant-fuhr .esg-filters {\n	text-transform: uppercase;\n	text-align: center;\n}\n\n\n.grant-fuhr .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.grant-fuhr input.eg-search-input,\n.grant-fuhr .esg-filterbutton,\n.grant-fuhr .esg-navigationbutton,\n.grant-fuhr .esg-sortbutton,\n.grant-fuhr .esg-cartbutton,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #fff;\n	margin-right: 13px;\n	cursor: pointer;\n	position: relative;\n	z-index: 2;\n	padding: 0px 15px;\n	border: none;\n	line-height: 50px;\n	font-size: 12px;\n	font-weight: 400;\n	font-family: \"Open Sans\", sans-serif;\n  	font-style: italic;\n  	letter-spacing: 1px;\n	display: inline-block;\n	background: #2e2e34;\n	margin-bottom: 1px;\n	white-space: nowrap;\n	min-height: 50px;\n	vertical-align: top;\n  	border-radius: 0px !important;\n  	min-width: 42px;\n  	text-transform: none;\n}\n.grant-fuhr .esg-cartbutton-wrapper {\n  margin: 0 11px !important;\n}\n\n.grant-fuhr .esg-filterbutton.esg-allfilter {\n  	text-decoration: underline;\n}\n\n.grant-fuhr .esg-sortbutton-wrapper {\n  position: relative;\n  margin: 0 2px 0 8px !important;\n}\n\n.grant-fuhr .esg-sortbutton-wrapper .esg-sortbutton {\n  padding-right: 35px;\n}\n\n.grant-fuhr .esg-filterbutton:before,\n.grant-fuhr .eg-search-wrapper:before,\n.grant-fuhr .esg-cartbutton:before,\n.grant-fuhr .esg-sortbutton-wrapper .esg-sortbutton:before,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:before {\n  	width: 0;\n	height: 0;\n	border-style: solid;\n	border-width: 0 0 50px 12px;\n	border-color: transparent transparent #2e2e34 transparent;\n  	position: absolute;\n  	content:\"\";\n  	top: 0;\n  	left: -12px\n}\n\n.grant-fuhr .esg-sortbutton-wrapper .esg-sortbutton.hovered:before {\n  border-color: transparent transparent #fff157 transparent;\n}\n\n.grant-fuhr .esg-filterbutton:after,\n.grant-fuhr .eg-search-wrapper .eg-search-clean:after,\n.grant-fuhr .esg-cartbutton:after,\n.grant-fuhr .esg-sortbutton-order:after,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:after {\n  	width: 0;\n	height: 0;\n	border-style: solid;\n	border-width: 50px 12px 0 0;\n	border-color: #2e2e34 transparent transparent transparent;\n  	position: absolute;\n  	content:\"\";\n  	top: 0;\n  	right: -12px\n}\n\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:after {\n  right: 1px\n}\n\n.grant-fuhr .esg-filterbutton.hovered:before,\n.grant-fuhr .esg-filterbutton.selected:before,\n.grant-fuhr .esg-cartbutton.hovered:before,\n.grant-fuhr .esg-sortbutton-wrapper.hovered:before,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:hover:before {\n  border-color: transparent transparent #fff157 transparent;\n}\n\n.grant-fuhr .esg-filterbutton.hovered:after,\n.grant-fuhr .esg-filterbutton.selected:after,\n.grant-fuhr .esg-cartbutton.hovered:after,\n.grant-fuhr .esg-sortbutton-wrapper.hovered:after,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:hover:after {\n  border-color: #fff157 transparent transparent transparent;\n}\n\n.esg-sortbutton-order.tp-desc {\n  transform: none;\n}\n\n.esg-sortbutton-order.tp-desc:before {\n  transform: scaleY(-1);\n}\n\n.grant-fuhr .esg-filterbutton .eg-el-amount {\n  position: absolute;\n  line-height: 27px;\n  min-width: 27px;\n  border-radius: 50%;\n  background: #fff157;\n  color: #000;\n  top: -13px;\n  right: -5px;\n  text-align: center;\n  z-index: 2;\n  font-style: normal;\n  font-weight: 600;\n\n}\n\n.grant-fuhr .esg-filterbutton .eg-el-amount:before,\n.grant-fuhr .esg-filterbutton .eg-el-amount:after {\n  display: none\n}\n\n.grant-fuhr .esg-filterbutton.selected .eg-el-amount {\n  background: #2e2e34;\n  color: #fff;\n}\n\n.grant-fuhr .esg-cartbutton a {\n	color: #fff;\n}\n\n.grant-fuhr .esg-cartbutton.hovered a {\n  color: #000;\n}\n\n.grant-fuhr .eg-search-wrapper {\n  position: relative\n}\n\n.grant-fuhr .eg-search-wrapper:before {\n  border-color: transparent transparent #fff157 transparent;\n}\n\n.grant-fuhr input.eg-search-input {\n  background: #fff157;\n  outline-style: none;\n  margin-bottom: 0 !important;\n}\n\n.grant-fuhr input.eg-search-input::placeholder {\n	line-height: 40px;\n	vertical-align: middle;\n	color:#000;\n}\n\n.grant-fuhr input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n  margin-left: 0 !important;\n  min-width: 50px;\n  background: #fff157;\n  color: #000;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-submit.hovered {\n  background: #2e2e34 !important;\n  color: #fff157 !important;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n  margin-left: 0 !important;\n  min-width: 50px;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-clean.hovered:after {\n	border-color: #fff157 transparent transparent transparent;\n}\n\n.grant-fuhr .esg-sortbutton-order.eg-icon-down-open:before {\n  	content: \"arrow_downward\";\n 	font-family: \"Material Icons\";\n  	font-size: 18px;\n  	color: #000;\n  	vertical-align: middle;\n}\n\n.grant-fuhr .esg-sortbutton-order.hovered.eg-icon-down-open:before {\n  color: #fff\n}\n\n.grant-fuhr .esg-navigationbutton {\n	padding: 0px;\n	width:40px;\n}\n\n.grant-fuhr .esg-navigationbutton.esg-loadmore {\n  	width: auto;\n  	padding: 0 20px\n}\n\n.grant-fuhr .esg-navigationbutton * {\n	color: #999;\n}\n\n.grant-fuhr .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.grant-fuhr .esg-navigationbutton.selected,\n.grant-fuhr .esg-navigationbutton.hovered {\n  color: #000 !important;\n}\n\n.grant-fuhr .esg-navigationbutton.esg-right,\n.grant-fuhr .esg-navigationbutton.esg-left {\n  width: 50px;\n}\n\n.grant-fuhr .esg-navigationbutton.esg-right i,\n.grant-fuhr .esg-navigationbutton.esg-left i {\n  color: #fff;\n}\n\n.grant-fuhr .esg-navigationbutton.esg-right.hovered i,\n.grant-fuhr .esg-navigationbutton.esg-left.hovered i {\n  color: #000;\n}\n\n.grant-fuhr .esg-sortbutton-wrapper,\n.grant-fuhr .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.grant-fuhr .esg-sortbutton-order,\n.grant-fuhr .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	border: none;\n	width: 50px;\n	line-height: 40px;\n	border-radius: 0;\n	font-size: 12px;\n	font-weight: 700;\n	color: #999;\n	cursor: pointer;\n	background: #fff157;\n	margin-left: 0;\n  	line-height: 50px;\n}\n\n.grant-fuhr .esg-sortbutton-order.hovered,\n.grant-fuhr .esg-cartbutton-order.hovered {\n  	color: #fff157 !important;\n  	background: #2e2e34 !important;\n}\n\n.grant-fuhr .esg-sortbutton-order:after {\n	border-color: #fff157 transparent transparent transparent;\n}\n\n.grant-fuhr .esg-sortbutton-order.hovered:after {\n  border-color: #2e2e34 transparent transparent transparent;\n}\n\n.grant-fuhr .esg-cartbutton {\n	color: #999;\n	cursor: default !important;\n}\n\n.grant-fuhr .esg-cartbutton .esgicon-basket {\n	color: #999;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.grant-fuhr .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.grant-fuhr .esg-sortbutton,\n.grant-fuhr .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0px;\n	border-radius: 5px;\n}\n\n.grant-fuhr input.eg-search-input.hovered,\n.grant-fuhr input.eg-search-input:focus,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.grant-fuhr .esg-navigationbutton.hovered,\n.grant-fuhr .esg-filterbutton.hovered,\n.grant-fuhr .esg-sortbutton.hovered,\n.grant-fuhr .esg-sortbutton-order.hovered,\n.grant-fuhr .esg-cartbutton-order.hovered,\n.grant-fuhr .esg-filterbutton.selected,\n.grant-fuhr .esg-cartbutton.hovered,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	border-color: none;\n	color: #000;\n	background: #fff157;\n}\n\n.grant-fuhr .esg-navigationbutton.hovered * {\n	color: #000;\n}\n\n.grant-fuhr .esg-sortbutton-order.hovered.tp-desc {\n	color: #000;\n}\n\n.grant-fuhr .esg-allfilter.esg-allfilter {\n}\n\n.grant-fuhr .esg-filter-checked {\n	color: #cbcbcb;\n	background: #cbcbcb;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 300;\n	line-height: 9px;\n	vertical-align: middle;\n}\n\n.grant-fuhr .esg-filterbutton.selected .esg-filter-checked,\n.grant-fuhr .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.grant-fuhr .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.grant-fuhr .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background:transparent;\n	padding:0px;\n}\n\n.grant-fuhr .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative\n}\n\n.grant-fuhr .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 12px;\n	color:#999;\n}\n.grant-fuhr .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open,\n.grant-fuhr .esg-selected-filterbutton.hovered .eg-icon-down-open {\n	color:#000;\n}\n\n.grant-fuhr .esg-sortbutton:after,\n.grant-fuhr .esg-selected-filterbutton .eg-icon-down-open:before {\n  	content: \"\";\n  	position: absolute;\n  	width: 5px;\n  	height: 5px;\n  	border-left: 1px solid #fff157;\n  	border-bottom: 1px solid #fff157;\n  	transform: rotate(-45deg) translateY(-6px);\n  	right: 15px;\n  	top: 50%\n}\n\n.grant-fuhr .esg-sortbutton.hovered:after,\n.grant-fuhr .esg-selected-filterbutton.hovered .eg-icon-down-open:before,\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:hover .esg-selected-filterbutton .eg-icon-down-open:before {\n  	border-left: 1px solid #000;\n  	border-bottom: 1px solid #000;\n}\n\n.grant-fuhr .esg-dropdown-wrapper .esg-filterbutton {\n  width: 100%;\n  margin: 0;\n}\n\n.grant-fuhr .esg-dropdown-wrapper .esg-filterbutton:before,\n.grant-fuhr .esg-dropdown-wrapper .esg-filterbutton:after {\n  display: none;\n}\n\n.grant-fuhr .esg-filter-wrapper.dropdownstyle:hover .esg-selected-filterbutton {\n  background: #fff157;\n  color: #000;\n}\n\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(11,'Leon Draisaitl','leon-draisaitl','/*************************************\n	-	LEON DRAISAITL 3.0.0 SKIN   -\n*************************************/\n.leon-draisaitl .esg-overflowtrick {\n  margin: 20px 0;\n}\n\n.leon-draisaitl .navigationbuttons,\n.leon-draisaitl .esg-pagination,\n.leon-draisaitl .esg-filters {\n	text-align: center;\n}\n\n.leon-draisaitl .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.leon-draisaitl input.eg-search-input,\n.leon-draisaitl .esg-filterbutton,\n.leon-draisaitl .esg-navigationbutton,\n.leon-draisaitl .esg-sortbutton,\n.leon-draisaitl .esg-cartbutton,\n.leon-draisaitl .esg-sortbutton-order,\n.leon-draisaitl .esg-cartbutton-order,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	cursor: pointer;\n	padding: 0px 20px;\n	border: 2px solid #000;\n	line-height: 50px;\n	font-size: 16px;\n	font-weight: 500;\n	font-family: \"Roboto Mono\", monospace;\n 	display: inline-block;\n	background: transparent;\n	margin: -2px -2px 0 0 !important;\n	white-space: nowrap;\n	min-height: 50px;\n	vertical-align: middle;\n  	min-width: 54px;\n  	box-shadow: inset 0px 0px 0px 0px #000;\n  	transition: all 0.4s ease;\n}\n\n.leon-draisaitl .esg-sortbutton-wrapper,\n.leon-draisaitl .esg-filter-wrapper,\n.leon-draisaitl .esg-cartbutton-wrapper {\n  margin: 0 !important;\n}\n\n.leon-draisaitl .esg-cartbutton a {\n	color:#000;\n}\n\n.leon-draisaitl input.eg-search-input::placeholder {\n	line-height: 30px;\n	vertical-align: middle;\n	color:#000;\n}\n\n.leon-draisaitl input.eg-search-input.hovered::placeholder {\n  color: #fff;\n}\n\n.leon-draisaitl .esg-navigationbutton * {\n	color: #000;\n}\n\n.leon-draisaitl .esg-left,\n.leon-draisaitl .esg-right {\n	color: #000;\n	padding: 0px 7px;\n}\n\n.leon-draisaitl .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.leon-draisaitl .esg-sortbutton-wrapper,\n.leon-draisaitl .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.leon-draisaitl .esg-sortbutton-order,\n.leon-draisaitl .esg-cartbutton-order {\n	padding: 0px;\n	width: 29px;\n	font-size: 9px;\n}\n\n.leon-draisaitl .esg-cartbutton {\n	color: #333;\n	cursor: default !important;\n}\n\n.leon-draisaitl .esg-cartbutton.hovered *,\n.leon-draisaitl .esg-navigationbutton.hovered * {\n  color: #fff !important;\n}\n\n.leon-draisaitl .esg-cartbutton .esgicon-basket {\n	color: #333;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.leon-draisaitl .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.leon-draisaitl .esg-sortbutton,\n.leon-draisaitl .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 5px;\n}\n\n.leon-draisaitl input.eg-search-input.hovered,\n.leon-draisaitl input.eg-search-input:focus,\n.leon-draisaitl .esg-navigationbutton.hovered,\n.leon-draisaitl .esg-filterbutton.hovered,\n.leon-draisaitl .esg-sortbutton.hovered,\n.leon-draisaitl .esg-sortbutton-order.hovered,\n.leon-draisaitl .esg-cartbutton.hovered,\n.leon-draisaitl .esg-filterbutton.selected,\n.leon-draisaitl .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.leon-draisaitl .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	border-color: #000;\n	color: #fff;\n	box-shadow: inset 0px 0px 0px 50px #000;\n}\n\n.leon-draisaitl .esg-cartbutton.hovered a {\n	color:#000;\n}\n\n.leon-draisaitl .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.leon-draisaitl .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.leon-draisaitl .esg-filter-checked {\n	color: #aaa;\n  	border: 2px solid #000;\n	background: transparent;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	line-height: 14px;\n	vertical-align: middle;\n  	text-align: center;\n  	min-width: 18px;\n  	display: inline-block;\n}\n\n.leon-draisaitl .esg-filterbutton.selected .esg-filter-checked,\n.leon-draisaitl .esg-filterbutton.hovered .esg-filter-checked {\n	color: #000;\n	background: #fff;\n}\n\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 30px;\n	white-space: nowrap;\n}\n\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:29px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.leon-draisaitl .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border-radius:0px;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper {\n	left: 0px;\n	background: #fff;\n  	border: 2px solid #000;\n  	margin-top: -2px;\n  	padding: 0;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding: 5px 20px;\n	border:none;\n	box-shadow: none;\n  	box-sizing: border-box;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton.esg-allfilter {\n  width: 100%;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton.selected,\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton.hovered {\n  background: #000;\n}\n\n.leon-draisaitl .esg-dropdown-wrapper .esg-filterbutton .esg-filter-checked {\n  margin: 0 10px 0 -2px;\n}\n\n.leon-draisaitl .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#000;\n}\n.leon-draisaitl .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.leon-draisaitl .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open {\n	color: #fff;\n}\n\n.leon-draisaitl .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n',NULL),(12,'Uwe Krupp','uwe-krupp','/*************************************\n	-	UWE KRUPP 3.0.0 SKIN   -\n*************************************/\n.uwe-krupp .esg-overflowtrick {\n  margin: 50px 0;\n}\n\n.uwe-krupp .navigationbuttons,\n.uwe-krupp .esg-pagination,\n.uwe-krupp .esg-filters {\n	text-align: center;\n}\n\n.uwe-krupp .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.uwe-krupp input.eg-search-input,\n.uwe-krupp .esg-filterbutton,\n.uwe-krupp .esg-navigationbutton,\n.uwe-krupp .esg-sortbutton,\n.uwe-krupp .esg-cartbutton,\n.uwe-krupp .esg-sortbutton-order,\n.uwe-krupp .esg-cartbutton-order,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #6a666b;\n  	letter-spacing: 1px;\n	margin-right: 5px;\n	cursor: pointer;\n	padding: 0px 15px;\n	line-height: 40px;\n	font-size: 13px;\n	font-weight: 400;\n	font-family: \"Arvo\", serif;\n 	display: inline-block;\n	background: rgba(255, 255, 255, 0.65);\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 40px;\n	vertical-align: middle;\n  	min-width: 40px;\n  	border-radius: 12px;\n}\n\n.uwe-krupp .esg-cartbutton a {\n	color:#000;\n}\n\n.uwe-krupp input.eg-search-input::placeholder {\n	line-height: 30px;\n	vertical-align: middle;\n	color: #6a666b;\n}\n\n.uwe-krupp input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.uwe-krupp .esg-navigationbutton.esg-right,\n.uwe-krupp .esg-navigationbutton.esg-left {\n  background: #b0a5b4;\n}\n\n.uwe-krupp .esg-navigationbutton.esg-left {\n  border-radius: 0 12px 12px 0px;\n}\n\n.uwe-krupp .esg-navigationbutton.esg-right {\n  border-radius: 12px 0px 0px 12px;\n}\n\n.uwe-krupp .esg-navigationbutton * {\n	color: #000;\n}\n\n.uwe-krupp .esg-left,\n.uwe-krupp .esg-right {\n	color: #000;\n	padding: 0px 7px;\n}\n\n.uwe-krupp .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.uwe-krupp .esg-sortbutton-wrapper,\n.uwe-krupp .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.uwe-krupp .esg-sortbutton-order,\n.uwe-krupp .esg-cartbutton-order {\n	padding: 0px;\n	width: 29px;\n	font-size: 9px;\n}\n\n.uwe-krupp .esg-cartbutton {\n	color: #757176;\n	cursor: default !important;\n}\n\n.uwe-krupp .esg-cartbutton .esgicon-basket {\n	color: #757176;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.uwe-krupp .esg-cartbutton .ess-cart-content {\n  color: #757176;\n}\n\n.uwe-krupp .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.uwe-krupp .esg-sortbutton,\n.uwe-krupp .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 5px;\n}\n\n.uwe-krupp input.eg-search-input.hovered,\n.uwe-krupp input.eg-search-input:focus,\n.uwe-krupp .esg-navigationbutton.hovered,\n.uwe-krupp .esg-filterbutton.hovered,\n.uwe-krupp .esg-sortbutton.hovered,\n.uwe-krupp .esg-sortbutton-order.hovered,\n.uwe-krupp .esg-cartbutton.hovered,\n.uwe-krupp .esg-filterbutton.selected,\n.uwe-krupp .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.uwe-krupp .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	background-color: #fff;\n	color: #333;\n}\n\n.uwe-krupp .esg-cartbutton.hovered a {\n	color:#000;\n}\n\n.uwe-krupp .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.uwe-krupp .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.uwe-krupp .esg-filter-checked {\n	color: #b0a5b4;\n	background: transparent;\n  	border: 1px solid #b0a5b4;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	line-height: 12px;\n 	min-width: 12px;\n	vertical-align: middle;\n  	display: inline-block;\n  	transform: translateY(-1px);\n}\n\n.uwe-krupp .esg-filterbutton.selected .esg-filter-checked,\n.uwe-krupp .esg-filterbutton.hovered .esg-filter-checked {\n	color: #fff;\n	background: #000;\n  	border: 1px solid #000;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 30px;\n	white-space: nowrap;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 5px;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:29px;\n	padding:0px;\n	margin-left: 5px;\n	margin-right:0px;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n	border-radius: 12px 0px 0px 12px;\n  	border: none;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n  border-radius: 0px 12px 12px 0px;\n  margin-left: 0;\n}\n\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-submit.hovered,\n.uwe-krupp .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n  background: #b0a5b4;\n  color: #fff;\n}\n\n.uwe-krupp .esg-dropdown-wrapper {\n	left: 0px;\n	background:#fff;\n}\n\n.uwe-krupp .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background:transparent;\n	padding:0px;\n	border:none;\n	box-shadow: none;\n}\n\n.uwe-krupp .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#000;\n}\n.uwe-krupp .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.uwe-krupp .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#333;\n}\n\n.uwe-krupp .esg-sortbutton-order.eg-icon-down-open {\n  background: #b0a5b4;\n  color: #fff;\n}\n\n.uwe-krupp .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(13,'Clark Gillies','clark-gillies','/*************************************\n	-	CLARK GILLIES 3.0.0 SKIN   -\n*************************************/\n.clark-gillies .navigationbuttons,\n.clark-gillies .esg-pagination,\n.clark-gillies .esg-filters {\n	text-align: center;\n}\n\n.clark-gillies .esg-filters {\n  margin-bottom: 20px !important;\n}\n\n.clark-gillies .esg-filter-wrapper {\n  margin: 0 !important;\n}\n\n.clark-gillies .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.clark-gillies input.eg-search-input,\n.clark-gillies .esg-filterbutton,\n.clark-gillies .esg-navigationbutton,\n.clark-gillies .esg-sortbutton,\n.clark-gillies .esg-cartbutton,\n.clark-gillies .esg-sortbutton-order,\n.clark-gillies .esg-cartbutton-order,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	margin: 0 10px 0 0 !important;\n	cursor: pointer;\n	padding: 0px 10px;\n  	border: none;\n	line-height: 28px;\n	font-size: 13px;\n	font-weight: 400;\n	font-family: \"Arvo\", serif;\n 	display: inline-block;\n	background: transparent;\n	white-space: nowrap;\n	min-height: 28px;\n	vertical-align: middle;\n  	letter-spacing: -0.5px;\n  	min-width: 24px;\n  	position: relative;\n  	transition: all 0.3s ease;\n}\n\n.clark-gillies .esg-filterbutton:before,\n.clark-gillies .esg-selected-filterbutton:before,\n.clark-gillies .esg-sortbutton:before {\n  content: \"\";\n  position: absolute;\n  z-index: -1;\n  height: 2px;\n  width: calc(100% - 20px);\n  left: 10px;\n  bottom: 0;\n  background: #000;\n  transition: all 0.3s ease;\n}\n\n.clark-gillies .esg-filterbutton.hovered:before,\n.clark-gillies .esg-filterbutton.selected:before,\n.clark-gillies .esg-filter-wrapper:hover .esg-selected-filterbutton:before,\n.clark-gillies .esg-sortbutton.hovered:before{\n  width: 100%;\n  height: 100%;\n  left: 0;\n}\n\n.clark-gillies .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open {\n  color: #fff !important;\n}\n\n.clark-gillies .esg-cartbutton a {\n	color:#fff;\n}\n\n.clark-gillies input.eg-search-input::placeholder {\n	line-height: 30px;\n	vertical-align: middle;\n	color:#000;\n}\n\n.clark-gillies input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.clark-gillies .esg-navigationbutton {\n  min-width: 28px;\n}\n\n.clark-gillies .esg-navigationbutton * {\n	color: #fff;\n}\n\n.clark-gillies .esg-left,\n.clark-gillies .esg-right,\n.clark-gillies .esg-loadmore {\n	color: #fff;\n	padding: 2px 7px;\n  	transition: all 0.3s ease;\n  	box-shadow: inset 0 0 0 20px #000;\n}\n.clark-gillies .esg-left.hovered,\n.clark-gillies .esg-right.hovered,\n.clark-gillies .esg-loadmore.hovered {\n  color: #000 !important;\n  box-shadow: inset 0 0 0 2px #000;\n}\n\n.clark-gillies .esg-loadmore {\n  padding: 0 10px;\n}\n\n.clark-gillies .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.clark-gillies .esg-sortbutton-wrapper,\n.clark-gillies .esg-cartbutton-wrapper {\n	display: inline-block;\n	vertical-align: top;\n}\n\n.clark-gillies .esg-sortbutton-order,\n.clark-gillies .esg-cartbutton-order,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n	padding: 0px;\n	min-width: 30px;\n	font-size: 9px;\n  	transition: all 0.3s ease;\n  	box-shadow: inset 0 0 0 2px #000;\n  	margin-right: 20px !important;\n}\n\n.clark-gillies .esg-sortbutton-order.hovered,\n.clark-gillies .esg-cartbutton-order.hovered,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-clean.hovered {\n  	box-shadow: inset 0 0 0 20px #000\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-clean {\n  font-size: 12px;\n  line-height: 28px !important;\n}\n\n.clark-gillies .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n\n.clark-gillies .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n  	transition: all 0.3s ease;\n  	box-shadow: inset 0 0 0 20px #000;\n}\n\n.clark-gillies .esg-cartbutton.hovered {\n  	box-shadow: inset 0 0 0 2px #000;\n}\n\n.clark-gillies .esg-cartbutton .ess-cart-content {\n  	color: #fff;\n}\n\n.clark-gillies .esg-cartbutton.hovered .ess-cart-content {\n  	color: #000;\n}\n\n.clark-gillies .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.clark-gillies .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.clark-gillies .esg-sortbutton,\n.clark-gillies .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n	margin-right: 0 !important;\n}\n\n.clark-gillies input.eg-search-input.hovered,\n.clark-gillies input.eg-search-input:focus,\n.clark-gillies .esg-navigationbutton.hovered,\n.clark-gillies .esg-filterbutton.hovered,\n.clark-gillies .esg-sortbutton.hovered,\n.clark-gillies .esg-sortbutton-order.hovered,\n.clark-gillies .esg-cartbutton.hovered,\n.clark-gillies .esg-filterbutton.selected,\n.clark-gillies .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.clark-gillies .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #fff;\n}\n\n.clark-gillies .esg-cartbutton.hovered a {\n	color:#000;\n}\n\n.clark-gillies .esg-navigationbutton.hovered * {\n	color: #333;\n}\n\n.clark-gillies .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #bbb;\n	color: #333;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.clark-gillies .esg-filter-checked {\n	color: #000;\n	margin-left: 10px;\n	font-size: 9px;\n	font-weight: 400;\n	line-height: 20px;\n	vertical-align: middle;\n  	border: 1px solid #000;\n  	background: transparent;\n  	padding: 1px 0;\n}\n\n.clark-gillies .esg-filterbutton.selected .esg-filter-checked,\n.clark-gillies .esg-filterbutton.hovered .esg-filter-checked,\n.clark-gillies .esg-dropdown-wrapper .esg-filter-checked {\n	color: #000;\n	background: #fff;\n}\n\n.clark-gillies .esg-dropdown-wrapper .esg-filter-checked {\n  margin-left: 0;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper {\n	line-height: 22px;\n	white-space: nowrap;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	margin-left: 0;\n  	border-bottom: 2px solid #000;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width: 29px;\n	padding: 0px;\n	margin-left: 0px;\n	margin-right: 0px;\n  	min-height: 26px;\n  	line-height: 26px;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width: auto;\n	border-radius: 0px;\n  	border-bottom: 2px solid #000;\n  	margin: 0 !important;\n  	padding: 2px 0;\n  	min-height: 22px;\n  	line-height: 22px;\n  	font-size: 13px;\n}\n\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-input:focus,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-input:active,\n.clark-gillies .esg-filter-wrapper.eg-search-wrapper .eg-search-input.hovered {\n  color: #000;\n}\n\n.clark-gillies .esg-dropdown-wrapper {\n	left: 0px;\n	background: #000;\n 	width: 100%;\n}\n\n.clark-gillies .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	text-align: left;\n	background: transparent;\n	padding: 0px;\n	border: none;\n	box-shadow: none;\n  	color: #fff;\n}\n\n.clark-gillies .esg-dropdown-wrapper .esg-filterbutton.hovered {\n  opacity: 0.6;\n}\n\n.clark-gillies .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	font-size: 9px;\n	color:#000;\n}\n.clark-gillies .esg-selected-filterbutton.hovered .eg-icon-down-open,\n.clark-gillies .esg-selected-filterbutton.hoveredfilter .eg-icon-down-open{\n	color:#333;\n}\n\n.clark-gillies .esg-filterbutton .eg-el-amount:before,\n.clark-gillies .esg-filterbutton .eg-el-amount:after {\n  content: \"\";\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(14,'Rod Langway','rod-langway','/*************************************\n	-	ROD LANGWAY 3.0.0 SKIN	-\n*************************************/\n.rod-langway .esg-overflowtrick {\n  margin: 20px 0;\n}\n\n.rod-langway .navigationbuttons,\n.rod-langway .esg-pagination,\n.rod-langway .esg-filters {\n	text-align: center;\n}\n\n.rod-langway .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.rod-langway input.eg-search-input,\n.rod-langway .esg-filterbutton,\n.rod-langway .esg-navigationbutton,\n.rod-langway .esg-sortbutton,\n.rod-langway .esg-cartbutton,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: #000;\n	margin-right: 0;\n	cursor: pointer;\n	padding: 4px 17px 0;\n	border: none;\n  	box-sizing: border-box;\n	line-height: 35px;\n	font-size: 10px;\n  	text-transform: uppercase;\n  	letter-spacing: 3px;\n	font-weight: 700;\n	font-family: \"Josefin Sans\", sans-serif;\n	display: inline-block;\n	background: #fff;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 40px;\n	vertical-align: middle;\n  	border-radius: 0;\n}\n.rod-langway  .esg-filterbutton .eg-el-amount {\n  background: #ced3d7;\n  display: inline-block;\n  line-height: 24px;\n  min-width: 26px;\n  padding-top: 2px;\n  text-align: center;\n  font-weight: 500;\n  font-size: 12px;\n  letter-spacing: 0;\n}\n\n.rod-langway  .esg-filterbutton.hovered .eg-el-amount,\n.rod-langway  .esg-filterbutton.selected .eg-el-amount {\n  background: #2f2f3a;\n  color: #fff;\n}\n\n.rod-langway .esg-filterbutton .eg-el-amount:before,\n.rod-langway .esg-filterbutton .eg-el-amount:after {\n  content: \"\";\n}\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n  margin-left: 0 !important;\n  font-size: 14px;\n  letter-spacing: 0;\n  line-height: 40px;\n}\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.rod-langway .esg-cartbutton {\n  background: #ced3d7;\n}\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.rod-langway .esg-cartbutton.hovered {\n  background: #b0b5b9 !important;\n}\n\n.rod-langway .esg-cartbutton a {\n	color: #000;\n}\n\n.rod-langway .esg-cartbutton a:hover {\n	color: #000;\n}\n\n.rod-langway input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n	color: #b0b5b9;\n}\n\n.rod-langway input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.rod-langway .esg-navigationbutton {\n  line-height: 40px;\n  min-width: 40px;\n  letter-spacing: 0;\n  font-size: 14px;\n  font-weight: 400;\n}\n\n.rod-langway .esg-navigationbutton.esg-left {\n  transform: translateX(-40px)\n}\n\n.rod-langway .esg-navigationbutton.esg-right {\n  transform: translateX(40px)\n}\n\n.rod-langway .esg-navigationbutton * {\n	color: #000;\n\n}\n\n.rod-langway .esg-navigationbutton.hovered i {\n	color: #000;\n}\n\n.rod-langway .esg-navigationbutton {\n	padding: 0px 11px;\n}\n\n.rod-langway .esg-pagination-button {\n	padding: 0px 16px;\n}\n\n.rod-langway .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.rod-langway .esg-sortbutton-wrapper,\n.rod-langway .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.rod-langway .esg-sortbutton-order,\n.rod-langway .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	width: 40px;\n	line-height: 40px;\n	border-radius: 0;\n  	border: none;\n	font-size: 12px;\n	font-weight: 600;\n	color: #000;\n	cursor: pointer;\n  	background: #ced3d7;\n}\n\n.rod-langway .esg-sortbutton-order.hovered,\n.rod-langway .esg-cartbutton-order.hovered {\n  background: #b0b5b9 !important;\n}\n\n.rod-langway .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n}\n\n.rod-langway .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.rod-langway .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.rod-langway .esg-sortbutton,\n.rod-langway .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n}\n\n.rod-langway .esg-sortbutton{\n	margin-right: 0px;\n	border-right: none;\n	border-radius: 0;\n}\n\n.rod-langway .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.rod-langway .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.rod-langway .esg-navigationbutton.hovered,\n.rod-langway .esg-filterbutton.hovered,\n.rod-langway .esg-sortbutton.hovered,\n.rod-langway .esg-sortbutton-order.hovered,\n.rod-langway .esg-cartbutton-order.hovered,\n.rod-langway .esg-filterbutton.selected,\n.rod-langway .esg-cartbutton.hovered,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #000;\n	box-shadow: none;\n	background: #ced3d7;\n}\n\n.rod-langway .esg-navigationbutton.hovered * {\n	color: #fff;\n}\n\n.rod-langway .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	border-color: rgba(255, 255, 255, 0.2);\n	color: #fff;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.rod-langway .esg-filter-checked {\n	color: #ced3d7;\n  	border: 1px solid #333;\n  	letter-spacing: 0;\n	background: transparent;\n	font-size: 9px;\n	font-weight: 300;\n	vertical-align: middle;\n  	line-height: 14px;\n	margin-left: 7px;\n  	display: inline-block;\n  	width: 14px;\n  	height: 14px;\n  	transform: translateY(-2px);\n}\n\n.rod-langway .esg-filter-wrapper.dropdownstyle .esg-filter-checked {\n	margin-left: 0;\n	margin-right: 10px;\n	border:1px solid rgba(255,255,255,.2);\n}\n\n.rod-langway .esg-filterbutton.selected .esg-filter-checked,\n.rod-langway .esg-filterbutton.hovered .esg-filter-checked {\n	color: #000;\n  	border: 1px solid #000;\n}\n\n/* */\n.rod-langway .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.rod-langway .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left:5px;\n	margin-right:0px;\n}\n\n.rod-langway .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.rod-langway .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background: #000;\n	border-radius: 0;\n  	padding: 0;\n}\n\n.rod-langway .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	border: none;\n	box-shadow: none;\n	text-align: left;\n	color: #fff;\n	background: transparent;\n	line-height: 25px;\n	min-height: 25px;\n  	padding: 10px 20px;\n  	display: inline-block;\n  	width: 100%;\n  	box-sizing: border-box;\n  	margin: 0;\n}\n\n.rod-langway .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.rod-langway .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color: #000;\n  	background: #fff;\n}\n\n\n.rod-langway .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	color: #000;\n	font-size: 11px;\n}\n\n.rod-langway .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n@import url(\"https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;700&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL),(15,'Ray Bourge','ray-bourque','/**************************************\n	-	RAY BOURGE V3.0.0 SKIN    -\n**************************************/\n\n\n\n.ray-bourque .esg-overflowtrick {\n  margin: 20px 0;\n}\n\n.ray-bourque .navigationbuttons,\n.ray-bourque .esg-pagination,\n.ray-bourque .esg-filters {\n	text-align: center;\n}\n\n.ray-bourque .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton,\n.ray-bourque input.eg-search-input,\n.ray-bourque .esg-filterbutton,\n.ray-bourque .esg-navigationbutton,\n.ray-bourque .esg-sortbutton,\n.ray-bourque .esg-cartbutton,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n	color: rgba(255, 255, 255, 1);\n	margin-right: 0;\n	cursor: pointer;\n	padding: 0px 17px;\n	border: none;\n	line-height: 40px;\n	font-size: 13px;\n  	letter-spacing: 1px;\n	font-weight: 400;\n	font-family: \"Barlow Condensed\", sans-serif;\n	display: inline-block;\n	background: #000;\n	margin-bottom: 5px;\n	white-space: nowrap;\n	min-height: 40px;\n	vertical-align: middle;\n  	border-radius: 0;\n}\n.ray-bourque  .esg-filterbutton .eg-el-amount {\n  background: #2d2b2b;\n  display: inline-block;\n  line-height: 22px;\n  min-width: 22px;\n  text-align: center;\n  font-weight: 500;\n}\n\n.ray-bourque  .esg-filterbutton.hovered .eg-el-amount,\n.ray-bourque  .esg-filterbutton.selected .eg-el-amount {\n  background: #eaedf1;\n}\n\n.ray-bourque  .esg-filterbutton .eg-el-amount:before,\n.ray-bourque  .esg-filterbutton .eg-el-amount:after {\n  content: \"\";\n}\n\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit {\n  margin-left: 0 !important;\n}\n\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean {\n  background: #434242;\n}\n\n.ray-bourque .esg-cartbutton a {\n	color: #fff;\n}\n\n.ray-bourque .esg-cartbutton a:hover {\n	color: #000;\n}\n\n.ray-bourque input.eg-search-input::placeholder {\n	line-height: 38px;\n	vertical-align: middle;\n	color:#fff;\n}\n\n.ray-bourque input.eg-search-input:focus::placeholder {\n  opacity: 0;\n}\n\n.ray-bourque .esg-navigationbutton * {\n	color: rgba(255, 255, 255, 1);\n}\n\n.ray-bourque .esg-navigationbutton.hovered i {\n	color: #000;\n}\n\n.ray-bourque .esg-navigationbutton {\n	padding: 0px 11px;\n}\n\n.ray-bourque .esg-pagination-button {\n	padding: 0px 16px;\n}\n\n.ray-bourque .esg-pagination-button:last-child {\n	margin-right: 0;\n}\n\n.ray-bourque .esg-sortbutton-wrapper,\n.ray-bourque .esg-cartbutton-wrapper {\n	display: inline-block;\n}\n\n.ray-bourque .esg-sortbutton-order,\n.ray-bourque .esg-cartbutton-order {\n	display: inline-block;\n	vertical-align: top;\n	width: 40px;\n	line-height: 38px;\n	border-radius: 0;\n  	border: none;\n	font-size: 12px;\n	font-weight: 600;\n	color: #fff;\n	cursor: pointer;\n	background: #434242;\n}\n\n.ray-bourque .esg-cartbutton {\n	color: #fff;\n	cursor: default !important;\n}\n\n.ray-bourque .esg-cartbutton .esgicon-basket {\n	color: #fff;\n	font-size: 15px;\n	line-height: 15px;\n	margin-right: 10px;\n}\n\n.ray-bourque .esg-cartbutton-wrapper {\n	cursor: default !important;\n}\n\n.ray-bourque .esg-sortbutton,\n.ray-bourque .esg-cartbutton {\n	display: inline-block;\n	position: relative;\n	cursor: pointer;\n}\n.ray-bourque .esg-sortbutton{\n	margin-right: 0px;\n	border-right: none;\n	border-radius: 0;\n}\n\n.ray-bourque .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hovered,\n.ray-bourque .esg-filter-wrapper.dropdownstyle>.esg-selected-filterbutton.hoveredfilter,\n.ray-bourque .esg-navigationbutton.hovered,\n.ray-bourque .esg-filterbutton.hovered,\n.ray-bourque .esg-sortbutton.hovered,\n.ray-bourque .esg-sortbutton-order.hovered,\n.ray-bourque .esg-cartbutton-order.hovered,\n.ray-bourque .esg-filterbutton.selected,\n.ray-bourque .esg-cartbutton.hovered,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-clean.hovered,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper  .eg-search-submit.hovered {\n	color: #000;\n	box-shadow: none;\n	background: #fff;\n}\n\n.ray-bourque .esg-navigationbutton.hovered * {\n	color: #fff;\n}\n\n.ray-bourque .esg-sortbutton-order.hovered .tp-desc {\n	border-color: #fff;\n	border-color: rgba(255, 255, 255, 0.2);\n	color: #fff;\n	box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.13) !important;\n}\n\n.ray-bourque .esg-filter-checked {\n	color: rgba(255,255,255,.5);\n  	border: 1px solid rgba(255,255,255,.5);\n	background: transparent;\n	font-size: 9px;\n	font-weight: 300;\n	vertical-align: middle;\n  	line-height: 12px;\n	margin-left: 7px;\n  	display: inline-block;\n  	width: 14px;\n  	height: 14px;\n  	transform: translateY(-2px);\n}\n\n.ray-bourque .esg-filter-wrapper.dropdownstyle .esg-filter-checked {\n	margin-left: 0;\n	margin-right: 10px;\n	border:1px solid rgba(255,255,255,.2);\n}\n\n.ray-bourque .esg-filterbutton.selected .esg-filter-checked,\n.ray-bourque .esg-filterbutton.hovered .esg-filter-checked {\n	color: #000;\n  	border: 1px solid #000;\n}\n\n/* */\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper {\n	white-space: nowrap;\n}\n\n\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper .eg-search-clean,\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper .eg-search-submit {\n	width:40px;\n	padding:0px;\n	margin-left:5px;\n	margin-right:0px;\n}\n\n.ray-bourque .esg-filter-wrapper.eg-search-wrapper .eg-search-input {\n	width:auto;\n}\n\n.ray-bourque .esg-dropdown-wrapper {\n	transform: translateZ(10px) translateX(-50%);\n	left: 50%;\n	background: #000;\n	border-radius: 0;\n  	padding: 0;\n}\n\n.ray-bourque .esg-dropdown-wrapper .esg-filterbutton {\n	position: relative;\n	border: none;\n	box-shadow: none;\n	text-align: left;\n	color: #fff;\n	background: transparent;\n	line-height: 25px;\n	min-height: 25px;\n  	padding: 10px 20px;\n  	display: inline-block;\n  	width: 100%;\n  	box-sizing: border-box;\n  	margin: 0;\n}\n\n.ray-bourque .esg-dropdown-wrapper .esg-filterbutton.hovered,\n.ray-bourque .esg-dropdown-wrapper .esg-filterbutton.selected {\n	color: #000;\n  	background: #fff;\n}\n\n\n.ray-bourque .esg-selected-filterbutton .eg-icon-down-open {\n	margin-right: -10px;\n	color:#fff;\n	font-size:12px;\n}\n\n.ray-bourque .esg-sortbutton-order.eg-icon-down-open:before {\n    content: \"arrow_downward\";\n    font-family: \"Material Icons\";\n  	font-size: 19px;\n  	vertical-align: middle;\n}\n\n@import url(\"https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500&display=swap\");\n@import url(\"https://fonts.googleapis.com/icon?family=Material+Icons\");\n\n',NULL);
/*!40000 ALTER TABLE `wpew_eg_navigation_skins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_links`
--

DROP TABLE IF EXISTS `wpew_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_links`
--

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

--
-- Table structure for table `wpew_options`
--

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

--
-- Dumping data for table `wpew_options`
--

LOCK TABLES `wpew_options` WRITE;
/*!40000 ALTER TABLE `wpew_options` DISABLE KEYS */;
INSERT INTO `wpew_options` VALUES (1,'siteurl','https://om7717.dev34.info','yes'),(2,'home','https://om7717.dev34.info','yes'),(3,'blogname','Opulence Management','yes'),(4,'blogdescription','Luxury Vacation Rentals','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','alex@inspirable.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:216:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:35:\"^1\\/api\\/ulisting-user\\/role\\/save$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A0%2C%22parameters%22%3A%5B%5D%7D\";s:39:\"^1\\/api\\/ulisting-listing\\/set-feature$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A1%2C%22parameters%22%3A%5B%5D%7D\";s:41:\"^1\\/api\\/ulisting-user\\/get_feature_plan$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A2%2C%22parameters%22%3A%5B%5D%7D\";s:40:\"^1\\/api\\/ulisting-user\\/draft_or_delete$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A3%2C%22parameters%22%3A%5B%5D%7D\";s:38:\"^1\\/api\\/ulisting-user\\/deletelisting$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A4%2C%22parameters%22%3A%5B%5D%7D\";s:40:\"^1\\/api\\/ulisting-user\\/update-password$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A5%2C%22parameters%22%3A%5B%5D%7D\";s:58:\"^1\\/api\\/ulisting-builder\\/listing-item-card-layout\\/save$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A6%2C%22parameters%22%3A%5B%5D%7D\";s:64:\"^1\\/api\\/ulisting-builder\\/listing-item-card-layout\\/get-layout$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A7%2C%22parameters%22%3A%5B%5D%7D\";s:60:\"^1\\/api\\/ulisting-builder\\/listing-type-layout\\/save_layout$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A8%2C%22parameters%22%3A%5B%5D%7D\";s:59:\"^1\\/api\\/ulisting-builder\\/listing-type-layout\\/get-layout$\";s:72:\"index.php?wp_router_route=%7B%22id%22%3A9%2C%22parameters%22%3A%5B%5D%7D\";s:62:\"^1\\/api\\/ulisting-builder\\/listing-type-layout\\/delete-layout$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A10%2C%22parameters%22%3A%5B%5D%7D\";s:57:\"^1\\/api\\/ulisting-builder\\/listing-single-page\\/get_data$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A11%2C%22parameters%22%3A%5B%5D%7D\";s:61:\"^1\\/api\\/ulisting-builder\\/listing-single-layout\\/new-layout$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A12%2C%22parameters%22%3A%5B%5D%7D\";s:60:\"^1\\/api\\/ulisting-builder\\/listing-single-page\\/save_layout$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A13%2C%22parameters%22%3A%5B%5D%7D\";s:59:\"^1\\/api\\/ulisting-builder\\/listing-single-page\\/get-layout$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A14%2C%22parameters%22%3A%5B%5D%7D\";s:62:\"^1\\/api\\/ulisting-builder\\/listing-single-page\\/delete-layout$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A15%2C%22parameters%22%3A%5B%5D%7D\";s:36:\"^1\\/api\\/search-form\\/get-form-data$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A16%2C%22parameters%22%3A%5B%5D%7D\";s:35:\"^1\\/api\\/ulisting-import\\/progress$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A17%2C%22parameters%22%3A%5B%5D%7D\";s:31:\"^1\\/api\\/ulisting-comment\\/add$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A18%2C%22parameters%22%3A%5B%5D%7D\";s:32:\"^1\\/api\\/ulisting-email\\/single$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A19%2C%22parameters%22%3A%5B%5D%7D\";s:27:\"^payment\\/paypal\\/web-hook$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A20%2C%22parameters%22%3A%5B%5D%7D\";s:31:\"^payment\\/paypal-standard\\/ipn$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A21%2C%22parameters%22%3A%5B%5D%7D\";s:31:\"^1\\/api\\/pricing-plan\\/payment$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A22%2C%22parameters%22%3A%5B%5D%7D\";s:38:\"^api\\/pricing-plan\\/user-plan\\/cancel$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A23%2C%22parameters%22%3A%5B%5D%7D\";s:33:\"^1\\/api\\/pricing-plan\\/form-data$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A24%2C%22parameters%22%3A%5B%5D%7D\";s:27:\"^payment\\/stripe\\/web-hook$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A25%2C%22parameters%22%3A%5B%5D%7D\";s:33:\"^api\\/payment\\/stripe\\/card\\/add$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A26%2C%22parameters%22%3A%5B%5D%7D\";s:42:\"^api\\/payment\\/stripe\\/card\\/make-default$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A27%2C%22parameters%22%3A%5B%5D%7D\";s:36:\"^api\\/payment\\/stripe\\/card\\/delete$\";s:73:\"index.php?wp_router_route=%7B%22id%22%3A28%2C%22parameters%22%3A%5B%5D%7D\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:40:\"listing_type/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"listing_type/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"listing_type/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"listing_type/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"listing_type/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"listing_type/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"listing_type/([^/]+)/embed/?$\";s:45:\"index.php?listing_type=$matches[1]&embed=true\";s:33:\"listing_type/([^/]+)/trackback/?$\";s:39:\"index.php?listing_type=$matches[1]&tb=1\";s:41:\"listing_type/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?listing_type=$matches[1]&paged=$matches[2]\";s:48:\"listing_type/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?listing_type=$matches[1]&cpage=$matches[2]\";s:37:\"listing_type/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?listing_type=$matches[1]&page=$matches[2]\";s:29:\"listing_type/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"listing_type/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"listing_type/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"listing_type/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"listing_type/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"listing_type/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"listing-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?listing-category=$matches[1]&feed=$matches[2]\";s:52:\"listing-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?listing-category=$matches[1]&feed=$matches[2]\";s:33:\"listing-category/([^/]+)/embed/?$\";s:49:\"index.php?listing-category=$matches[1]&embed=true\";s:45:\"listing-category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?listing-category=$matches[1]&paged=$matches[2]\";s:27:\"listing-category/([^/]+)/?$\";s:38:\"index.php?listing-category=$matches[1]\";s:66:\"listing-attribute-options/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?listing-attribute-options=$matches[1]&feed=$matches[2]\";s:61:\"listing-attribute-options/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?listing-attribute-options=$matches[1]&feed=$matches[2]\";s:42:\"listing-attribute-options/([^/]+)/embed/?$\";s:58:\"index.php?listing-attribute-options=$matches[1]&embed=true\";s:54:\"listing-attribute-options/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?listing-attribute-options=$matches[1]&paged=$matches[2]\";s:36:\"listing-attribute-options/([^/]+)/?$\";s:47:\"index.php?listing-attribute-options=$matches[1]\";s:55:\"listing-region/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?listing-region=$matches[1]&feed=$matches[2]\";s:50:\"listing-region/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?listing-region=$matches[1]&feed=$matches[2]\";s:31:\"listing-region/([^/]+)/embed/?$\";s:47:\"index.php?listing-region=$matches[1]&embed=true\";s:43:\"listing-region/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?listing-region=$matches[1]&paged=$matches[2]\";s:25:\"listing-region/([^/]+)/?$\";s:36:\"index.php?listing-region=$matches[1]\";s:35:\"listing/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"listing/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"listing/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"listing/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"listing/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"listing/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"listing/([^/]+)/embed/?$\";s:40:\"index.php?listing=$matches[1]&embed=true\";s:28:\"listing/([^/]+)/trackback/?$\";s:34:\"index.php?listing=$matches[1]&tb=1\";s:36:\"listing/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?listing=$matches[1]&paged=$matches[2]\";s:43:\"listing/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?listing=$matches[1]&cpage=$matches[2]\";s:32:\"listing/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?listing=$matches[1]&page=$matches[2]\";s:24:\"listing/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"listing/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"listing/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"listing/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"listing/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"listing/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"stm_plan/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"stm_plan/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"stm_plan/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"stm_plan/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"stm_plan/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"stm_plan/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"stm_plan/([^/]+)/embed/?$\";s:50:\"index.php?stm_pricing_plans=$matches[1]&embed=true\";s:29:\"stm_plan/([^/]+)/trackback/?$\";s:44:\"index.php?stm_pricing_plans=$matches[1]&tb=1\";s:37:\"stm_plan/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?stm_pricing_plans=$matches[1]&paged=$matches[2]\";s:44:\"stm_plan/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?stm_pricing_plans=$matches[1]&cpage=$matches[2]\";s:33:\"stm_plan/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?stm_pricing_plans=$matches[1]&page=$matches[2]\";s:25:\"stm_plan/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"stm_plan/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"stm_plan/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"stm_plan/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"stm_plan/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"stm_plan/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:35:\"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"mc4wp-form/[^/]+/([^/]+)/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:40:\"index.php?&page_id=881&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:31:\"(.?.+?)/edit-profile(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-profile=$matches[3]\";s:27:\"(.?.+?)/my-plans(/(.*))?/?$\";s:51:\"index.php?pagename=$matches[1]&my-plans=$matches[3]\";s:28:\"(.?.+?)/my-agents(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&my-agents=$matches[3]\";s:34:\"(.?.+?)/payment-history(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-history=$matches[3]\";s:29:\"(.?.+?)/my-listing(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&my-listing=$matches[3]\";s:33:\"(.?.+?)/saved-searches(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&saved-searches=$matches[3]\";s:26:\"(.?.+?)/my-card(/(.*))?/?$\";s:50:\"index.php?pagename=$matches[1]&my-card=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:14:{i:0;s:35:\"redux-framework/redux-framework.php\";i:1;s:25:\"booking/wpdev-booking.php\";i:2;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:39:\"column-shortcodes/column-shortcodes.php\";i:5;s:69:\"contact-form-7-shortcode-enabler/contact-form-7-shortcode-enabler.php\";i:6;s:36:\"contact-form-7/wp-contact-form-7.php\";i:7;s:32:\"duplicate-page/duplicatepage.php\";i:8;s:31:\"elementor-pro/elementor-pro.php\";i:9;s:23:\"elementor/elementor.php\";i:10;s:33:\"essential-grid/essential-grid.php\";i:11;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:12;s:27:\"svg-support/svg-support.php\";i:13;s:21:\"ulisting/uListing.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','rentex','yes'),(41,'stylesheet','rentex-child','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','49752','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:4:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:4:{s:5:\"title\";s:15:\"Blog categories\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:4;a:4:{s:5:\"title\";s:15:\"Blog categories\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:3:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:21:\"ulisting/uListing.php\";s:25:\"uListing_plugin_uninstall\";s:24:\"booking-system/dopbs.php\";s:15:\"DOPBSPUninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','64','yes'),(82,'page_on_front','881','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1636489958','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'initial_db_version','49752','yes'),(99,'wpew_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"bcn_manage_options\";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:4:\"user\";a:2:{s:4:\"name\";s:4:\"User\";s:12:\"capabilities\";a:5:{s:7:\"default\";s:1:\"1\";s:13:\"listing_limit\";s:1:\"1\";s:18:\"listing_moderation\";s:1:\"1\";s:16:\"stm_listing_role\";s:1:\"1\";s:21:\"allow_delete_listings\";s:1:\"0\";}}s:5:\"agent\";a:2:{s:4:\"name\";s:5:\"Agent\";s:12:\"capabilities\";a:6:{s:7:\"default\";i:0;s:13:\"listing_limit\";s:1:\"0\";s:7:\"comment\";s:1:\"1\";s:18:\"listing_moderation\";s:1:\"0\";s:16:\"stm_listing_role\";s:1:\"1\";s:23:\"stm_listing_role_hidden\";s:1:\"1\";}}s:6:\"agency\";a:2:{s:4:\"name\";s:6:\"Agency\";s:12:\"capabilities\";a:5:{s:7:\"default\";i:0;s:13:\"listing_limit\";s:1:\"0\";s:7:\"comment\";s:1:\"1\";s:18:\"listing_moderation\";s:1:\"1\";s:16:\"stm_listing_role\";s:1:\"1\";}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_recent-posts','a:4:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:3;a:3:{s:5:\"title\";s:11:\"Latest post\";s:6:\"number\";i:3;s:9:\"show_date\";b:1;}i:4;a:3:{s:5:\"title\";s:11:\"Latest post\";s:6:\"number\";i:3;s:9:\"show_date\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'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'),(104,'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'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-blog\";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:14:\"recent-posts-3\";i:4;s:12:\"categories-3\";i:5;s:11:\"tag_cloud-1\";}s:14:\"sidebar-single\";a:6:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";i:3;s:14:\"recent-posts-4\";i:4;s:12:\"categories-4\";i:5;s:11:\"tag_cloud-2\";}s:19:\"sidebar-ihomefinder\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:9:{i:1628040760;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:1628041064;a:1:{s:16:\"stm_listing_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:17:\"stm_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1628065958;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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:1628109158;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1628109362;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:1628109363;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:1628109464;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:1628281958;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:3:{i:1;a:3:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";}i:2;a:3:{s:5:\"title\";s:4:\"Tags\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";}s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1620938221;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'),(120,'https_detection_errors','a:1:{s:23:\"ssl_verification_failed\";a:1:{i:0;s:24:\"SSL verification failed.\";}}','yes'),(526,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":4,\"critical\":1}','yes'),(405,'recently_activated','a:0:{}','yes'),(1025,'elementor_install_history','a:2:{s:5:\"2.9.9\";i:1622193558;s:5:\"3.2.4\";i:1622193559;}','yes'),(383,'merlin_rentex_completed','1623705752','yes'),(130,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"alex@inspirable.com\";s:7:\"version\";s:3:\"5.8\";s:9:\"timestamp\";i:1626902162;}','no'),(161,'ulisting-saved-searches-install','1','yes'),(162,'ulisting-version','1.7.6','yes'),(163,'uListing-email-store','a:11:{s:12:\"saved-search\";a:10:{s:9:\"is_active\";i:1;s:8:\"to_admin\";i:0;s:6:\"banner\";i:1;s:6:\"header\";i:1;s:6:\"footer\";i:1;s:4:\"slug\";s:12:\"saved-search\";s:5:\"title\";s:12:\"Saved search\";s:7:\"subject\";s:27:\"New offers from [site-name]\";s:7:\"content\";s:673:\"<h3></h3> <h3 style=\"text-align: center;\">Hello, [customer-name]\n									You were subscribed to receive new offers from [site-name]. [count] new properties were found matching your search criteria.</h3>\n									<p style=\"text-align: center;\">If you want to receive new suggestions by new criteria, click on “view more”. After redirecting to the inventory page please enter new criteria and click \"Find\" then \"Save Search.\" This will create a new auto search.</p>\n									<p style=\"text-align: center;\">[listing-list]</p>\n									<p style=\"text-align: center;\"><strong>If you don’t want to be notified please enter your account and delete auto search</strong>.</p>\";s:11:\"description\";s:80:\"This message is sent to user when he gets offer(s) found in his search criteria.\";}s:22:\"payment-status-changed\";a:10:{s:9:\"is_active\";i:1;s:6:\"banner\";i:1;s:8:\"to_admin\";i:1;s:6:\"header\";i:1;s:6:\"footer\";i:1;s:4:\"slug\";s:22:\"payment-status-changed\";s:5:\"title\";s:23:\"User Plan status change\";s:7:\"subject\";s:43:\"Payment #[order_id] status has been changed\";s:7:\"content\";s:693:\"<p>Hello [customer_name], the purpose of this email is to notify about your update on the status of your order payment on [date]. Your status was [payment_status_before] before but now it is [payment_status_after]. </p>\n                              <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\"><strong>Please check your changes below:</strong><br></p>\n                              <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">[payment_info]</p>\n                              <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">You can reach out to us in case of any doubt or clearance required from our side.</p>\n                \";s:11:\"description\";s:64:\"This message is sent when user’s plan status has been changed.\";}s:16:\"payment-received\";a:10:{s:9:\"is_active\";i:1;s:6:\"banner\";i:1;s:6:\"header\";i:1;s:8:\"to_admin\";i:1;s:6:\"footer\";i:1;s:4:\"slug\";s:16:\"payment-received\";s:5:\"title\";s:16:\"Payment received\";s:7:\"subject\";s:28:\"Payment #[order_id] received\";s:7:\"content\";s:695:\"<p>Hello [customer_name], We earnestly acknowledge that we received your order payment of [payment_method] in a safe manner.\n                              <br>We sincerely appreciate your promptness regarding all payments from your side. We hope that you will never fail to fulfill payment promises by regarding deadlines. Your payment has been authorized and approved. Please check </p>\n                              <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">[payment_info]</p>\n                              <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">We look forward to continue being in business with you in the long run.</p>\n                \";s:11:\"description\";s:72:\"This message is sent to user when his payment process is correctly done.\";}s:12:\"user-created\";a:10:{s:9:\"is_active\";i:1;s:6:\"banner\";i:1;s:6:\"header\";i:1;s:8:\"to_admin\";i:1;s:6:\"footer\";i:1;s:4:\"slug\";s:12:\"user-created\";s:5:\"title\";s:12:\"User Created\";s:7:\"subject\";s:28:\"Welcome dear [customer_name]\";s:7:\"content\";s:449:\"<p>Welcome dear [customer_name] to get started using [site_name]. Thanks for reaching us!\n                                 We are really happy that you are joining to our community and we wanted to inform your account has been created successfully. Please log in to your [account_link] using email address and password.</p>\n                              <p>We look forward to continue being in business with you in the long run.</p>\n                \";s:11:\"description\";s:72:\"This message is sent when user registers to the system as a new account.\";}s:12:\"user-confirm\";a:10:{s:9:\"is_active\";i:0;s:6:\"banner\";i:1;s:8:\"to_admin\";i:0;s:6:\"header\";i:1;s:6:\"footer\";i:1;s:4:\"slug\";s:12:\"user-confirm\";s:5:\"title\";s:12:\"User Confirm\";s:7:\"subject\";s:27:\"Hello, dear [customer_name]\";s:7:\"content\";s:393:\"<h4 data-mce-style=\"text-align: center;\" style=\"text-align: center;\">Thanks for signing up to [site_name]</h4>\n                              <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">To get started, click the link below to confirm your account.</p>\n                              <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">[confirm_button]</p>\";s:11:\"description\";s:89:\"This message is sent to a user when all his credentials have been confirmed successfully.\";}s:15:\"listing-created\";a:10:{s:9:\"is_active\";i:1;s:6:\"banner\";i:1;s:6:\"header\";i:1;s:8:\"to_admin\";i:1;s:6:\"footer\";i:1;s:4:\"slug\";s:15:\"listing-created\";s:5:\"title\";s:15:\"Listing Created\";s:7:\"subject\";s:22:\"New offset [site_name]\";s:7:\"content\";s:250:\"<p style=\"text-align: left;\" data-mce-style=\"text-align: left;\">Hello, [customer_name]! We are glad to inform you that your listing \"[listing_title]\" has been created. Now your listing status is [listing_status].<br>All the best!</p>\n                \";s:11:\"description\";s:56:\"This message is sent to user when creates a new listing.\";}s:22:\"listing-status-changed\";a:10:{s:9:\"is_active\";i:1;s:6:\"banner\";i:1;s:6:\"header\";i:1;s:8:\"to_admin\";i:1;s:6:\"footer\";i:1;s:4:\"slug\";s:22:\"listing-status-changed\";s:5:\"title\";s:22:\"Listing Status Changed\";s:7:\"subject\";s:22:\"New offset [site_name]\";s:7:\"content\";s:495:\"<p data-mce-style=\"text-align: center;\" style=\"text-align: center;\">Hello [customer_name], the purpose of this email is to notify about your update on the listing \"[listing_title]\'s\" status. You changed your listing status from [listing_status_before] to [listing_status_after]. Please be kindly informed that you are always free to return your changes<br>\n                                <br>You can reach out to us in case of any doubt or clearance required from our side.</p>\n                \";s:11:\"description\";s:61:\"This message is sent to user when his listing status changed.\";}s:16:\"listing-moderate\";a:10:{s:9:\"is_active\";i:1;s:6:\"banner\";i:1;s:6:\"header\";i:1;s:8:\"to_admin\";i:1;s:6:\"footer\";i:1;s:4:\"slug\";s:16:\"listing-moderate\";s:5:\"title\";s:16:\"Listing Moderate\";s:7:\"subject\";s:22:\"New offset [site_name]\";s:7:\"content\";s:346:\"<p>Hello [customer_name], We earnestly inform you that admin approved the status of your listing \"[listing_title]\". Now your listing status is changed to [listing_status]. You can begin working on that listing right now.</p>\n                                <p>Thanks for choosing our product as a best of choice.<br>Sincerely</p>\n                \";s:11:\"description\";s:62:\"This message is sent to user when one of his listing approved.\";}s:15:\"listing-expired\";a:10:{s:9:\"is_active\";i:1;s:6:\"banner\";i:1;s:6:\"header\";i:1;s:8:\"to_admin\";i:0;s:6:\"footer\";i:1;s:4:\"slug\";s:15:\"listing-expired\";s:5:\"title\";s:15:\"Listing Expired\";s:7:\"subject\";s:22:\"New offset [site_name]\";s:7:\"content\";s:825:\"<p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">Hello [customer_name], We regret to inform you that one of your listings has expired. Unfortunately, the listing you bought is no longer available in your orders. \n                                <br>However, be kindly informed that you are always welcome to buy it for rebuilding.<br></p>\n                                <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\"><strong>Please check your current status: </strong></p>\n                                <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">[listing_list]</p>\n                                <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">We look forward to continue being in business with you in the long run.</p>\n                \";s:11:\"description\";s:62:\"This message is sent to user when one of his listings expired.\";}s:15:\"feature-expired\";a:10:{s:9:\"is_active\";i:1;s:6:\"banner\";i:1;s:6:\"header\";i:1;s:8:\"to_admin\";i:0;s:6:\"footer\";i:1;s:4:\"slug\";s:15:\"feature-expired\";s:5:\"title\";s:24:\"Featured Listing Expired\";s:7:\"subject\";s:22:\"New offset [site_name]\";s:7:\"content\";s:676:\"<p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">Hello [customer_name], We regret to inform you that your featured listing \"[listing_title]\" has expired. Unfortunately, the featured plan you bought is no longer available.\n                                <br>However, be kindly informed that you are always welcome to buy a new featured plan.</p>\n                                <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">[listing_list]</p>\n                                <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">We look forward to continue being in business with you in the long run.</p>\n                \";s:11:\"description\";s:71:\"This message is sent to user when one of his featured listings expired.\";}s:17:\"user-plan-expired\";a:10:{s:9:\"is_active\";i:1;s:6:\"banner\";i:1;s:6:\"header\";i:1;s:8:\"to_admin\";i:0;s:6:\"footer\";i:1;s:4:\"slug\";s:17:\"user-plan-expired\";s:5:\"title\";s:17:\"User Plan Expired\";s:7:\"subject\";s:22:\"New offset [site_name]\";s:7:\"content\";s:645:\"<p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">Hello [customer_name], We regret to inform you that your paid plan [plan_type] has expired. Unfortunately, the plan you bought is no longer available.\n                                <br>However, be kindly informed that you are always welcome to buy a new plan.</p>\n                                <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">[payment_info]</p>\n                                <p style=\"text-align: center;\" data-mce-style=\"text-align: center;\">We look forward to continue being in business with you in the long run.</p>\n                \";s:11:\"description\";s:56:\"This message is sent to user when his user plan expired.\";}}','yes'),(2052,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1628024474;s:7:\"checked\";a:5:{s:12:\"rentex-child\";s:5:\"1.9.2\";s:6:\"rentex\";s:5:\"1.9.2\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.3\";}s:8:\"response\";a:3:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.1.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(1093,'recovery_mode_email_last_sent','1622445598','yes'),(1094,'elementor_safe_mode_allowed_plugins','a:2:{s:9:\"elementor\";s:23:\"elementor/elementor.php\";s:13:\"elementor_pro\";s:31:\"elementor-pro/elementor-pro.php\";}','yes'),(1095,'elementor_safe_mode_created_mu_dir','1','yes'),(1096,'elementor_safe_mode_token','aae4fa5a0102d5e0d97478feaf8617b4','yes'),(1097,'elementor_safe_mode','yes','yes'),(1027,'_elementor_global_css','a:6:{s:4:\"time\";i:1622193561;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(1451,'_elementor_pro_editor_activate_license_notice_dismissed','1626336729','yes'),(1588,'tp_eg_latest-version','3.0.12','yes'),(142,'can_compress_scripts','1','no'),(710,'booking_email_approved','a:16:{s:7:\"enabled\";s:2:\"On\";s:13:\"copy_to_admin\";s:3:\"Off\";s:2:\"to\";s:19:\"alex@inspirable.com\";s:7:\"to_name\";s:14:\"Booking system\";s:4:\"from\";s:19:\"alex@inspirable.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:30:\"Your booking has been approved\";s:7:\"content\";s:131:\"Your booking [bookingtype] for: [dates] has been approved.<br/><br/>[content]<br/><br/>Thank you, Opulence Management<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(711,'booking_email_deleted','a:16:{s:7:\"enabled\";s:2:\"On\";s:13:\"copy_to_admin\";s:3:\"Off\";s:2:\"to\";s:19:\"alex@inspirable.com\";s:7:\"to_name\";s:14:\"Booking system\";s:4:\"from\";s:19:\"alex@inspirable.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:30:\"Your booking has been declined\";s:7:\"content\";s:150:\"Your booking [bookingtype] for: [dates] has been  canceled. <br/>[denyreason]<br/><br/>[content]<br/><br/>Thank you, Opulence Management<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(712,'booking_email_deny','a:16:{s:7:\"enabled\";s:2:\"On\";s:13:\"copy_to_admin\";s:3:\"Off\";s:2:\"to\";s:19:\"alex@inspirable.com\";s:7:\"to_name\";s:14:\"Booking system\";s:4:\"from\";s:19:\"alex@inspirable.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:30:\"Your booking has been declined\";s:7:\"content\";s:150:\"Your booking [bookingtype] for: [dates] has been  canceled. <br/>[denyreason]<br/><br/>[content]<br/><br/>Thank you, Opulence Management<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(713,'booking_email_trash','a:16:{s:7:\"enabled\";s:2:\"On\";s:13:\"copy_to_admin\";s:3:\"Off\";s:2:\"to\";s:19:\"alex@inspirable.com\";s:7:\"to_name\";s:14:\"Booking system\";s:4:\"from\";s:19:\"alex@inspirable.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:30:\"Your booking has been declined\";s:7:\"content\";s:150:\"Your booking [bookingtype] for: [dates] has been  canceled. <br/>[denyreason]<br/><br/>[content]<br/><br/>Thank you, Opulence Management<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(714,'booking_form_structure_type','vertical','yes'),(715,'booking_menu_go_pro','show','yes'),(716,'booking_ics_force_import','Off','yes'),(717,'booking_ics_force_trash_before_import','Off','yes'),(718,'booking_form','<div class=\"wpbc_booking_form_structure wpbc_vertical\">\n  <div class=\"wpbc_structure_calendar\">\n    [calendar]\n  </div>\n  <div class=\"wpbc_structure_form\">\n     <p>Name*:<br />[text* name]</p>\n     <p>Email*:<br />[email* email]</p>\n     <p>Visitors*:<br />[select* visitors  \"1\"  \"2\"  \"3\"  \"4\"  \"5\"  \"6\"  \"7\"  \"8\"  \"9\"]</p>\n     <p>Phone*:<br />[text* phone]</p>\n     <p>[captcha]</p>\n     <p>[submit class:btn \"Check Availability\"]</p>\n  </div>\n</div>\n<div class=\"wpbc_booking_form_footer\"></div>','yes'),(719,'booking_form_show','<div style=\"text-align:left;word-wrap: break-word;\">\n  <strong>Name</strong>: <span class=\"fieldvalue\">[name]</span><br/>\n  <strong>Email</strong>: <span class=\"fieldvalue\">[email]</span><br/>\n  <strong>Visitors</strong>: <span class=\"fieldvalue\">[visitors]</span><br/>\n  <strong>Phone</strong>: <span class=\"fieldvalue\">[phone]</span><br/>\n</div>','yes'),(720,'booking_form_visual','a:8:{i:0;a:2:{s:4:\"type\";s:8:\"calendar\";s:10:\"obligatory\";s:2:\"On\";}i:1;a:8:{s:4:\"type\";s:4:\"text\";s:4:\"name\";s:4:\"name\";s:10:\"obligatory\";s:3:\"Off\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:17:\"if_exist_required\";s:3:\"Off\";s:5:\"label\";s:4:\"Name\";s:5:\"value\";s:0:\"\";}i:2;a:8:{s:4:\"type\";s:4:\"text\";s:4:\"name\";s:10:\"secondname\";s:10:\"obligatory\";s:3:\"Off\";s:6:\"active\";s:3:\"Off\";s:8:\"required\";s:2:\"On\";s:17:\"if_exist_required\";s:3:\"Off\";s:5:\"label\";s:9:\"Last Name\";s:5:\"value\";s:0:\"\";}i:3;a:8:{s:4:\"type\";s:5:\"email\";s:4:\"name\";s:5:\"email\";s:10:\"obligatory\";s:2:\"On\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:17:\"if_exist_required\";s:3:\"Off\";s:5:\"label\";s:5:\"Email\";s:5:\"value\";s:0:\"\";}i:4;a:8:{s:4:\"type\";s:6:\"select\";s:4:\"name\";s:8:\"visitors\";s:10:\"obligatory\";s:3:\"Off\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:17:\"if_exist_required\";s:3:\"Off\";s:5:\"label\";s:8:\"Visitors\";s:5:\"value\";s:25:\"1\r\n2\r\n3\r\n4\r\n5\r\n6\r\n7\r\n8\r\n9\";}i:5;a:8:{s:4:\"type\";s:4:\"text\";s:4:\"name\";s:5:\"phone\";s:10:\"obligatory\";s:3:\"Off\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:17:\"if_exist_required\";s:3:\"Off\";s:5:\"label\";s:5:\"Phone\";s:5:\"value\";s:0:\"\";}i:6;a:6:{s:4:\"type\";s:7:\"captcha\";s:4:\"name\";s:7:\"captcha\";s:10:\"obligatory\";s:2:\"On\";s:6:\"active\";s:3:\"Off\";s:8:\"required\";s:2:\"On\";s:5:\"label\";s:0:\"\";}i:7;a:6:{s:4:\"type\";s:6:\"submit\";s:4:\"name\";s:6:\"submit\";s:10:\"obligatory\";s:2:\"On\";s:6:\"active\";s:2:\"On\";s:8:\"required\";s:2:\"On\";s:5:\"label\";s:18:\"Check Availability\";}}','yes'),(721,'booking_gcal_feed','','yes'),(722,'booking_gcal_events_from','month-start','yes'),(723,'booking_gcal_events_from_offset','','yes'),(724,'booking_gcal_events_from_offset_type','','yes'),(725,'booking_gcal_events_until','any','yes'),(726,'booking_gcal_events_until_offset','','yes'),(727,'booking_gcal_events_until_offset_type','','yes'),(728,'booking_gcal_events_max','25','yes'),(729,'booking_gcal_api_key','','yes'),(730,'booking_gcal_timezone','','yes'),(731,'booking_gcal_is_send_email','Off','yes'),(732,'booking_gcal_auto_import_is_active','Off','yes'),(733,'booking_gcal_auto_import_time','24','yes'),(734,'booking_gcal_events_form_fields','s:101:\"a:3:{s:5:\"title\";s:9:\"text^name\";s:11:\"description\";s:16:\"textarea^details\";s:5:\"where\";s:5:\"text^\";}\";','yes'),(735,'booking_version_num','8.8.1','yes'),(739,'booking_activation_redirect_for_version','8.8.1','yes'),(1574,'widget_ess-grid-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1575,'eg-current-sorting','a:0:{}','yes'),(1585,'essential-connection','1','yes'),(1586,'essential-notices','a:4:{i:0;O:8:\"stdClass\":7:{s:7:\"version\";s:3:\"2.1\";s:4:\"text\";s:299:\"<a href=\"//codecanyon.net/item/essential-grid-wordpress-plugin/7563340#item-description__version-2-1-5-artemis-26th-june-2017\" target=\"_blank\"><img src=\"//updates.themepunch-ext-b.tools/banners/essential_grid_updatenow_215.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"EssGrid 2.1.5 is out\" ></a>\";s:4:\"code\";s:10:\"TPEG215-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"2.2.9\";s:4:\"text\";s:353:\"<a href=\"//codecanyon.net/item/essential-grid-wordpress-plugin/7563340?ref=themepunch\" target=\"_blank\"><img src=\"//updates.themepunch-ext-b.tools/banners/essential_grid_updatenow_23.jpg\" srcset=\"//updates.themepunch-ext-b.tools/banners/essential_grid_updatenow_23@2x.jpg\" style=\"width:817px;min-width: 50%; max-width:100%\" alt=\"EssGrid 2.3 is out\" ></a>\";s:4:\"code\";s:9:\"TPEG23-00\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":7:{s:7:\"version\";s:3:\"2.3\";s:4:\"text\";s:355:\"<a href=\"//codecanyon.net/item/essential-grid-wordpress-plugin/7563340?ref=themepunch\" target=\"_blank\"><img src=\"//updates.themepunch-ext-b.tools/banners/essential_grid_updatenow_231.jpg\" srcset=\"//updates.themepunch-ext-b.tools/banners/essential_grid_updatenow_231@2x.jpg\" style=\"width:817px;min-width: 50%; max-width:100%\" alt=\"EssGrid 2.3 is out\" ></a>\";s:4:\"code\";s:9:\"TPEG23-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:3;O:8:\"stdClass\":8:{s:7:\"version\";s:7:\"2.9.999\";s:4:\"text\";s:289:\"<div style=\"display: block; background-color: #150A33;\"><a href=\"https://www.themepunch.com/faq/wordpress-5-5-important-update-information/\" target=\"_blank\"><img alt=\"Important Notice\" src=\"//updates.themepunch-ext-b.tools/banners/important_banner.jpg\" width=\"1400\" height=\"250\"></a></div>\";s:4:\"code\";s:10:\"TPRS630-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}}','yes'),(1587,'essential-dashboard','O:8:\"stdClass\":1:{s:11:\"test-handle\";O:8:\"stdClass\":5:{s:12:\"version_from\";s:5:\"1.0.0\";s:10:\"version_to\";s:5:\"1.0.0\";s:5:\"order\";i:5;s:7:\"content\";s:181:\"<div class=\"rs-dash-widget\"><div class=\"rs-dash-title-wrap\"><div class=\"rs-dash-title\">your version is: {{current_version}}</div></div><div class=\"rs-dash-widget-inner\"></div></div>\";s:4:\"code\";s:0:\"\";}}','yes'),(1573,'tp_eg-templates','a:1:{s:5:\"grids\";a:60:{i:0;a:16:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:12:\"Vimeo Player\";s:5:\"alias\";s:11:\"vimeostream\";s:3:\"zip\";s:15:\"vimeostream.zip\";s:3:\"uid\";s:32:\"088c7c0f8a0862bbe2dab1dd16601a3e\";s:3:\"img\";s:13:\"ess_vimeo.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/minimal-vimeo-playlist-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when you<br> \r\napply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:8:\"loadmore\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:52\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:16:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:12:\"flickrstream\";s:3:\"zip\";s:16:\"flickrstream.zip\";s:3:\"uid\";s:32:\"edfd9652b92d5783d74fefc3247632d0\";s:3:\"img\";s:14:\"ess_flickr.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/flickr-photo-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:132:\"You will need to insert a Flickr API key<br>\r\n in the \"Source Tab\", also please clear <br>\r\nthe stream cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:8:\"loadmore\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:40\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:16:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:17:\"Instagram Minimal\";s:5:\"alias\";s:15:\"instagramstream\";s:3:\"zip\";s:19:\"instagramstream.zip\";s:3:\"uid\";s:32:\"73061fa3b75c5afaf4846cdf95add10c\";s:3:\"img\";s:13:\"ess_insta.jpg\";s:7:\"preview\";s:90:\"https://essential.themepunch.com/template_library/minimal-instagram-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when<br>\r\n you apply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:8:\"loadmore\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:06\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:16:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:12:\"YouTube Grid\";s:5:\"alias\";s:13:\"youtubestream\";s:3:\"zip\";s:17:\"youtubestream.zip\";s:3:\"uid\";s:32:\"df776948dd7ca1cb88ba59a4e638f20e\";s:3:\"img\";s:15:\"ess_youtube.jpg\";s:7:\"preview\";s:95:\"https://essential.themepunch.com/template_library/youtube-playlist-video-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:69:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Pagination<br>Sorting</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a YouTube API key<br>\r\n in the \"Source Tab\", also please clear the<br>\r\n stream cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"0\";s:4:\"date\";s:19:\"2018-11-14 09:58:54\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:16:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:16:\"Twitter Overview\";s:5:\"alias\";s:13:\"twitterstream\";s:3:\"zip\";s:17:\"twitterstream.zip\";s:3:\"uid\";s:32:\"a38d8298c59f31831c516ce8429026cf\";s:3:\"img\";s:15:\"ess_twitter.jpg\";s:7:\"preview\";s:74:\"https://essential.themepunch.com/template_library/twitter-stream-overview/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:60:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:135:\"You will need to insert Twitter credentials<br>\r\n in the \"Source Tab\", also please clear the stream<br>\r\n cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:8:\"loadmore\";i:2;s:7:\"masonry\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:59:24\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:16:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:13:\"Facebook Page\";s:5:\"alias\";s:14:\"facebookstream\";s:3:\"zip\";s:18:\"facebookstream.zip\";s:3:\"uid\";s:32:\"c346b49eb0dbfa897454160eccc55383\";s:3:\"img\";s:16:\"ess_facebook.jpg\";s:7:\"preview\";s:107:\"https://essential.themepunch.com/template_library/facebook-fanpage-content-and-album-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:60:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Load More</div>\";s:11:\"setup_notes\";s:138:\"You will need to register a Facebook app before.<br>\r\nAlso please clear the stream cache when you<br>\r\napply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:8:\"loadmore\";i:2;s:7:\"masonry\";i:3;s:12:\"nonavigation\";i:4;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 09:58:42\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:16:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:5:\"Jason\";s:5:\"alias\";s:4:\"woo2\";s:3:\"zip\";s:8:\"woo2.zip\";s:3:\"uid\";s:32:\"e4f9657a98fc6cc7a3a7136b5c7b2015\";s:3:\"img\";s:9:\"jason.jpg\";s:7:\"preview\";s:84:\"https://essential.themepunch.com/template_library/jason-woocommerce-product-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:87:\"<div class=\"hcap\">Boxed 3 Row<br/>WooCommerce Shop<br>Shopping Cart<br/>Filtering</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:10:\"pagination\";i:2;s:7:\"sorting\";i:3;s:11:\"woocommerce\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:15\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:16:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:6:\"Arthur\";s:5:\"alias\";s:4:\"woo1\";s:3:\"zip\";s:8:\"woo1.zip\";s:3:\"uid\";s:32:\"59bfe81828b2ddcc89b9e3968760e9d1\";s:3:\"img\";s:10:\"arthur.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/arthur-woocommerce-product-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:92:\"<div class=\"hcap\">Full-Width 5 Row<br/>WooCommerce Shop<br>Shopping Cart<br/>Filtering</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:11:\"woocommerce\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:21\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:16:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:6:\"Hoover\";s:5:\"alias\";s:19:\"masonry_grid_hoover\";s:3:\"zip\";s:23:\"masonry_grid_hoover.zip\";s:3:\"uid\";s:32:\"d97c537e349e9f1c91dff285f8df60c5\";s:3:\"img\";s:10:\"hoover.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/hoover-masonry-wordpress-post-gallery-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:93:\"<div class=\"hcap\">Masonry Grid<br/>Video Entries<br/>B&W Effect<br/>Filters<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:27\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:16:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:6:\"Lyndon\";s:5:\"alias\";s:12:\"clients_grid\";s:3:\"zip\";s:16:\"clients_grid.zip\";s:3:\"uid\";s:32:\"2cdd4fc78978e87d7aa0502ba3b686e5\";s:3:\"img\";s:10:\"lyndon.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/lyndon-modern-client-logo-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:87:\"<div class=\"hcap\">2 Row Scroller<br/>Icons via Meta<br/>B&W Effect<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:7:\"clients\";i:1;s:4:\"even\";i:2;s:9:\"fullwidth\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:32\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:16:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:7:\"Phillie\";s:5:\"alias\";s:14:\"clients_grid_3\";s:3:\"zip\";s:18:\"clients_grid_3.zip\";s:3:\"uid\";s:32:\"5610d9625b702520c344168cfa70579c\";s:3:\"img\";s:11:\"phillie.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/phillie-clients-logo-grid-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:94:\"<div class=\"hcap\">Clean Design<br/>Icons via Meta<br/>Tooltip Style Hover<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:2:{i:0;s:7:\"clients\";i:1;s:4:\"even\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:02:37\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:16:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:8:\"McKinley\";s:5:\"alias\";s:19:\"media_blog_mckinley\";s:3:\"zip\";s:23:\"media_blog_mckinley.zip\";s:3:\"uid\";s:32:\"a430af281c10753e067a38d1641c8d7b\";s:3:\"img\";s:12:\"mckinley.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/multimedia-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:100:\"<div class=\"hcap\">Masonry Grid<br/>Video Entries<br/>Directional Hover<br/>Filters<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:21\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:16:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:4:\"Taft\";s:5:\"alias\";s:21:\"media_grid_howardtaft\";s:3:\"zip\";s:25:\"media_grid_howardtaft.zip\";s:3:\"uid\";s:32:\"eebc5585762fe9889ceff28fae22137d\";s:3:\"img\";s:8:\"taft.jpg\";s:7:\"preview\";s:83:\"https://essential.themepunch.com/template_library/multimedia-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:87:\"<div class=\"hcap\">3 x 3 Grid<br/>Video Entries<br>Directional Hover<br/>Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:8:\"loadmore\";i:2;s:12:\"nonavigation\";i:3;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:29\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:16:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:7:\"Wilbert\";s:5:\"alias\";s:14:\"clients_grid_2\";s:3:\"zip\";s:18:\"clients_grid_2.zip\";s:3:\"uid\";s:32:\"f27f88f41b38547d344e6cf993951862\";s:3:\"img\";s:11:\"wilbert.jpg\";s:7:\"preview\";s:96:\"https://essential.themepunch.com/template_library/wilbert-client-and-logo-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">4 x 3 Grid<br/>Icons via Meta<br/>B&W Effect<br/>No Navigation</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:7:\"clients\";i:1;s:4:\"even\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:16:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:9:\"Roosevelt\";s:5:\"alias\";s:19:\"even_grid_roosevelt\";s:3:\"zip\";s:23:\"even_grid_roosevelt.zip\";s:3:\"uid\";s:32:\"5a8c19d4149497e2b6ba24a367ef008f\";s:3:\"img\";s:13:\"roosevelt.jpg\";s:7:\"preview\";s:96:\"https://essential.themepunch.com/template_library/roosevelt-hover-detail-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:92:\"<div class=\"hcap\">Full-Screen Grid<br/>Push Up Media Hover<br/>Left & Right Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:10:\"fullscreen\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:38\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:16:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:6:\"Quincy\";s:5:\"alias\";s:16:\"even_grid_quincy\";s:3:\"zip\";s:20:\"even_grid_quincy.zip\";s:3:\"uid\";s:32:\"7a6e7bbd01c5d558748c8c2c7b6373b9\";s:3:\"img\";s:10:\"quincy.jpg\";s:7:\"preview\";s:91:\"https://essential.themepunch.com/template_library/quincy-zoom-hover-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:129:\"<div class=\"hcap\">Single / Double Row<br/>Slider Style<br/>Link & Lightbox Icons<br/>Left & Right Nav Arrows<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:42\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:16:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:17:\"Price Tables Ford\";s:5:\"alias\";s:17:\"price_tables_ford\";s:3:\"zip\";s:21:\"price_tables_ford.zip\";s:3:\"uid\";s:32:\"1ebd3eab67b822e45ad9648b9701ce01\";s:3:\"img\";s:8:\"ford.jpg\";s:7:\"preview\";s:82:\"https://essential.themepunch.com/template_library/ford-price-tables-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:82:\"<div class=\"hcap\">Traditional Price Tables<br/>Icons on Hover<br/>Pagination</div>\";s:11:\"setup_notes\";s:64:\"No Example Products included.<br> \r\nSelect a source for content.\";s:6:\"filter\";a:4:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:11:\"pricetables\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:23:54\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:16:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:18:\"Price Tables Nixon\";s:5:\"alias\";s:16:\"price_tables_two\";s:3:\"zip\";s:20:\"price_tables_two.zip\";s:3:\"uid\";s:32:\"a45c055632139fadbc92232031fcd3d5\";s:3:\"img\";s:9:\"nixon.jpg\";s:7:\"preview\";s:95:\"https://essential.themepunch.com/template_library/nixon-woocommerce-price-tables-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:84:\"<div class=\"hcap\">Price Table Scroller<br/>Show Image Hover<br/>Stacked Tables</div>\";s:11:\"setup_notes\";s:64:\"No Example Products included.<br> \r\nSelect a source for content.\";s:6:\"filter\";a:3:{i:0;s:7:\"masonry\";i:1;s:12:\"nonavigation\";i:2;s:11:\"pricetables\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:23:48\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:16:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:18:\"Price Tables Grant\";s:5:\"alias\";s:16:\"price_tables_one\";s:3:\"zip\";s:20:\"price_tables_one.zip\";s:3:\"uid\";s:32:\"19be80fd1a58cbb3714ee76453b11771\";s:3:\"img\";s:9:\"grant.jpg\";s:7:\"preview\";s:91:\"https://essential.themepunch.com/template_library/ulysses-woocommerce-product-price-tables/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:116:\"<div class=\"hcap\">Price Table Scroller<br/>Show Image Hover<br/>Left & Right Nav Arrows<br/>Boxed & Full Shown</div>\";s:11:\"setup_notes\";s:64:\"No Example Products included.<br> \r\nSelect a source for content.\";s:6:\"filter\";a:4:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";i:3;s:11:\"pricetables\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:23:33\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:16:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:7:\"Johnson\";s:5:\"alias\";s:17:\"even_grid_johnson\";s:3:\"zip\";s:21:\"even_grid_johnson.zip\";s:3:\"uid\";s:32:\"bcc38fc15aa572544a076bbd38b867af\";s:3:\"img\";s:11:\"johnson.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/johnson-minimal-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:96:\"<div class=\"hcap\">Full Width Grid<br/>Colored Hover<br/>3 Icons on Hover<br/>No Navigation</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:47\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:16:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:9:\"Cleveland\";s:5:\"alias\";s:19:\"even_grid_cleveland\";s:3:\"zip\";s:23:\"even_grid_cleveland.zip\";s:3:\"uid\";s:32:\"fc12421ec2c8804996d8c766a7d7c01d\";s:3:\"img\";s:13:\"cleveland.jpg\";s:7:\"preview\";s:96:\"https://essential.themepunch.com/template_library/cleveland-hover-effect-wordpress-blog-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:102:\"<div class=\"hcap\">Full Width Grid<br/>Content on Hover<br/>Filters<br/>Pagination<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:10:\"pagination\";i:4;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:52\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:16:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:4:\"Bush\";s:5:\"alias\";s:20:\"even_grid_georgebush\";s:3:\"zip\";s:24:\"even_grid_georgebush.zip\";s:3:\"uid\";s:32:\"ca6e67691019249b786a7ea5fa577a71\";s:3:\"img\";s:8:\"bush.jpg\";s:7:\"preview\";s:97:\"https://essential.themepunch.com/template_library/bush-fullwidth-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:88:\"<div class=\"hcap\">Full Width 2 Row<br/>Cover Grow Hover<br/>Filters<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:03:56\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:16:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:8:\"Harrison\";s:5:\"alias\";s:23:\"even_grid_henryharrison\";s:3:\"zip\";s:27:\"even_grid_henryharrison.zip\";s:3:\"uid\";s:32:\"be1e10b8bfc8ad490402e8b7605bc428\";s:3:\"img\";s:12:\"harrison.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/harrison-bubbly-wordpress-blog-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:83:\"<div class=\"hcap\">Full Width 4 Row<br/>Special Effect Hover<br/>No Navigation</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"fullwidth\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:01\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:16:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:8:\"VanBuren\";s:5:\"alias\";s:18:\"even_grid_vanburen\";s:3:\"zip\";s:22:\"even_grid_vanburen.zip\";s:3:\"uid\";s:32:\"c4633fba2e78794bcdef41c06d703c39\";s:3:\"img\";s:12:\"vanburen.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/vanburen-dark-hover-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:105:\"<div class=\"hcap\">Full Width 3 Row<br/>Dark Opacity Hover<br/>Filters<br/>Pagination<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:05\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:16:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:7:\"Jackson\";s:5:\"alias\";s:17:\"even_grid_jackson\";s:3:\"zip\";s:21:\"even_grid_jackson.zip\";s:3:\"uid\";s:32:\"b433ca06c9e23c037437944c64a2b4da\";s:3:\"img\";s:11:\"jackson.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/jackson-stylish-wordpress-blog-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:117:\"<div class=\"hcap\">Full Width 1:1 Grid<br/>Clean White Hover<br/>Link & Lightbox Icons<br/>Filters<br/>Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:10\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:16:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:9:\"Jefferson\";s:5:\"alias\";s:19:\"even_grid_jefferson\";s:3:\"zip\";s:23:\"even_grid_jefferson.zip\";s:3:\"uid\";s:32:\"4aa970752344a63ca15558bd286efca9\";s:3:\"img\";s:13:\"jefferson.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/variable-columns-flip-item-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:121:\"<div class=\"hcap\">Custom Row Grid<br/>Red Flip Hover<br/>Link & Lightbox Icons<br/>Filters & Sorting<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:7:{i:0;s:4:\"even\";i:1;s:14:\"filterdropdown\";i:2;s:9:\"filtering\";i:3;s:9:\"fullwidth\";i:4;s:10:\"pagination\";i:5;s:7:\"sorting\";i:6;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:15\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:16:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:8:\"Garfield\";s:5:\"alias\";s:21:\"masonry_grid_garfield\";s:3:\"zip\";s:25:\"masonry_grid_garfield.zip\";s:3:\"uid\";s:32:\"5f73bbe117ebfb9b68ff85ee32bf4578\";s:3:\"img\";s:12:\"garfield.jpg\";s:7:\"preview\";s:93:\"https://essential.themepunch.com/template_library/garfield-wordpress-news-post-magazine-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:113:\"<div class=\"hcap\">Masonry Blog Style<br/>Content on Top<br/>Dark Media Hover<br/>Load More<br/>Lazy Loading</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:8:\"loadmore\";i:1;s:7:\"masonry\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:20\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:16:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:6:\"Reagan\";s:5:\"alias\";s:26:\"masonry_grid_ronald_reagan\";s:3:\"zip\";s:30:\"masonry_grid_ronald_reagan.zip\";s:3:\"uid\";s:32:\"ae42d4e11ba5e393274edf5099a4a43f\";s:3:\"img\";s:10:\"raegan.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/reagan-blog-post-overview-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:124:\"<div class=\"hcap\">Masonry Blog Style<br/>Static Caption<br/>Link Show Hover<br/>Filters & Sorting<br/>Scroll Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:7:{i:0;s:14:\"filterdropdown\";i:1;s:9:\"filtering\";i:2;s:9:\"fullwidth\";i:3;s:8:\"loadmore\";i:4;s:7:\"masonry\";i:5;s:10:\"pagination\";i:6;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:25\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:16:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:6:\"Carter\";s:5:\"alias\";s:23:\"masonryblog_jimmycarter\";s:3:\"zip\";s:27:\"masonryblog_jimmycarter.zip\";s:3:\"uid\";s:32:\"4832dc2a147e574f20c537b958f2d9ae\";s:3:\"img\";s:10:\"carter.jpg\";s:7:\"preview\";s:88:\"https://essential.themepunch.com/template_library/carter-masonry-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:104:\"<div class=\"hcap\">Masonry Blog Style<br/>3D Effect Hover<br/>Filters<br/>Pagination<br/>Nav Arrows</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:5:{i:0;s:9:\"filtering\";i:1;s:9:\"fullwidth\";i:2;s:7:\"masonry\";i:3;s:10:\"pagination\";i:4;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:31\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:16:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:6:\"Monroe\";s:5:\"alias\";s:16:\"even_grid_monroe\";s:3:\"zip\";s:20:\"even_grid_monroe.zip\";s:3:\"uid\";s:32:\"2399e4ae114ede833e881a78566050e8\";s:3:\"img\";s:10:\"monroe.jpg\";s:7:\"preview\";s:89:\"https://essential.themepunch.com/template_library/monroe-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:95:\"<div class=\"hcap\">3x4 Grid<br/>Static Caption<br/>Button on Hover<br/>Filters<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:39\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:16:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:7:\"Madison\";s:5:\"alias\";s:17:\"even_grid_madison\";s:3:\"zip\";s:21:\"even_grid_madison.zip\";s:3:\"uid\";s:32:\"0e0e929128e8f9047da8e95ed37da4f6\";s:3:\"img\";s:11:\"madison.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/madison-even-grid-wordpress-woocommerce-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:97:\"<div class=\"hcap\">4x3 Grid<br/>Dark Flip Hovers<br/>Link & Lightbox Icons<br/>No Navigation</div>\";s:11:\"setup_notes\";s:67:\"Build for WooCommerce Products <br>\r\nbut any content type will fit.\";s:6:\"filter\";a:2:{i:0;s:4:\"even\";i:1;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-15 10:53:06\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:16:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:5:\"Adams\";s:5:\"alias\";s:15:\"even_grid_adams\";s:3:\"zip\";s:19:\"even_grid_adams.zip\";s:3:\"uid\";s:32:\"2b48888d484376485f80a175876907c6\";s:3:\"img\";s:9:\"adams.jpg\";s:7:\"preview\";s:98:\"https://essential.themepunch.com/template_library/adams-variable-fullwidth-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:119:\"<div class=\"hcap\">Custom Row Grid<br/>Green Hovers<br/>Link & Lightbox Icons<br/>Filters & Sorting<br/>Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:6:{i:0;s:4:\"even\";i:1;s:14:\"filterdropdown\";i:2;s:9:\"filtering\";i:3;s:10:\"pagination\";i:4;s:7:\"sorting\";i:5;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:04:53\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:16:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:10:\"Washington\";s:5:\"alias\";s:20:\"even_grid_washington\";s:3:\"zip\";s:24:\"even_grid_washington.zip\";s:3:\"uid\";s:32:\"81fa93476a5e8ecd8efa146f54c2bd5d\";s:3:\"img\";s:14:\"washington.jpg\";s:7:\"preview\";s:101:\"https://essential.themepunch.com/template_library/washington-tranparent-hover-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:119:\"<div class=\"hcap\">3x3 Grid<br/>Dark Opacity Hovers<br/>Link & Lightbox Icons<br/>Filters & Pagination<br/>Sorting</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:10:\"pagination\";i:3;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-14 15:05:09\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:16:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:6:\"Mullen\";s:5:\"alias\";s:10:\"joe-mullen\";s:3:\"zip\";s:14:\"joe-mullen.zip\";s:3:\"uid\";s:32:\"904cc1afb3d66ab851b199f0dd647b7b\";s:3:\"img\";s:14:\"joe-mullen.jpg\";s:7:\"preview\";s:82:\"https://essential.themepunch.com/template_library/joe-mullen-custom-image-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:81:\"<div class=\"hcap\">Custom Row Grid<br/>DarkHover<br/>Minimal<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:9:\"fullwidth\";i:1;s:12:\"nonavigation\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:32:49\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:16:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:10:\"Jari Kurri\";s:5:\"alias\";s:10:\"jari-kurri\";s:3:\"zip\";s:14:\"jari-kurri.zip\";s:3:\"uid\";s:32:\"1c4b4785e797ad2222d1f7fecab79649\";s:3:\"img\";s:14:\"jari-kurri.jpg\";s:7:\"preview\";s:83:\"https://essential.themepunch.com/template_library/jari-kurri-photograher-portfolio/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:97:\"<div class=\"hcap\">Custom Row Grid<br/>Filter Hover<br/>Stylish<br/>flickr Source (variable)</div>\";s:11:\"setup_notes\";s:98:\"Template was built with flickr Source,<br/>\r\neither add flickr API key or<br/>\r\nchange source type\";s:6:\"filter\";a:3:{i:0;s:12:\"nonavigation\";i:1;s:7:\"streams\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:32:28\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:16:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Wayne Gretzky\";s:5:\"alias\";s:13:\"wayne-gretzky\";s:3:\"zip\";s:17:\"wayne-gretzky.zip\";s:3:\"uid\";s:32:\"c4c1a976fc6236fac530d21ef5b88a46\";s:3:\"img\";s:11:\"gretzky.jpg\";s:7:\"preview\";s:88:\"https://essential.themepunch.com/template_library/wayne-gretzky-custom-white-space-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:97:\"<div class=\"hcap\">Custom Row Grid<br/>DarkHover<br/>Minimal<br/>Blank Items<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:4:{i:0;s:9:\"fullwidth\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:02\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:16:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:18:\"Viacheslav Fetisov\";s:5:\"alias\";s:18:\"viacheslav-fetisov\";s:3:\"zip\";s:11:\"fetisov.zip\";s:3:\"uid\";s:32:\"8c4bb3bc608390189df9aef958e88ff3\";s:3:\"img\";s:11:\"fetisov.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/viacheslav-fetisov-behance-portfolio/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:57:\"<div class=\"hcap\">Even Grid<br/>Stream<br>Portfolio</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a Behance API key<br>\r\n in the \"Source Tab\", also please clear <br>\r\nthe stream cache when you apply changes.\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:12:\"nonavigation\";i:2;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:11\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:16:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:14:\"Dark Portfolio\";s:5:\"alias\";s:14:\"portfolio-dark\";s:3:\"zip\";s:18:\"dark-portfolio.zip\";s:3:\"uid\";s:32:\"8ef34fed7cda3055b56f18510439f363\";s:3:\"img\";s:18:\"dark_portfolio.jpg\";s:7:\"preview\";s:76:\"https://essential.themepunch.com/template_library/dark-portfolio-photo-grid/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:74:\"<div class=\"hcap\">Custom Row Grid<br/>Red Hovers<br/>Read More Badge</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:7:\"masonry\";i:1;s:12:\"nonavigation\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:49\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:16:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:10:\"My YouTube\";s:5:\"alias\";s:10:\"my-youtube\";s:3:\"zip\";s:14:\"my-youtube.zip\";s:3:\"uid\";s:32:\"7f118ae4b11b24445fe533cc96763e94\";s:3:\"img\";s:14:\"my_youtube.jpg\";s:7:\"preview\";s:70:\"https://essential.themepunch.com/template_library/my-youtube-playlist/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:80:\"<div class=\"hcap\">Variable Columns<br/>Stream<br>Views, Likes<br>Load More</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a YouTube API key<br>\r\n in the \"Source Tab\", also please clear the<br>\r\n stream cache when you apply changes.\";s:6:\"filter\";a:6:{i:0;s:8:\"loadmore\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:7:\"streams\";i:4;s:15:\"variablecolumns\";i:5;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:38\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:16:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:12:\"My YouTube 2\";s:5:\"alias\";s:12:\"my-youtube-2\";s:3:\"zip\";s:16:\"my-youtube-2.zip\";s:3:\"uid\";s:32:\"bd4ce42cbad845ee3f6d295f14224a00\";s:3:\"img\";s:16:\"my_youtube_2.jpg\";s:7:\"preview\";s:70:\"https://essential.themepunch.com/template_library/my-youtube-2-player/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:80:\"<div class=\"hcap\">Variable Columns<br/>Stream<br>Views, Likes<br>Load More</div>\";s:11:\"setup_notes\";s:133:\"You will need to insert a YouTube API key<br>\r\n in the \"Source Tab\", also please clear the<br>\r\n stream cache when you apply changes.\";s:6:\"filter\";a:5:{i:0;s:8:\"loadmore\";i:1;s:12:\"nonavigation\";i:2;s:7:\"streams\";i:3;s:15:\"variablecolumns\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 13:51:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:16:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:8:\"My Vimeo\";s:5:\"alias\";s:8:\"my-vimeo\";s:3:\"zip\";s:12:\"my-vimeo.zip\";s:3:\"uid\";s:32:\"d0235dd2ccce6602197882e423d32b88\";s:3:\"img\";s:12:\"my_vimeo.jpg\";s:7:\"preview\";s:68:\"https://essential.themepunch.com/template_library/my-vimeo-playlist/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:80:\"<div class=\"hcap\">Variable Columns<br/>Stream<br>Views, Likes<br>Load More</div>\";s:11:\"setup_notes\";s:59:\"Please clear the stream cache<br> \r\nwhen you apply changes.\";s:6:\"filter\";a:4:{i:0;s:8:\"loadmore\";i:1;s:7:\"streams\";i:2;s:15:\"variablecolumns\";i:3;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:25\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:16:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:12:\"My Instagram\";s:5:\"alias\";s:12:\"my-instagram\";s:3:\"zip\";s:16:\"my-instagram.zip\";s:3:\"uid\";s:32:\"58ced5a252fa1998a8cdb95ee2cd01d8\";s:3:\"img\";s:16:\"my-instagram.jpg\";s:7:\"preview\";s:72:\"https://essential.themepunch.com/template_library/instagram-grid-photos/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:76:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Pagination<br>Shape hover</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when<br>\r\n you apply changes to the stream source.\";s:6:\"filter\";a:4:{i:0;s:7:\"masonry\";i:1;s:10:\"pagination\";i:2;s:7:\"streams\";i:3;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:16\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:16:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:14:\"My Instagram 2\";s:5:\"alias\";s:14:\"my-instagram-2\";s:3:\"zip\";s:18:\"my-instagram-2.zip\";s:3:\"uid\";s:32:\"f5094a245731501bc553295ee5582a04\";s:3:\"img\";s:18:\"my-instagram-2.jpg\";s:7:\"preview\";s:79:\"https://essential.themepunch.com/template_library/my-instagram-2-funky-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">Masonry Grid<br/>Stream<br>Pagination<br>Shape animation hover</div>\";s:11:\"setup_notes\";s:80:\"Please clear the stream cache when<br>\r\n you apply changes to the stream source.\";s:6:\"filter\";a:5:{i:0;s:7:\"masonry\";i:1;s:10:\"pagination\";i:2;s:7:\"streams\";i:3;s:15:\"variablecolumns\";i:4;s:5:\"video\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:34:07\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:16:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:16:\"My Handmade Blog\";s:5:\"alias\";s:16:\"my-handmade-blog\";s:3:\"zip\";s:15:\"my-handmade.zip\";s:3:\"uid\";s:32:\"162fa8de74410bb015f86cb4a7e7ef6c\";s:3:\"img\";s:15:\"my-handmade.jpg\";s:7:\"preview\";s:81:\"https://essential.themepunch.com/template_library/my-handmade-blog-post-overview/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:88:\"<div class=\"hcap\">Custom Row Grid<br/>Dark Hover<br/>Social Button<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:2:{i:0;s:12:\"nonavigation\";i:1;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:58\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:16:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:15:\"Furniture Store\";s:5:\"alias\";s:15:\"furniture-store\";s:3:\"zip\";s:28:\"furniture_store_complete.zip\";s:3:\"uid\";s:32:\"6a1d870475b15c3fbdad65edbcadd56a\";s:3:\"img\";s:19:\"furniture-store.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/furniture-shop-lightbox-grid-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:85:\"<div class=\"hcap\">Custom Row Grid<br/>Lightbox for Detail Grids<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:142:\"5MB Download File (contact our support for single grids)<br>\r\nImports images to the media library<br>\r\nChange them on the single grid item<br>\";s:6:\"filter\";a:2:{i:0;s:7:\"masonry\";i:1;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-26 14:19:22\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:16:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:12:\"Denis Savard\";s:5:\"alias\";s:12:\"denis-savard\";s:3:\"zip\";s:16:\"denis-savard.zip\";s:3:\"uid\";s:32:\"9ce04544808c29a3b251f92954c4cfb3\";s:3:\"img\";s:16:\"denis-savard.jpg\";s:7:\"preview\";s:76:\"https://essential.themepunch.com/template_library/denis-savard-logo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:81:\"<div class=\"hcap\">Custom Row Grid<br/>DarkHover<br/>Minimal<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:7:\"clients\";i:1;s:12:\"nonavigation\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:47\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:16:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:14:\"Dale Hawerchuk\";s:5:\"alias\";s:14:\"Dale Hawerchuk\";s:3:\"zip\";s:18:\"dale-hawerchuk.zip\";s:3:\"uid\";s:32:\"4c0bccc86e570cb89b6fc6a3b480acc3\";s:3:\"img\";s:18:\"dale-hawerchuk.jpg\";s:7:\"preview\";s:80:\"https://essential.themepunch.com/template_library/dale-hawerchuk-flickr-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:89:\"<div class=\"hcap\">Even Grid<br/>Dark Hover<br/>Stylish<br/>flickr Source (variable)</div>\";s:11:\"setup_notes\";s:98:\"Template was built with flickr Source,<br/>\r\neither add flickr API key or<br/>\r\nchange source type\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:12:\"nonavigation\";i:2;s:7:\"streams\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:39\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:16:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:14:\"Bernie Federko\";s:5:\"alias\";s:14:\"bernie-federko\";s:3:\"zip\";s:18:\"bernie-federko.zip\";s:3:\"uid\";s:32:\"f61204a7be405bc1f8f801fe346d0c13\";s:3:\"img\";s:17:\"berni-federko.jpg\";s:7:\"preview\";s:83:\"https://essential.themepunch.com/template_library/bernie-federko-portfolio-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:101:\"<div class=\"hcap\">Custom Row Grid<br/>Tooltip Hover<br/>Minimal<br/>Blank Items<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:4:{i:0;s:7:\"clients\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:31\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:16:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:16:\"Bernie Federko 2\";s:5:\"alias\";s:16:\"bernie-federko-2\";s:3:\"zip\";s:20:\"bernie-federko-2.zip\";s:3:\"uid\";s:32:\"8646eefad5b1446954e16e7c0aa1e087\";s:3:\"img\";s:20:\"bernie-federko-2.jpg\";s:7:\"preview\";s:85:\"https://essential.themepunch.com/template_library/bernie-federko-2-portfolio-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:99:\"<div class=\"hcap\">Custom Row Grid<br/>Funky Hover<br/>Minimal<br/>Blank Items<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:4:{i:0;s:7:\"clients\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2019-01-08 12:33:23\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:16:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:6:\"Wilson\";s:5:\"alias\";s:13:\"woodrowwilson\";s:3:\"zip\";s:17:\"woodrowwilson.zip\";s:3:\"uid\";s:32:\"39d28845e10f32a759a27cdacba84693\";s:3:\"img\";s:10:\"wilson.jpg\";s:7:\"preview\";s:94:\"https://essential.themepunch.com/template_library/wilson-stylish-light-wordpress-post-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:78:\"<div class=\"hcap\">Variable Columns<br/>Clean Hover<br/>Filter/Pagination</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:10:\"pagination\";i:3;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2018-11-15 10:51:38\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:16:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:12:\"Honus Wagner\";s:5:\"alias\";s:12:\"honus_wagner\";s:3:\"zip\";s:16:\"honus_wagner.zip\";s:3:\"uid\";s:32:\"460d8adc56999b662544efc5eef707b5\";s:3:\"img\";s:16:\"honus_wagner.jpg\";s:7:\"preview\";s:95:\"https://essential.themepunch.com/template_library/honus-wagner-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">Masonry Blog Style<br/>Minimal Hover<br/>Filters<br/>Load More</div>\";s:11:\"setup_notes\";s:156:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a>\";s:6:\"filter\";a:3:{i:0;s:8:\"loadmore\";i:1;s:7:\"masonry\";i:2;s:12:\"nonavigation\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-04 14:18:42\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:16:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:9:\"Babe Ruth\";s:5:\"alias\";s:9:\"babe_ruth\";s:3:\"zip\";s:13:\"babe_ruth.zip\";s:3:\"uid\";s:32:\"83fb845082470890ca3d1096e1f971c4\";s:3:\"img\";s:13:\"babe_ruth.jpg\";s:7:\"preview\";s:92:\"https://essential.themepunch.com/template_library/babe-ruth-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:86:\"<div class=\"hcap\">Full Width 1:1 Grid<br/>Clean White Hover<br/>Grayscale Filter</div>\";s:11:\"setup_notes\";s:228:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nUse Global Option Media Filters for setting the Grayscale effect.\";s:6:\"filter\";a:1:{i:0;s:4:\"even\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-04 14:18:50\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:16:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:19:\"Dark Post Blog Grid\";s:5:\"alias\";s:14:\"dark_post_grid\";s:3:\"zip\";s:18:\"dark_post_grid.zip\";s:3:\"uid\";s:32:\"a421dd24c6d1b485b87938a6a5309fe3\";s:3:\"img\";s:13:\"dark_post.jpg\";s:7:\"preview\";s:87:\"https://essential.themepunch.com/template_library/dark-blog-post-gallery-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:72:\"<div class=\"hcap\">Even Grid<br/>Dark Hover<br/>Fancy<br/>Post Grid</div>\";s:11:\"setup_notes\";s:219:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nActivate Stroke Icons in Global Options or change icons.\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:10:\"pagination\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-04 14:18:58\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:16:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:10:\"Grant Fuhr\";s:5:\"alias\";s:10:\"grant-fuhr\";s:3:\"zip\";s:14:\"grant-fuhr.zip\";s:3:\"uid\";s:32:\"985061e10cb0e4508664753321558ed5\";s:3:\"img\";s:8:\"fuhr.jpg\";s:7:\"preview\";s:59:\"https://www.essential-grid.com/template_library/grant-fuhr/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:106:\"<div class=\"hcap\">Custom Grid<br/>Mask Zoom Hover<br/>Colorful<br/>Perfect for Events, Photos, Posts</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"newupdate\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:39:37\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:16:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:14:\"Pat LaFontaine\";s:5:\"alias\";s:14:\"pat-lafontaine\";s:3:\"zip\";s:18:\"pat-lafontaine.zip\";s:3:\"uid\";s:32:\"35d905fa8c33ebce02611a398b963c70\";s:3:\"img\";s:18:\"pat-lafontaine.jpg\";s:7:\"preview\";s:63:\"https://www.essential-grid.com/template_library/pat-lafontaine/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:90:\"<div class=\"hcap\">Custom Grid<br/>Mask Zoom Hover<br/>Colorful<br/>Use it everywhere</div>\";s:11:\"setup_notes\";s:76:\"Imports images to the media library<br>\r\nChange them on the single grid item\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"newupdate\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:00\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:16:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:13:\"Clark Gillies\";s:5:\"alias\";s:13:\"clark-gillies\";s:3:\"zip\";s:17:\"clark-gillies.zip\";s:3:\"uid\";s:32:\"1687bd0ef44045e8407ac396f1c18558\";s:3:\"img\";s:17:\"clark-gillies.jpg\";s:7:\"preview\";s:62:\"https://www.essential-grid.com/template_library/clark-gillies/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:89:\"<div class=\"hcap\">Stylish post grid<br/>Blurred Hover<br/>Grayscale Filter optional</div>\";s:11:\"setup_notes\";s:231:\"Demo posts available via import menu.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nUse Global Option Media Filters for setting the Grayscale effect.\";s:6:\"filter\";a:3:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"newupdate\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:34\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:16:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:9:\"Uwe Krupp\";s:5:\"alias\";s:9:\"uwe-krupp\";s:3:\"zip\";s:13:\"uwe-krupp.zip\";s:3:\"uid\";s:32:\"6513fe05651720633c4028cdc4b48854\";s:3:\"img\";s:13:\"uwe-krupp.jpg\";s:7:\"preview\";s:58:\"https://www.essential-grid.com/template_library/uwe-krupp/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:83:\"<div class=\"hcap\">Even post Grid<br/>Clean Grayscale Hover<br/>Social Sharing</div>\";s:11:\"setup_notes\";s:228:\"Demo content available via import.<br> \r\n<a href=\"https://www.themepunch.com/faq/importing-demo-contents-for-esg-templates/\" target=\"_blank\">Learn more.</a> <br>\r\nUse Global Option Media Filters for setting the Grayscale effect.\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:9:\"newupdate\";i:3;s:7:\"sorting\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:25\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:16:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:14:\"Leon Draisaitl\";s:5:\"alias\";s:14:\"leon-draisaitl\";s:3:\"zip\";s:18:\"leon-draisaitl.zip\";s:3:\"uid\";s:32:\"90ae1e88586cc5121305195fc9ff274c\";s:3:\"img\";s:18:\"leon-draisaitl.jpg\";s:7:\"preview\";s:63:\"https://www.essential-grid.com/template_library/leon-draisaitl/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:73:\"<div class=\"hcap\">Even Grid<br/>Image swap on hover<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:80:\"Imports images to the media library<br>\r\nChange them on the single grid item<br>\";s:6:\"filter\";a:4:{i:0;s:4:\"even\";i:1;s:9:\"filtering\";i:2;s:8:\"loadmore\";i:3;s:9:\"newupdate\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:17\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:16:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:11:\"Rod Langway\";s:5:\"alias\";s:11:\"rod-langway\";s:3:\"zip\";s:15:\"rod-langway.zip\";s:3:\"uid\";s:32:\"1a913cbe2165117edf31e037f13f8d5d\";s:3:\"img\";s:15:\"rod-langway.jpg\";s:7:\"preview\";s:60:\"https://www.essential-grid.com/template_library/rod-langway/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"3.0.0\";s:11:\"description\";s:83:\"<div class=\"hcap\">Custom Row Grid<br/>Lens click hover effect<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:80:\"Imports images to the media library<br>\r\nChange them on the single grid item<br>\";s:6:\"filter\";a:3:{i:0;s:9:\"filtering\";i:1;s:9:\"newupdate\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-08-12 10:40:11\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:16:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:11:\"Ray Bourque\";s:5:\"alias\";s:11:\"ray-bourque\";s:3:\"zip\";s:15:\"ray-bourque.zip\";s:3:\"uid\";s:32:\"6b4ec25011d5ff873661f5432a9a6973\";s:3:\"img\";s:15:\"ray_bourque.jpg\";s:7:\"preview\";s:60:\"https://www.essential-grid.com/template_library/ray-bourque/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"2.3\";s:11:\"description\";s:83:\"<div class=\"hcap\">Custom Row Grid<br/>Clean grey hover effect<br/>Custom Grid</div>\";s:11:\"setup_notes\";s:80:\"Imports images to the media library<br>\r\nChange them on the single grid item<br>\";s:6:\"filter\";a:3:{i:0;s:9:\"filtering\";i:1;s:9:\"newupdate\";i:2;s:15:\"variablecolumns\";}s:3:\"cat\";s:1:\"1\";s:4:\"date\";s:19:\"2020-09-10 09:42:55\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}}}','no'),(651,'booking_form_field_label5','Details','yes'),(652,'booking_form_field_active6','Off','yes'),(677,'booking_is_email_newbookingbyperson_adress','Off','yes'),(678,'booking_email_newbookingbyperson_adress','&quot;Booking system&quot; &lt;alex@inspirable.com&gt;','yes'),(679,'booking_email_newbookingbyperson_subject','New booking','yes'),(680,'booking_email_newbookingbyperson_content','Your reservation [bookingtype] for: [dates] is processing now! We will send confirmation by email. &lt;br/&gt;&lt;br/&gt;[content]&lt;br/&gt;&lt;br/&gt; Thank you, Opulence Management&lt;br/&gt;[siteurl]','yes'),(681,'booking_is_email_approval_adress','On','yes'),(682,'booking_is_email_approval_send_copy_to_admin','Off','yes'),(683,'booking_email_approval_adress','&quot;Booking system&quot; &lt;alex@inspirable.com&gt;','yes'),(684,'booking_email_approval_subject','Your booking has been approved','yes'),(685,'booking_email_approval_content','Your booking [bookingtype] for: [dates] has been approved.&lt;br/&gt;&lt;br/&gt;[content]&lt;br/&gt;&lt;br/&gt;Thank you, Opulence Management&lt;br/&gt;[siteurl]','yes'),(686,'booking_is_email_deny_adress','On','yes'),(687,'booking_is_email_deny_send_copy_to_admin','Off','yes'),(688,'booking_email_deny_adress','&quot;Booking system&quot; &lt;alex@inspirable.com&gt;','yes'),(689,'booking_email_deny_subject','Your booking has been declined','yes'),(690,'booking_email_deny_content','Your booking [bookingtype] for: [dates] has been  canceled. &lt;br/&gt;[denyreason]&lt;br/&gt;&lt;br/&gt;[content]&lt;br/&gt;&lt;br/&gt;Thank you, Opulence Management&lt;br/&gt;[siteurl]','yes'),(691,'booking_widget_title','Booking form','yes'),(692,'booking_widget_show','booking_form','yes'),(693,'booking_widget_type','1','yes'),(694,'booking_widget_calendar_count','1','yes'),(695,'booking_widget_last_field','','yes'),(696,'booking_wpdev_copyright_adminpanel','On','yes'),(697,'booking_is_show_powered_by_notice','On','yes'),(698,'booking_is_use_captcha','Off','yes'),(699,'booking_is_show_legend','Off','yes'),(700,'booking_send_button_title','Check Availability','yes'),(701,'booking_legend_is_show_item_available','On','yes'),(702,'booking_legend_text_for_item_available','Available','yes'),(703,'booking_legend_is_show_item_pending','On','yes'),(704,'booking_legend_text_for_item_pending','Pending','yes'),(705,'booking_legend_is_show_item_approved','On','yes'),(706,'booking_legend_text_for_item_approved','Booked','yes'),(707,'booking_legend_is_show_numbers','Off','yes'),(708,'booking_email_new_admin','a:15:{s:7:\"enabled\";s:2:\"On\";s:2:\"to\";s:19:\"alex@inspirable.com\";s:7:\"to_name\";s:14:\"Booking system\";s:4:\"from\";s:19:\"alex@inspirable.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:11:\"New booking\";s:7:\"content\";s:274:\"You need to approve a new booking [bookingtype] for: [dates]<br/><br/> Person detail information:<br/> [content]<br/><br/> Currently a new booking is waiting for approval. Please visit the moderation panel [moderatelink]<br/><br/>Thank you, Opulence Management<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(709,'booking_email_new_visitor','a:13:{s:7:\"enabled\";s:2:\"On\";s:4:\"from\";s:19:\"alex@inspirable.com\";s:9:\"from_name\";s:14:\"Booking system\";s:7:\"subject\";s:11:\"New booking\";s:7:\"content\";s:173:\"Your reservation [bookingtype] for: [dates] is processing now! We will send confirmation by email. <br/><br/>[content]<br/><br/> Thank you, Opulence Management<br/>[siteurl]\";s:14:\"header_content\";s:0:\"\";s:14:\"footer_content\";s:0:\"\";s:13:\"template_file\";s:5:\"plain\";s:10:\"base_color\";s:7:\"#557da1\";s:16:\"background_color\";s:7:\"#f5f5f5\";s:10:\"body_color\";s:7:\"#fdfdfd\";s:10:\"text_color\";s:7:\"#505050\";s:18:\"email_content_type\";s:4:\"html\";}','yes'),(1365,'secret_key','ufsRYc az<+:@k0|}6%P|P:yExe%7#Ie6^=`7OAPXpJM``7Veukrfg/rrqr=Fmo(','no'),(1562,'7238c9070c32ed98a38810e053129a9a','a:2:{s:7:\"timeout\";i:1626478567;s:5:\"value\";a:16:{s:14:\"stable_version\";s:5:\"3.3.1\";s:12:\"last_updated\";s:19:\"2021-07-15 14:13:16\";s:8:\"sections\";s:23487:\"a:2:{s:11:\"description\";s:161:\"Elementor Pro adds new features to the Elementor Page Builder plugin. Control your conversions, your user engagement, your entire website, from one page builder.\";s:9:\"changelog\";s:23265:\"<h4>3.3.2 - 2021-07-13</h4>\n<ul>\n<li>Tweak: Updated plugin description</li>\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\"https://github.com/elementor/elementor/issues/11111\">#11111</a>)</li>\n<li>Fix: Clicking videos from the items list in edit mode doesn’t initiate videos properly</li>\n<li>Fix: User unauthorized message when activated but not connected in Kit Library</li>\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values</li>\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget</li>\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget</li>\n</ul>\n<h4>3.3.1 - 2021-06-20</h4>\n<ul>\n<li>Tweak: Added support for more Theme Builder display conditions in Export / Import experiment</li>\n<li>Tweak: Adjusted License page heading structure for future feature</li>\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature</li>\n<li>Fix: <code>frontend.min.js</code> file size increased in Elementor Pro 3.3.0 (<a href=\"https://github.com/elementor/elementor/issues/15278\">#15278</a>)</li>\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\"https://github.com/elementor/elementor/issues/13299\">#13299</a>)</li>\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\"https://github.com/elementor/elementor/issues/14519\">#14519</a>)</li>\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\"https://github.com/elementor/elementor/issues/10671\">#10671</a>)</li>\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag</li>\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget</li>\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget</li>\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget</li>\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget</li>\n<li>Fix: Import button is not working properly in Theme Builder interface</li>\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder</li>\n</ul>\n<h4>3.3.0 - 2021-06-08</h4>\n<ul>\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\"https://github.com/elementor/elementor/issues/11859\">#11859</a>, <a href=\"https://github.com/elementor/elementor/issues/7803\">#7803</a>)</li>\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\"https://github.com/elementor/elementor/issues/7282\">#7282</a>, <a href=\"https://github.com/elementor/elementor/issues/2768\">#2768</a>)</li>\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\"https://github.com/elementor/elementor/issues/13859\">#13859</a>, <a href=\"https://github.com/elementor/elementor/issues/13810\">#13810</a>)</li>\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\"https://github.com/elementor/elementor/issues/11111\">#11111</a>)</li>\n<li>Tweak: Added <code>elementor_pro/forms/record/actions_before</code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\"https://github.com/elementor/elementor/issues/14261\">#14261</a>)</li>\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting</li>\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\"https://github.com/elementor/elementor/issues/10329\">#10329</a>, <a href=\"https://github.com/elementor/elementor/issues/14229\">#14229</a>)</li>\n<li>Tweak: Added future support for Sticky JS library conditional loading</li>\n<li>Tweak: Added future support for Import / Export experiment</li>\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version</li>\n<li>Tweak: Added gradient button capabilities to Login widget buttons</li>\n<li>Tweak: Added gradient button capabilities to Slides widget button</li>\n<li>Tweak: Added gradient button capabilities to Price Table widget button</li>\n<li>Tweak: Added gradient button capabilities to Flip Box widget button</li>\n<li>Tweak: Added Code Highlight widget Developers Documentation</li>\n<li>Tweak: Adjusted Submissions page for future updates</li>\n<li>Tweak: Added <code>em</code> and <code>%</code> units for padding control in Carousel widgets</li>\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget</li>\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\"https://github.com/elementor/elementor/issues/7376\">#7376</a>, <a href=\"https://github.com/elementor/elementor/issues/10382\">#10382</a>)</li>\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\"https://github.com/elementor/elementor/issues/13519\">#13519</a>)</li>\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\"https://github.com/elementor/elementor/issues/9907\">#9907</a>)</li>\n<li>Fix: Hamburger toggle is not working in Nav menu widget</li>\n<li>Fix: Activation bug for IDN domains</li>\n<li>Fix: Conditions modal responsive glitches in Custom Code</li>\n<li>Fix: Duplicated strings in Custom Code module</li>\n<li>Fix: Enable resize option for code input field in Custom Code</li>\n<li>Fix: &quot;Save &amp; Close &quot;button in Custom Code\'s Conditions modal was not visible on small screen sizes</li>\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section</li>\n<li>Fix: Recommend option is cut If the layout is not &quot;Standard&quot; in the Facebook Button widget</li>\n<li>Fix: Video item does not play without adding an image in Media Carousel widget</li>\n<li>Fix: <code>search-plus</code> icon missing from panel in Media Carousel widget</li>\n<li>Fix: UI hover state glitch in Media Carousel widget</li>\n<li>Fix: PHP notice was thrown when trying to import a kit without overrideConditions parameter in Kit Import flow</li>\n<li>Fix: Templates conditions not imported if there are no conflicts in Import Export Experiment</li>\n<li>Fix: Non english values are not encoded properly on Submissions export</li>\n<li>Fix: Theme Builder import is not working properly</li>\n<li>Fix: UI glitch when no global widgets were found in Editor Panel</li>\n<li>Deprecated: See all deprecations to this version in our <a href=\"https://developers.elementor.com/v3-3-planned-deprecations/\">Developers Deprecations Post</a></li>\n</ul>\n<h4>3.2.2 - 2021-05-05</h4>\n<ul>\n<li>Tweak: Added support for Expert tier templates in Templates Library</li>\n<li>Tweak: Updated compatibility tag to support Elementor v3.2.x</li>\n<li>Tweak: Added compatibility for future Library improvements</li>\n<li>Fix: Toolset image dynamic field is not working with Gallery widget</li>\n</ul>\n<h4>3.2.1 - 2021-03-21</h4>\n<ul>\n<li>Tweak: Added strings context in PayPal button and Price Table widgets</li>\n<li>Tweak: Added support for future Import / Export Kit feature</li>\n<li>Fix: Submissions with over than 191 characters weren\'t indexed properly</li>\n</ul>\n<h4>3.2.0 - 2021-03-16</h4>\n<ul>\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site</li>\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\"https://github.com/elementor/elementor/issues/1686\">#1686</a>)</li>\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\"https://github.com/elementor/elementor/issues/7956\">#7956</a>)</li>\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget</li>\n<li>Tweak: Changed descriptive text in Create Custom Code screen</li>\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget</li>\n<li>Tweak: Added support for future load on demand for <code>share-link</code> library</li>\n<li>Tweak: Added support for future load on demand for <code>dialog</code> library in Popup</li>\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain</li>\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\"https://github.com/elementor/elementor/issues/13951\">#13951</a>)</li>\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\"https://github.com/elementor/elementor/issues/13971\">#13971</a>)</li>\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files</li>\n<li>Fix: Conditions modal is not responsive in Custom Code</li>\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen</li>\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget</li>\n<li>Fix: Unnecessary Save Draft button in Custom Code</li>\n<li>Fix: RTL glitches in Custom Code</li>\n<li>Fix: Sanitized options in the editor to enforce better security policies</li>\n<li>Deprecated: See all deprecations to this version in our (<a href=\"https://developers.elementor.com/v3-2-planned-deprecations/\">Developers Deprecations Post</a>)</li>\n</ul>\n<h4>3.1.1 - 2021-02-23</h4>\n<ul>\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget</li>\n<li>Fix: Popup event handler is undefined (<a href=\"https://github.com/elementor/elementor/issues/11475\">#11475</a>, <a href=\"https://github.com/elementor/elementor/issues/10690\">#10690</a>)</li>\n<li>Fix: Conditions modal is not responsive in Custom Code</li>\n<li>Fix: RTL glitches in Code Highlight widget</li>\n<li>Fix: Minor UI glitches in Code Highlight widget</li>\n<li>Fix: Users can\'t get Pro Developer Edition version updates</li>\n</ul>\n<h4>3.1.0 - 2021-02-16</h4>\n<ul>\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head</code>, <code>body</code> start and <code>body</code> end</li>\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\"https://github.com/elementor/elementor/issues/5815\">#5815</a>)</li>\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\"https://github.com/elementor/elementor/issues/8572\">#8572</a>, <a href=\"https://developers.elementor.com/experiment-optimized-asset-loading/\">Developer Documentation</a>)</li>\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\"https://developers.elementor.com/compatibility-tag/\">Developer Documentation</a>)</li>\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\"https://github.com/elementor/elementor/issues/4625\">#4625</a>, <a href=\"https://github.com/elementor/elementor/issues/8569\">#8569</a>)</li>\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\"https://github.com/elementor/elementor/issues/5403\">#5403</a>, <a href=\"https://github.com/elementor/elementor/issues/7826\">#7826</a>)</li>\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\"https://github.com/elementor/elementor/issues/9749\">#9749</a>, <a href=\"https://github.com/elementor/elementor/issues/2457\">#2457</a>)</li>\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\"https://github.com/elementor/elementor/issues/4392\">#4392</a>)</li>\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\"https://github.com/elementor/elementor/issues/8569\">#8569</a>)</li>\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\"https://github.com/elementor/elementor/issues/4242\">#4242</a>, <a href=\"https://github.com/elementor/elementor/issues/8569\">#8569</a>)</li>\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\"https://github.com/elementor/elementor/issues/13577\">#13577</a>)</li>\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1</li>\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\"https://developers.elementor.com/how-to-add-a-repeater-control-to-elementor-add-on/\">Developer Documentation</a>)</li>\n<li>Tweak: Added &quot;Show on Browsers&quot; Popup Advanced Rule</li>\n<li>Tweak: Added real-time JS handling to prevent redundant renders in Slides widget and all Carousel widgets</li>\n<li>Tweak: Import scroll utility from core and remove it from Pro</li>\n<li>Tweak: Added alignment options for Post Excerpt widget (<a href=\"https://github.com/elementor/elementor/issues/9757\">#9757</a>)</li>\n<li>Tweak: Changed alignment control to work with selectors in Share Buttons</li>\n<li>Tweak: Upgraded to Webpack 5, Grunt-Webpack 4 and TerserPlugin instead of UglifyJsPlugin</li>\n<li>Fix: Steps Divider is not vertically aligned in Multi Step Form widget (<a href=\"https://github.com/elementor/elementor/issues/12569\">#12569</a>)</li>\n<li>Fix: Slides are playing in an infinite loop mode even when the option is disabled in Slides Widget (<a href=\"https://github.com/elementor/elementor/issues/6726\">#6726</a>)</li>\n<li>Fix: Redundant spacing is added to Share Buttons widget</li>\n<li>Fix: Step buttons text is not updated without a page reload in Forms widget</li>\n<li>Fix: Overflow issue in certain animations in Animated Headline widget</li>\n<li>Fix: When dragging a new Testimonial Carousel there is a console error thrown</li>\n<li>Fix: Step Buttons are cut in mobile view in Multi Step Form</li>\n<li>Fix: Submit and Step buttons size differences when using Twenty Twenty theme</li>\n<li>Fix: Duplicate button Text Color control in Slides widget</li>\n<li>Fix: JS error is thrown when editing and saving global widgets</li>\n<li>Fix: <code>get_version</code> API function may fail with Redis / DB cache</li>\n<li>Fix: Multiple license check requests are created in certain cases</li>\n<li>Deprecated: Deprecate methods prefixed with an underscore and replace them with unprefixed methods</li>\n<li>Deprecated: See all deprecations to this version in our <a href=\"https://developers.elementor.com/v3-1-planned-deprecations/\">Developers Deprecations Post</a></li>\n</ul>\n<h4>3.0.10 - 2021-01-20</h4>\n<ul>\n<li>Tweak: Added Editing Handles string translation compatibility with Elementor Pro v3.1</li>\n</ul>\n<h4>3.0.9 - 2020-12-29</h4>\n<ul>\n<li>Tweak: Added compatibility to support Elementor 3.1.0</li>\n<li>Fix: Wrong phrasing of Import template success message in Theme Builder</li>\n<li>Fix: Border color glitch in Theme Builder</li>\n</ul>\n<h4>3.0.8 - 2020-11-26</h4>\n<ul>\n<li>Fix: Navigation arrows UI glitch in Media Carousel widget (<a href=\"https://github.com/elementor/elementor/issues/13172\">#13172</a>)</li>\n</ul>\n<h4>3.0.7 - 2020-11-25</h4>\n<ul>\n<li>Fix: Console Error when dragging Testimonials Carousel widget</li>\n<li>Fix: Arrows of Testimonial and Reviews Carousel widgets navigate to the wrong direction in RTL websites</li>\n<li>Fix: Removed the conditional loading of Webpack</li>\n<li>Fix: Fatal error is thrown after deleting an associated custom taxonomy when Posts widget with Cards skin has a badge</li>\n<li>Fix: Upload JSON files only when the user allowed to prevent security issues</li>\n<li>Fix: Gallery not displayed in Theme Builder templates preview</li>\n</ul>\n<h4>3.0.6 - 2020-11-04</h4>\n<ul>\n<li>Tweak: Updated the embedded post in Facebook Embed widget</li>\n<li>Fix: Minor UI glitches in Theme Builder\'s conditions screen footer</li>\n<li>Fix: Template type changes into Single Page after conditions change in Theme Builder</li>\n<li>Fix: Redundant Custom Caption option in Site Logo widget</li>\n<li>Fix: Removed unused code in Drip integration</li>\n<li>Fix: Removed Weibo and WeChat social networks due to website and links inactivity from Share Buttons widget</li>\n<li>Fix: Removed redundant code from Portfolio and Post Navigation widgets</li>\n</ul>\n<h4>3.0.5 - 2020-09-23</h4>\n<ul>\n<li>Fix: If the default page layout is set to &quot;Canvas&quot; Headers and Footers cannot be edited</li>\n<li>Fix: Product Image Dynamic Tag throws an error when no image is set</li>\n<li>Fix: Missing Single document placeholder in Theme Builder</li>\n<li>Fix: Document editing handles inherit the <code>font-family</code> from 3rd party source</li>\n<li>Fix: Can\'t add linebreaks to Textarea input when used as Multi Step Form</li>\n<li>Fix: Incorrect width in Facebook Page widget</li>\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder</li>\n</ul>\n<h4>3.0.4 - 2020-09-09</h4>\n<ul>\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\"https://github.com/elementor/elementor/issues/12304\">#12304</a>)</li>\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\"https://github.com/elementor/elementor/issues/12126\">#12126</a>, <a href=\"https://github.com/elementor/elementor/issues/12127\">#12127</a>)</li>\n<li>Fix: Shrinking conditions indicator in Theme Builder</li>\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget</li>\n<li>Fix: Styles are missing from Single templates in some edge cases</li>\n</ul>\n<h4>3.0.3 - 2020-09-02</h4>\n<ul>\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\"https://github.com/elementor/elementor/issues/12126\">#12126</a>, <a href=\"https://github.com/elementor/elementor/issues/12127\">#12127</a>)</li>\n<li>Fix: Change delete template action to &quot;Move to Trash&quot; in the new Theme Builder view</li>\n</ul>\n<h4>3.0.2 - 2020-08-31</h4>\n<ul>\n<li>Tweak: Replaced WordPress &quot;Learn More&quot; links with dynamic links for better control over time (<a href=\"https://github.com/elementor/elementor/issues/12312\">#12312</a>)</li>\n<li>Tweak: UI tweaks to the Conditions screen In the new Theme Builder</li>\n<li>Fix: Motion Effects not working when assigned to a column and throws JS error when DOM optimization is disabled (<a href=\"https://github.com/elementor/elementor/issues/12299\">#12299</a>, <a href=\"https://github.com/elementor/elementor/issues/12275\">#12275</a>)</li>\n<li>Fix: Multiple Galleries display all the images in the Lightbox slideshow (<a href=\"https://github.com/elementor/elementor/issues/11809\">#11809</a>)</li>\n<li>Fix: Old Theme Builder is being opened when accessing through the Finder</li>\n<li>Fix: Mixed templates import glitch in Theme Builder</li>\n<li>Fix: Card icon sizes in Theme Builder</li>\n<li>Fix: Preview button leads to <code>render_mode</code> instead of preview when importing a template from the new Theme Builder</li>\n</ul>\n<h4>3.0.1 - 2020-08-26</h4>\n<ul>\n<li>Tweak: Keep previous Theme Builder when accessing from the WP Dashboard for legacy support</li>\n<li>Tweak: Updated video tutorials in Theme Builder</li>\n<li>Tweak: Don\'t show auto-screenshots in the Media Library (Props <a href=\"https://github.com/black-eye\">@black-eye</a>)</li>\n<li>Fix: Repeater items throws <code>childView</code> is undefined message in Forms widget (<a href=\"https://github.com/elementor/elementor/issues/12239\">#12239</a>, <a href=\"https://github.com/elementor/elementor/issues/12221\">#12221</a>)</li>\n<li>Fix: Misspelling of the word &quot;occurred&quot; in Form widget default error message (<a href=\"https://github.com/elementor/elementor/issues/12137\">#12137</a>)</li>\n<li>Fix: Facebook comments not showing up (<a href=\"https://github.com/elementor/elementor/issues/12157\">#12157</a>)</li>\n<li>Fix: Check for conflicts in Theme Builder doesn\'t work properly</li>\n<li>Fix: Minor UI fixes in Theme Builder</li>\n<li>Fix: Dark mode glitches in Theme Builder</li>\n<li>Fix: Global Site Part toaster appears when you publish a Popup</li>\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder</li>\n<li>Fix: Date field caused forms to get corrupted in Forms widget</li>\n<li>Fix: Theme Builder application page is forbidden</li>\n</ul>\n<h4>3.0.0 - 2020-08-23</h4>\n<ul>\n<li>New: Introducing the new and improved Theme Builder</li>\n<li>Tweak: Removed <code>.elementor-inner</code> and <code>.elementor-column-wrap</code> from DOM output to improve performance (<a href=\"https://github.com/elementor/elementor/issues/7351\">#7351</a>, <a href=\"https://github.com/elementor/elementor/issues/7817\">#7817</a>, <a href=\"https://developers.elementor.com/dom-improvements-ahead-html-wrappers-removal-from-v3-0/\">Developers Blog Post</a>)</li>\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\"https://github.com/elementor/elementor/issues/10052\">#10052</a>)</li>\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\"https://github.com/elementor/elementor/issues/11554\">#11554</a>)</li>\n<li>Tweak: Added Dynamic capabilities for Redirect after Login/Logout in Login widget (<a href=\"https://github.com/elementor/elementor/issues/11343\">#11343</a>)</li>\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\"https://github.com/elementor/elementor/issues/11653\">#11653</a>)</li>\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\"https://github.com/elementor/elementor/issues/8269\">#8269</a>)</li>\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\"https://github.com/elementor/elementor/issues/11968\">#11968</a>)</li>\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\"https://github.com/elementor/elementor/issues/10364\">#10364</a>)</li>\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts</li>\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget</li>\n<li>Tweak: Removed unnecessary style in WC Product with variations</li>\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\"https://developers.elementor.com/elementor-dropping-support-ie/\">Developers Blog Post</a>)</li>\n<li>Tweak: Added Date Modified option to Posts widget metadata</li>\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\"https://github.com/elementor/elementor/issues/11355\">#11355</a>)</li>\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\"https://github.com/elementor/elementor/issues/11628\">#11628</a>)</li>\n<li>Fix: Color doesn’t change in Products Archive Description widget</li>\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin</li>\n<li>Fix: WC Product variations layout issue</li>\n<li>Fix: WC Product variations mobile zoom-in glitch</li>\n<li>Fix: Can\'t edit a Popup after accessing Theme Style</li>\n<li>Fix: Twitter icon missing in Blockquote widget</li>\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin</li>\n<li>Fix: UI glitch in Display Conditions modal</li>\n<li>Fix: Insert template button UI glitch in Templates Library</li>\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security</li>\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup</li>\n<li>Fix: Child categories are shown with a different parent category in Query control</li>\n<li>Deprecated: See all deprecations to this version in our <a href=\"https://developers.elementor.com/v3-0-planned-deprecations/\">Developers Deprecations Post</a></li>\n</ul>\";}\";s:11:\"new_version\";s:5:\"3.3.1\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.7.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:168:\"http://my.elementor.com/edd-sl/package_download/MTYyNjUyMTc2NzpMaWNlbmNlIEhhY2tlZDoxOjNjNjBiYzU5ZGMwMzlkYTY3MTI3ZmMzMWJmNjNjMmFkOmh0dHBzQC8vb203NzE3LmRldjM0LmluZm86MA==\";s:13:\"download_link\";s:168:\"http://my.elementor.com/edd-sl/package_download/MTYyNjUyMTc2NzpMaWNlbmNlIEhhY2tlZDoxOjNjNjBiYzU5ZGMwMzlkYTY3MTI3ZmMzMWJmNjNjMmFkOmh0dHBzQC8vb203NzE3LmRldjM0LmluZm86MA==\";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:5:\"icons\";a:1:{s:3:\"svg\";s:42:\"https://ps.w.org/elementor/assets/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.3.2\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"5.7.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:173:\"http://my.elementor.com/edd-sl/previous_download/MTYyNjUyMTc2NzpMaWNlbmNlIEhhY2tlZDoxOjMuMy4yOjBhZTNkNjRlMzA0NjU1NDQzZmJhYWUyZGNlMzg1NjViOmh0dHBzQC8vb203NzE3LmRldjM0LmluZm8=\";s:13:\"download_link\";s:173:\"http://my.elementor.com/edd-sl/previous_download/MTYyNjUyMTc2NzpMaWNlbmNlIEhhY2tlZDoxOjMuMy4yOjBhZTNkNjRlMzA0NjU1NDQzZmJhYWUyZGNlMzg1NjViOmh0dHBzQC8vb203NzE3LmRldjM0LmluZm8=\";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:5:\"icons\";a:1:{s:3:\"svg\";s:42:\"https://ps.w.org/elementor/assets/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:4:{s:4:\"type\";s:6:\"plugin\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:7:\"version\";s:5:\"3.3.0\";s:8:\"operator\";s:2:\">=\";}}}}}}','no'),(1919,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2050,'_site_transient_timeout_theme_roots','1628026274','no'),(2051,'_site_transient_theme_roots','a:5:{s:12:\"rentex-child\";s:7:\"/themes\";s:6:\"rentex\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(2053,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1628024475;s:8:\"response\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:6:\"4.1.10\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/akismet.4.1.10.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";b:0;}s:25:\"booking/wpdev-booking.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/booking\";s:4:\"slug\";s:7:\"booking\";s:6:\"plugin\";s:25:\"booking/wpdev-booking.php\";s:11:\"new_version\";s:5:\"8.8.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/booking/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/booking.8.8.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/booking/assets/icon-256x256.png?rev=1730848\";s:2:\"1x\";s:60:\"https://ps.w.org/booking/assets/icon-128x128.png?rev=1730848\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/booking/assets/banner-772x250.png?rev=1623635\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{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.4.2\";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.4.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.5\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";b:0;}s:32:\"duplicate-page/duplicatepage.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-page\";s:4:\"slug\";s:14:\"duplicate-page\";s:6:\"plugin\";s:32:\"duplicate-page/duplicatepage.php\";s:11:\"new_version\";s:5:\"4.4.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/duplicate-page.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-page/assets/icon-128x128.jpg?rev=1412874\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-page/assets/banner-772x250.jpg?rev=1410328\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";b:0;}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:\"3.3.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.3.1.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:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"5.6\";}s:21:\"ulisting/uListing.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:22:\"w.org/plugins/ulisting\";s:4:\"slug\";s:8:\"ulisting\";s:6:\"plugin\";s:21:\"ulisting/uListing.php\";s:11:\"new_version\";s:5:\"2.0.7\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/ulisting/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/ulisting.2.0.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/ulisting/assets/icon-256x256.png?rev=2056532\";s:2:\"1x\";s:61:\"https://ps.w.org/ulisting/assets/icon-128x128.png?rev=2056532\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/ulisting/assets/banner-1544x500.png?rev=2056532\";s:2:\"1x\";s:63:\"https://ps.w.org/ulisting/assets/banner-772x250.png?rev=2056532\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";b:0;}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:5:\"4.8.6\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.8.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";s:3:\"5.3\";}s:24:\"booking-system/dopbs.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/booking-system\";s:4:\"slug\";s:14:\"booking-system\";s:6:\"plugin\";s:24:\"booking-system/dopbs.php\";s:11:\"new_version\";s:9:\"2.9.9.2.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/booking-system/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/booking-system.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/booking-system/assets/icon-256x256.png?rev=2192807\";s:2:\"1x\";s:67:\"https://ps.w.org/booking-system/assets/icon-128x128.png?rev=2192807\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/booking-system/assets/banner-1544x500.jpg?rev=2205114\";s:2:\"1x\";s:69:\"https://ps.w.org/booking-system/assets/banner-772x250.jpg?rev=2205114\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";b:0;s:14:\"upgrade_notice\";s:89:\"<ul>\n<li>A bug when adding reservations as an administrator has been repaired.</li>\n</ul>\";}s:35:\"redux-framework/redux-framework.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/redux-framework\";s:4:\"slug\";s:15:\"redux-framework\";s:6:\"plugin\";s:35:\"redux-framework/redux-framework.php\";s:11:\"new_version\";s:6:\"4.2.11\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/redux-framework/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/redux-framework.4.2.11.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/redux-framework/assets/icon-256x256.png?rev=2352112\";s:2:\"1x\";s:59:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=995554\";s:3:\"svg\";s:59:\"https://ps.w.org/redux-framework/assets/icon.svg?rev=995554\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/redux-framework/assets/banner-1544x500.png?rev=2352114\";s:2:\"1x\";s:70:\"https://ps.w.org/redux-framework/assets/banner-772x250.png?rev=2352114\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"7.1\";}s:27:\"svg-support/svg-support.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/svg-support\";s:4:\"slug\";s:11:\"svg-support\";s:6:\"plugin\";s:27:\"svg-support/svg-support.php\";s:11:\"new_version\";s:6:\"2.3.19\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/svg-support/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/svg-support.2.3.19.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:64:\"https://ps.w.org/svg-support/assets/icon-256x256.png?rev=1417738\";s:2:\"1x\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";s:3:\"svg\";s:56:\"https://ps.w.org/svg-support/assets/icon.svg?rev=1417738\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/svg-support/assets/banner-1544x500.jpg?rev=1215377\";s:2:\"1x\";s:66:\"https://ps.w.org/svg-support/assets/banner-772x250.jpg?rev=1215377\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";s:6:\"tested\";s:5:\"5.8.1\";s:12:\"requires_php\";s:3:\"5.2\";s:14:\"upgrade_notice\";s:88:\"<p>Quick update to address PHP warnings from localize_script and to add a SRC check.</p>\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/breadcrumb-navxt\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"6.6.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.6.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:69:\"https://ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=2410525\";s:2:\"1x\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";s:3:\"svg\";s:61:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=1927103\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/breadcrumb-navxt/assets/banner-1544x500.png?rev=1927103\";s:2:\"1x\";s:71:\"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.png?rev=1927103\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:39:\"column-shortcodes/column-shortcodes.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/column-shortcodes\";s:4:\"slug\";s:17:\"column-shortcodes\";s:6:\"plugin\";s:39:\"column-shortcodes/column-shortcodes.php\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/column-shortcodes/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/column-shortcodes.1.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/column-shortcodes/assets/icon-256x256.png?rev=1679769\";s:2:\"1x\";s:70:\"https://ps.w.org/column-shortcodes/assets/icon-128x128.png?rev=1679769\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/column-shortcodes/assets/banner-772x250.png?rev=580886\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.8\";}s:69:\"contact-form-7-shortcode-enabler/contact-form-7-shortcode-enabler.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:46:\"w.org/plugins/contact-form-7-shortcode-enabler\";s:4:\"slug\";s:32:\"contact-form-7-shortcode-enabler\";s:6:\"plugin\";s:69:\"contact-form-7-shortcode-enabler/contact-form-7-shortcode-enabler.php\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:63:\"https://wordpress.org/plugins/contact-form-7-shortcode-enabler/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/contact-form-7-shortcode-enabler.1.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:76:\"https://s.w.org/plugins/geopattern-icon/contact-form-7-shortcode-enabler.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"2.6.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}s:7:\"checked\";a:17:{s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:25:\"booking/wpdev-booking.php\";s:5:\"8.8.1\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:5:\"6.6.0\";s:33:\"classic-editor/classic-editor.php\";s:3:\"1.6\";s:39:\"column-shortcodes/column-shortcodes.php\";s:5:\"1.0.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.4.1\";s:69:\"contact-form-7-shortcode-enabler/contact-form-7-shortcode-enabler.php\";s:3:\"1.1\";s:32:\"duplicate-page/duplicatepage.php\";s:3:\"4.4\";s:23:\"elementor/elementor.php\";s:5:\"2.9.9\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"2.10.3\";s:33:\"essential-grid/essential-grid.php\";s:6:\"3.0.11\";s:9:\"hello.php\";s:5:\"1.7.2\";s:21:\"ulisting/uListing.php\";s:5:\"1.7.6\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:5:\"4.8.4\";s:24:\"booking-system/dopbs.php\";s:9:\"2.9.9.2.0\";s:35:\"redux-framework/redux-framework.php\";s:6:\"4.1.26\";s:27:\"svg-support/svg-support.php\";s:6:\"2.3.18\";}}','no'),(156,'finished_updating_comment_type','1','yes'),(151,'current_theme','Rentex Child','yes'),(152,'theme_mods_rentex','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1620945233;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"sidebar-blog\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:14:\"sidebar-single\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:19:\"sidebar-ihomefinder\";a:0:{}}}}','yes'),(153,'theme_switched','','yes'),(160,'ulisting_saved_searches','a:2:{s:7:\"subject\";s:27:\"New offers from [site-name]\";s:7:\"content\";s:673:\"<h3></h3> <h3 style=\"text-align: center;\">Hello, [customer-name]\n									You were subscribed to receive new offers from [site-name]. [count] new properties were found matching your search criteria.</h3>\n									<p style=\"text-align: center;\">If you want to receive new suggestions by new criteria, click on “view more”. After redirecting to the inventory page please enter new criteria and click \"Find\" then \"Save Search.\" This will create a new auto search.</p>\n									<p style=\"text-align: center;\">[listing-list]</p>\n									<p style=\"text-align: center;\"><strong>If you don’t want to be notified please enter your account and delete auto search</strong>.</p>\";}','yes'),(195,'stm_current_map_api_key','','yes'),(196,'stm_current_map_type','google','yes'),(164,'ulisting_email_socials','a:4:{s:8:\"facebook\";a:2:{s:5:\"label\";s:8:\"Facebook\";s:4:\"link\";s:0:\"\";}s:9:\"instagram\";a:2:{s:5:\"label\";s:9:\"Instagram\";s:4:\"link\";s:0:\"\";}s:7:\"twitter\";a:2:{s:5:\"label\";s:7:\"Twitter\";s:4:\"link\";s:0:\"\";}s:7:\"youtube\";a:2:{s:5:\"label\";s:7:\"Youtube\";s:4:\"link\";s:0:\"\";}}','yes'),(165,'ulisting-db-version','1.0.2','yes'),(166,'stm_currency_page','a:5:{s:8:\"currency\";s:3:\"USD\";s:8:\"position\";s:4:\"left\";s:19:\"thousands_separator\";s:1:\",\";s:17:\"decimal_separator\";s:1:\".\";s:16:\"characters_after\";s:1:\"0\";}','yes'),(167,'ulisting_category_limit','5','yes'),(168,'ulisting_feature_limit','5','yes'),(169,'uListing_inserted_blog','1','yes'),(170,'ulisting_installed','2021-05-13 08:37:46','yes'),(171,'ulisting_canceled','no','yes'),(172,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.4.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1620938266;s:7:\"version\";s:5:\"5.4.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(173,'bodhi_svgs_plugin_version','2.3.18','yes'),(174,'ulisting_demo_import_redirect','1','yes'),(175,'elementor_version','3.2.4','yes'),(176,'elementor_pro_version','2.10.3','yes'),(177,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(178,'widget_bcn_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(179,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(180,'elementor_pro_license_key','Licence Hacked','yes'),(181,'_elementor_pro_license_data','a:2:{s:7:\"timeout\";i:1660208972;s:5:\"value\";s:247:\"{\\\"success\\\":true,\\\"license\\\":\\\"valid\\\",\\\"item_id\\\":false,\\\"item_name\\\":\\\"Elementor Pro\\\",\\\"is_local\\\":false,\\\"license_limit\\\":\\\"1000\\\",\\\"site_count\\\":\\\"1000\\\",\\\"activations_left\\\":1,\\\"expires\\\":\\\"lifetime\\\",\\\"customer_email\\\":\\\"info@wpopal.com\\\"}\";}','yes'),(435,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(200,'elementor_custom_icon_sets_config','a:0:{}','yes'),(1024,'elementor_1_elementor_updater_batch_b7d9c861d7e8d156b1e7dd4e0b0b','a:5:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:37:\"_v_3_0_0_move_general_settings_to_kit\";}}i:1;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:35:\"_v_3_0_0_move_default_colors_to_kit\";}}i:2;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:33:\"_v_3_0_0_move_saved_colors_to_kit\";}}i:3;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:39:\"_v_3_0_0_move_default_typography_to_kit\";}}i:4;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:42:\"_v_3_2_0_migrate_breakpoints_to_new_system\";}}}','no'),(385,'elementor_active_kit','2650','yes'),(388,'elementor_controls_usage','a:3:{s:7:\"wp-page\";a:16:{s:7:\"heading\";a:2:{s:5:\"count\";i:16;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:6:{s:5:\"title\";i:16;s:12:\"align_mobile\";i:11;s:11:\"header_size\";i:-2;s:5:\"align\";i:16;s:12:\"align_tablet\";i:2;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:20;s:21:\"typography_typography\";i:16;s:20:\"typography_font_size\";i:16;s:22:\"typography_font_weight\";i:7;s:22:\"typography_line_height\";i:9;s:27:\"typography_font_size_tablet\";i:2;s:27:\"typography_font_size_mobile\";i:12;s:25:\"typography_text_transform\";i:5;s:25:\"typography_letter_spacing\";i:1;s:32:\"typography_letter_spacing_tablet\";i:1;s:32:\"typography_letter_spacing_mobile\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:16;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:3;s:8:\"_padding\";i:4;s:15:\"_padding_mobile\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:-2;s:17:\"_background_color\";i:-2;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:-1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:-2;s:21:\"_element_custom_width\";i:3;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:29;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:12:\"_inline_size\";i:29;s:21:\"space_between_widgets\";i:11;s:19:\"_inline_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:5:\"align\";i:3;s:12:\"align_tablet\";i:2;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:10;s:16:\"background_image\";i:2;s:16:\"background_color\";i:8;s:18:\"background_color_b\";i:4;s:15:\"background_size\";i:3;s:19:\"background_position\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_radius\";i:4;s:20:\"border_radius_tablet\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:1;s:35:\"background_overlay_hover_background\";i:3;s:30:\"background_overlay_hover_color\";i:3;s:32:\"background_overlay_hover_opacity\";i:3;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:7:{s:7:\"padding\";i:10;s:14:\"padding_tablet\";i:15;s:6:\"margin\";i:-2;s:13:\"margin_mobile\";i:-2;s:14:\"padding_mobile\";i:8;s:7:\"z_index\";i:2;s:13:\"margin_tablet\";i:5;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"counter\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:9;s:5:\"title\";i:5;}}s:5:\"style\";a:3:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:5;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:5;}s:14:\"section_number\";a:0:{}}}}s:4:\"form\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:3;s:11:\"show_labels\";i:3;}s:15:\"section_buttons\";a:3:{s:11:\"button_text\";i:3;s:11:\"button_size\";i:3;s:12:\"button_align\";i:3;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:3;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:3;s:13:\"email_subject\";i:3;s:10:\"email_from\";i:3;s:15:\"email_from_name\";i:3;}s:15:\"section_email_2\";a:5:{s:10:\"email_to_2\";i:3;s:15:\"email_subject_2\";i:3;s:12:\"email_from_2\";i:3;s:17:\"email_from_name_2\";i:3;s:16:\"email_reply_to_2\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:3;s:7:\"row_gap\";i:3;}s:19:\"section_field_style\";a:4:{s:22:\"field_background_color\";i:3;s:18:\"field_border_width\";i:3;s:19:\"field_border_radius\";i:3;s:11:\"field_align\";i:3;}s:20:\"section_button_style\";a:5:{s:23:\"button_background_color\";i:3;s:28:\"button_typography_typography\";i:3;s:27:\"button_typography_font_size\";i:3;s:20:\"button_border_radius\";i:3;s:29:\"button_background_hover_color\";i:3;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:2;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:10:\"text_color\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;}s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:28:\"_element_custom_width_tablet\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:5:\"align\";i:5;s:10:\"text_color\";i:7;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:5;s:12:\"align_mobile\";i:3;s:25:\"typography_text_transform\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:12:\"align_tablet\";i:2;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:7;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:2;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:10:{s:15:\"stretch_section\";i:16;s:3:\"gap\";i:14;s:6:\"height\";i:3;s:13:\"custom_height\";i:6;s:20:\"custom_height_tablet\";i:2;s:20:\"custom_height_mobile\";i:2;s:15:\"column_position\";i:4;s:16:\"content_position\";i:1;s:6:\"layout\";i:1;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:17:{s:21:\"background_background\";i:16;s:16:\"background_image\";i:4;s:16:\"background_color\";i:12;s:40:\"background_motion_fx_motion_fx_scrolling\";i:3;s:38:\"background_motion_fx_translateY_effect\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:26:\"background_position_mobile\";i:1;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:21:\"background_video_link\";i:1;s:25:\"background_play_on_mobile\";i:1;s:21:\"background_color_stop\";i:3;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:3;s:25:\"background_gradient_angle\";i:1;s:24:\"background_gradient_type\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;s:26:\"background_overlay_opacity\";i:4;}s:14:\"section_border\";a:1:{s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:17;s:6:\"margin\";i:14;s:13:\"margin_tablet\";i:10;s:14:\"padding_tablet\";i:6;s:14:\"padding_mobile\";i:9;s:13:\"margin_mobile\";i:6;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:4;s:10:\"image_size\";i:3;s:5:\"align\";i:3;s:12:\"align_mobile\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:3;s:8:\"_padding\";i:2;}}}}s:18:\"rentex-contactform\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"contactform7\";a:1:{s:5:\"cf_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:2;s:5:\"align\";i:1;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;s:10:\"icon_align\";i:2;s:4:\"link\";i:2;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:2;s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:1;s:7:\"_margin\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}s:18:\"rentex_listing_all\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:4:{s:20:\"listing_posts_styles\";i:2;s:22:\"listing_posts_per_page\";i:2;s:26:\"listing_posts_item_columns\";i:2;s:22:\"listing_posts_order_by\";i:1;}}}}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:9:\"shortcode\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:19:\"hover_primary_color\";i:1;}}}}s:19:\"rentex-testimonials\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:1;s:27:\"content_content_color_hover\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;s:26:\"name_typography_typography\";i:1;}}}}}s:7:\"section\";a:9:{s:7:\"counter\";a:2:{s:5:\"count\";i:15;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:15;s:5:\"title\";i:15;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:15;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:15;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:26;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:26;s:21:\"space_between_widgets\";i:7;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:14:\"padding_tablet\";i:6;s:14:\"padding_mobile\";i:3;s:7:\"padding\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:15:\"stretch_section\";i:12;s:3:\"gap\";i:6;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:12;s:16:\"background_color\";i:9;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:40:\"background_motion_fx_motion_fx_scrolling\";i:3;s:38:\"background_motion_fx_translateY_effect\";i:3;s:28:\"background_slideshow_gallery\";i:1;s:26:\"background_position_mobile\";i:1;}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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:12;s:6:\"margin\";i:5;s:13:\"margin_tablet\";i:5;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:7;s:12:\"align_mobile\";i:4;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:27:\"typography_font_size_mobile\";i:5;s:22:\"typography_line_height\";i:4;s:11:\"title_color\";i:7;s:22:\"typography_font_weight\";i:2;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_mobile\";i:3;}}}}s:4:\"icon\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:3;s:19:\"hover_primary_color\";i:3;}}}}s:19:\"rentex-testimonials\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:3;s:21:\"testimonial_alignment\";i:3;s:5:\"style\";i:3;s:6:\"column\";i:3;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:3;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:3;s:27:\"content_content_color_hover\";i:3;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:3;s:21:\"name_text_color_hover\";i:3;s:26:\"name_typography_typography\";i:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{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:2:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:18:\"rentex-contactform\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:5:{s:10:\"email_to_2\";i:1;s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;s:16:\"email_reply_to_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:4:{s:22:\"field_background_color\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;s:11:\"field_align\";i:1;}s:20:\"section_button_style\";a:5:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}}s:4:\"page\";a:7:{s:11:\"text-editor\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:4;s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:25:\"typography_text_transform\";i:2;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:5;s:5:\"align\";i:5;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:2;s:25:\"typography_text_transform\";i:3;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:4:{s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;}s:17:\"_section_position\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:3:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_radius\";i:2;s:12:\"text_padding\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:6;s:19:\"_inline_size_tablet\";i:3;s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:3;s:17:\"background_repeat\";i:3;s:16:\"background_color\";i:2;s:19:\"background_position\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:2;s:20:\"border_radius_mobile\";i:2;s:20:\"border_radius_tablet\";i:2;s:18:\"border_hover_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:3;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:17:\"background_repeat\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:2;s:23:\"background_color_b_stop\";i:1;s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:26:\"background_overlay_color_b\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"z_index\";i:2;s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:3;s:4:\"view\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:5:{s:13:\"space_between\";i:1;s:17:\"icon_align_mobile\";i:1;s:10:\"icon_align\";i:3;s:7:\"divider\";i:1;s:13:\"divider_color\";i:1;}s:18:\"section_text_style\";a:3:{s:10:\"text_color\";i:3;s:16:\"text_color_hover\";i:3;s:26:\"icon_typography_typography\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}}}','no'),(183,'_elementor_pro_installed_time','1590048731','yes'),(185,'ulisting_listing_cron_time','01:27','yes'),(1825,'redux-framework_allow_tracking','no','yes'),(1826,'redux-framework_tracking_notice','hide','yes'),(1827,'redux-framework_tracking_skipped','yes','yes'),(1967,'_transient_is_multi_author','0','yes'),(1959,'wp_force_deactivated_plugins','a:0:{}','yes'),(1920,'_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:57:\"https://downloads.wordpress.org/release/wordpress-5.8.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-5.8.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-5.8-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.8-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"5.8\";s:7:\"version\";s:3:\"5.8\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1628024472;s:15:\"version_checked\";s:3:\"5.8\";s:12:\"translations\";a:0:{}}','no'),(671,'booking_user_role_settings','administrator','yes'),(672,'booking_is_email_reservation_adress','On','yes'),(673,'booking_email_reservation_adress','&quot;Booking system&quot; &lt;alex@inspirable.com&gt;','yes'),(674,'booking_email_reservation_from_adress','[visitoremail]','yes'),(675,'booking_email_reservation_subject','New booking','yes'),(676,'booking_email_reservation_content','You need to approve a new booking [bookingtype] for: [dates]&lt;br/&gt;&lt;br/&gt; Person detail information:&lt;br/&gt; [content]&lt;br/&gt;&lt;br/&gt; Currently a new booking is waiting for approval. Please visit the moderation panel [moderatelink]&lt;br/&gt;&lt;br/&gt;Thank you, Opulence Management&lt;br/&gt;[siteurl]','yes'),(188,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{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:2:\"lp\";a:1:{s:10:\"categories\";a:14:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:5:\"Ebook\";i:3;s:9:\"eCommerce\";i:4;s:9:\"Education\";i:5;s:6:\"Events\";i:6;s:18:\"Health and Fitness\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:885:{i:0;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:15:{s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?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:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:15:{s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:15:{s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:15:{s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:15:{s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:15:{s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?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:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:15:{s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:15:{s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:15:{s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?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:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:15:{s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?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:41:\"[\"Ecommerce\",\"online shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:71;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:15:{s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:15:{s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:15:{s:2:\"id\";i: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\";i: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\";i:0;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:15:{s:2:\"id\";i: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\";i: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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:2;s:11:\"trend_index\";i:1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:89;a:15:{s:2:\"id\";i: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\";i: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\";i:1;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:15:{s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:91;a:15:{s:2:\"id\";i: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\";i: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\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:15:{s:2:\"id\";i: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\";i: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\";i:1;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:15:{s:2:\"id\";i: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\";i: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\";i:2;s:16:\"popularity_index\";i:1;s:11:\"trend_index\";i:2;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:94;a:15:{s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:95;a:15:{s:2:\"id\";i: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\";i: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\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:15:{s:2:\"id\";i: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\";i: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\";i:3;s:16:\"popularity_index\";i:4;s:11:\"trend_index\";i:3;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:97;a:15:{s:2:\"id\";i: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\";i: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\";i:3;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:15:{s:2:\"id\";i: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\";i: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\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:15:{s:2:\"id\";i: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\";i: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\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:15:{s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:15:{s:2:\"id\";i: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\";i: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\";i:4;s:16:\"popularity_index\";i:3;s:11:\"trend_index\";i:4;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:102;a:15:{s:2:\"id\";i: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\";i: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\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:15:{s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:15:{s:2:\"id\";i: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\";i: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\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:15:{s:2:\"id\";i: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\";i: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\";i:5;s:16:\"popularity_index\";i:6;s:11:\"trend_index\";i:5;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:106;a:15:{s:2:\"id\";i: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\";i: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\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:15:{s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:15:{s:2:\"id\";i: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\";i: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\";i:6;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:15:{s:2:\"id\";i: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\";i: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\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:15:{s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:15:{s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:15:{s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:15:{s:2:\"id\";i: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\";i: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\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:15:{s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:15:{s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:15:{s:2:\"id\";i: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\";i: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\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:15:{s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:15:{s:2:\"id\";i: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\";i: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\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:15:{s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:15:{s:2:\"id\";i: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\";i: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\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:15:{s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:15:{s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:15:{s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1622974423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:20;}i:124;a:15:{s:2:\"id\";i: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\";i: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\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:15:{s:2:\"id\";i: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\";i: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\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:126;a:15:{s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-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:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:15:{s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:15:{s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:15:{s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:15:{s:2:\"id\";i: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\";i: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\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:131;a:15:{s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:15:{s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:15:{s:2:\"id\";i: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\";i: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\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:134;a:15:{s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:15:{s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:15:{s:2:\"id\";i: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\";i: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\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:137;a:15:{s:2:\"id\";i: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\";i: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\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:138;a:15:{s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-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:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:15:{s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:15:{s:2:\"id\";i: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\";i: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\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:141;a:15:{s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-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:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:15:{s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:15:{s:2:\"id\";i: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\";i: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\";i:17;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:15:{s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-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:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:15:{s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:146;a:15:{s:2:\"id\";i: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\";i: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\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:147;a:15:{s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:15:{s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:149;a:15:{s:2:\"id\";i: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\";i: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\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:150;a:15:{s:2:\"id\";i: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\";i: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\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:15:{s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-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:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:15:{s:2:\"id\";i: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\";i: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\";i:19;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:15:{s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:15:{s:2:\"id\";i: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\";i: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\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:155;a:15:{s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-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:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:15:{s:2:\"id\";i: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\";i: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\";i:20;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:15:{s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:15:{s:2:\"id\";i: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\";i: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\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:15:{s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-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:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:15:{s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:15:{s:2:\"id\";i: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\";i: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\";i:21;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:15:{s:2:\"id\";i: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\";i: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\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:15:{s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-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:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:15:{s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:15:{s:2:\"id\";i: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\";i: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\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:166;a:15:{s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:15:{s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:15:{s:2:\"id\";i: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\";i: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\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:169;a:15:{s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:170;a:15:{s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:15:{s:2:\"id\";i: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\";i: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\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:15:{s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:15:{s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:15:{s:2:\"id\";i: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\";i: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\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:175;a:15:{s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:15:{s:2:\"id\";i: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\";i: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\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:177;a:15:{s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:178;a:15:{s:2:\"id\";i: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\";i: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\";i:26;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:15:{s:2:\"id\";i: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\";i: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\";i:27;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:15:{s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:15:{s:2:\"id\";i: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\";i: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\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:15:{s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:183;a:15:{s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:15:{s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:15:{s:2:\"id\";i: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\";i: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\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:15:{s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:15:{s:2:\"id\";i: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\";i: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\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:188;a:15:{s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:15:{s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:15:{s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:15:{s:2:\"id\";i: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\";i: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\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:15:{s:2:\"id\";i: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\";i: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\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:193;a:15:{s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:15:{s:2:\"id\";i: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\";i: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\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:15:{s:2:\"id\";i: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\";i: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\";i:31;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:15:{s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-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:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:15:{s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:15:{s:2:\"id\";i: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\";i: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\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:15:{s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-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:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:15:{s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:15:{s:2:\"id\";i: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\";i: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\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:15:{s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-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:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:15:{s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:15:{s:2:\"id\";i: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\";i: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\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:15:{s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-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:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:15:{s:2:\"id\";i: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\";i: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\";i:35;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:15:{s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:15:{s:2:\"id\";i: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\";i: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\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:15:{s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:15:{s:2:\"id\";i: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\";i: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\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:15:{s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:15:{s:2:\"id\";i: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\";i: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\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:15:{s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:15:{s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:15:{s:2:\"id\";i: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\";i: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\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:15:{s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:15:{s:2:\"id\";i: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\";i: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\";i:38;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:15:{s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:15:{s:2:\"id\";i: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\";i: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\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:15:{s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:15:{s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:15:{s:2:\"id\";i: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\";i: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\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:15:{s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-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:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:15:{s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:15:{s:2:\"id\";i: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\";i: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\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:15:{s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=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\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:15:{s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:15:{s:2:\"id\";i: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\";i: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\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:15:{s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=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\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:15:{s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:15:{s:2:\"id\";i: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\";i: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\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:15:{s:2:\"id\";i: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\";i: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\";i:42;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:15:{s:2:\"id\";i: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\";i: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\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:15:{s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:15:{s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i: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\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:15:{s:2:\"id\";i: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\";i: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\";i:43;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:15:{s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:238;a:15:{s:2:\"id\";i: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\";i: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\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:15:{s:2:\"id\";i: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\";i: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\";i:44;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:15:{s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-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:29:\"[\"404\",\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:15:{s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:242;a:15:{s:2:\"id\";i: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\";i: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\";i:45;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:15:{s:2:\"id\";i: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\";i: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\";i:46;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:15:{s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-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:32:\"[\"Beauty salon\",\"Footer\",\"hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:15:{s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:15:{s:2:\"id\";i: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\";i: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\";i:46;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:15:{s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-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:32:\"[\"Beauty salon\",\"hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:15:{s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:15:{s:2:\"id\";i: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\";i: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\";i:47;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:15:{s:2:\"id\";i: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\";i: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\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:15:{s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:15:{s:2:\"id\";i: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\";i: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\";i:48;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:15:{s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:15:{s:2:\"id\";i: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\";i: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\";i:49;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:15:{s:2:\"id\";i: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\";i: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\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:15:{s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:15:{s:2:\"id\";i: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\";i: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\";i:50;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:15:{s:2:\"id\";i: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\";i: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\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:15:{s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:15:{s:2:\"id\";i: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\";i: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\";i:51;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:261;a:15:{s:2:\"id\";i: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\";i: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\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:262;a:15:{s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:263;a:15:{s:2:\"id\";i: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\";i: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\";i:52;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:15:{s:2:\"id\";i: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\";i: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\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:15:{s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:15:{s:2:\"id\";i: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\";i: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\";i:53;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:15:{s:2:\"id\";i: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\";i: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\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:268;a:15:{s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:15:{s:2:\"id\";i: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\";i: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\";i:54;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:15:{s:2:\"id\";i: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\";i: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\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:271;a:15:{s:2:\"id\";i: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\";i: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\";i:54;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:15:{s:2:\"id\";i: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\";i: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\";i:55;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:15:{s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:15:{s:2:\"id\";i: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\";i: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\";i:55;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:15:{s:2:\"id\";i: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\";i: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\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:15:{s:2:\"id\";i: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\";i: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\";i:55;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:15:{s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:278;a:15:{s:2:\"id\";i: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\";i: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\";i:56;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:15:{s:2:\"id\";i: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\";i: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\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:15:{s:2:\"id\";i: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\";i: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\";i:56;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:15:{s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:15:{s:2:\"id\";i: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\";i: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\";i:57;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:15:{s:2:\"id\";i: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\";i: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\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:15:{s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:15:{s:2:\"id\";i: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\";i: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\";i:58;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:15:{s:2:\"id\";i: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\";i: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\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:287;a:15:{s:2:\"id\";i: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\";i: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\";i:59;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:15:{s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:289;a:15:{s:2:\"id\";i: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\";i: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\";i:59;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:15:{s:2:\"id\";i: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\";i: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\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:15:{s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:292;a:15:{s:2:\"id\";i: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\";i: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\";i:60;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:15:{s:2:\"id\";i: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\";i: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\";i:60;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:15:{s:2:\"id\";i: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\";i: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\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:295;a:15:{s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:15:{s:2:\"id\";i: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\";i: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\";i:61;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:15:{s:2:\"id\";i: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\";i: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\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:298;a:15:{s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:299;a:15:{s:2:\"id\";i: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\";i: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\";i:62;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:15:{s:2:\"id\";i: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\";i: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\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:15:{s:2:\"id\";i: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\";i: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\";i:63;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:15:{s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:303;a:15:{s:2:\"id\";i: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\";i: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\";i:63;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:15:{s:2:\"id\";i: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\";i: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\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:305;a:15:{s:2:\"id\";i: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\";i: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\";i:64;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:15:{s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:15:{s:2:\"id\";i: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\";i: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\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:15:{s:2:\"id\";i: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\";i: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\";i:64;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:15:{s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:15:{s:2:\"id\";i: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\";i: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\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:311;a:15:{s:2:\"id\";i: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\";i: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\";i:65;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:15:{s:2:\"id\";i: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\";i: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\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:15:{s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:15:{s:2:\"id\";i: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\";i: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\";i:66;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:15:{s:2:\"id\";i: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\";i: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\";i:66;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:15:{s:2:\"id\";i: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\";i: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\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:15:{s:2:\"id\";i:16192;s:5:\"title\";s:30:\"Management App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1607866881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/management-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:33:\"[\"App\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:827;s:11:\"trend_index\";i:765;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:15:{s:2:\"id\";i: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\";i: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\";i:67;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:15:{s:2:\"id\";i: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\";i: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\";i:67;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:15:{s:2:\"id\";i:15839;s:5:\"title\";s:29:\"Chiropractor &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1607855449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/chiropractor-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Business\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:828;s:11:\"trend_index\";i:709;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:15:{s:2:\"id\";i: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\";i: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\";i:68;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:15:{s:2:\"id\";i: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\";i: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\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:15:{s:2:\"id\";i:15827;s:5:\"title\";s:32:\"Creative Agency &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1607855280;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/creative-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:168:\"[\"Agency\",\"bootstrap\",\"Business\",\"corporate\",\"Landing Pages\",\"Marketing Campaign\",\"Marketing Landing Page\",\"Product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:748;s:11:\"trend_index\";i:363;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:324;a:15:{s:2:\"id\";i: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\";i: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\";i:69;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:15:{s:2:\"id\";i: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\";i: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\";i:69;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:15:{s:2:\"id\";i: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\";i: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\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:15:{s:2:\"id\";i:16120;s:5:\"title\";s:37:\"Life coach Tom &#8211; Online Service\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1607865812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/life-coach-tom-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:30:\"[\"Consulting\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:818;s:11:\"trend_index\";i:796;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:15:{s:2:\"id\";i: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\";i: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\";i:70;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:15:{s:2:\"id\";i: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\";i: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\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:15:{s:2:\"id\";i:16059;s:5:\"title\";s:34:\"Melbourne Conference &#8211; Event\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1607864236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/melbourne-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:841;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:15:{s:2:\"id\";i: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\";i: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\";i:71;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:15:{s:2:\"id\";i: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\";i: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\";i:71;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:15:{s:2:\"id\";i: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\";i: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\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:15:{s:2:\"id\";i: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\";i: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\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:15:{s:2:\"id\";i:16073;s:5:\"title\";s:56:\"International Women&#8217;s Day Conference &#8211; Event\";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\";i:1607864979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/international-womens-day-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:865;s:11:\"trend_index\";i:789;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:15:{s:2:\"id\";i: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\";i: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\";i:72;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:15:{s:2:\"id\";i: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\";i: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\";i:72;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:15:{s:2:\"id\";i: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\";i: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\";i:73;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:15:{s:2:\"id\";i:16085;s:5:\"title\";s:29:\"Tech Conference &#8211; Event\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1607865227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/tech-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:851;s:11:\"trend_index\";i:747;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:340;a:15:{s:2:\"id\";i: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\";i: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\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:15:{s:2:\"id\";i: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\";i: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\";i:73;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:15:{s:2:\"id\";i: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\";i: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\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:15:{s:2:\"id\";i:16102;s:5:\"title\";s:38:\"Environmental Conference &#8211; Event\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1607865473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/environmental-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:833;s:11:\"trend_index\";i:772;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:15:{s:2:\"id\";i: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\";i: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\";i:74;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:15:{s:2:\"id\";i: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\";i: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\";i:75;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:15:{s:2:\"id\";i:15931;s:5:\"title\";s:37:\"Tokyo Design Conference &#8211; Event\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1607861271;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/tokyo-design-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:815;s:11:\"trend_index\";i:644;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:15:{s:2:\"id\";i: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\";i: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\";i:75;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:15:{s:2:\"id\";i: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\";i: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\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:349;a:15:{s:2:\"id\";i:16412;s:5:\"title\";s:36:\"Photography Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1607869919;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/photography-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:52:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:862;s:11:\"trend_index\";i:749;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:350;a:15:{s:2:\"id\";i: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\";i: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\";i:76;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:15:{s:2:\"id\";i: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\";i: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\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:352;a:15:{s:2:\"id\";i: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\";i: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\";i:76;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:15:{s:2:\"id\";i:16183;s:5:\"title\";s:32:\"Luxury Homes &#8211; Real Estate\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1607866726;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:835;s:11:\"trend_index\";i:768;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:15:{s:2:\"id\";i: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\";i: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\";i:77;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:15:{s:2:\"id\";i: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\";i: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\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:15:{s:2:\"id\";i:16420;s:5:\"title\";s:36:\"Spring Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1607899243;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/spring-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Coupon\",\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:852;s:11:\"trend_index\";i:756;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:15:{s:2:\"id\";i: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\";i: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\";i:78;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:15:{s:2:\"id\";i: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\";i: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\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:359;a:15:{s:2:\"id\";i: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\";i: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\";i:78;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:15:{s:2:\"id\";i:16427;s:5:\"title\";s:34:\"Dream Car Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1607934325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/dream-car-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:53:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Offer\",\"Sale\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:863;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:361;a:15:{s:2:\"id\";i: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\";i: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\";i:79;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:15:{s:2:\"id\";i: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\";i: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\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:15:{s:2:\"id\";i: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\";i: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\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:15:{s:2:\"id\";i: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\";i: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\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:15:{s:2:\"id\";i:16433;s:5:\"title\";s:42:\"Leshnik Mega Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1607934474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/leshnik-mega-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:45:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:867;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:15:{s:2:\"id\";i: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\";i: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\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:15:{s:2:\"id\";i: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\";i: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\";i:80;s:16:\"popularity_index\";i:7;s:11:\"trend_index\";i:7;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:15:{s:2:\"id\";i:15986;s:5:\"title\";s:40:\"From Freelance to Business &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1607862915;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/from-freelance-to-business-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:143:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"Landing Pages\",\"Marketing\",\"Product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:837;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:15:{s:2:\"id\";i: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\";i: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\";i:81;s:16:\"popularity_index\";i:223;s:11:\"trend_index\";i:360;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:15:{s:2:\"id\";i: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\";i: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\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:15:{s:2:\"id\";i:16002;s:5:\"title\";s:30:\"Architect Manual &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1607863075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/architect-manual-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:836;s:11:\"trend_index\";i:827;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:15:{s:2:\"id\";i: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\";i: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\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:15:{s:2:\"id\";i: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\";i: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\";i:82;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:15:{s:2:\"id\";i:16014;s:5:\"title\";s:23:\"Good Life &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1607863305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/lp/good-life-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:807;s:11:\"trend_index\";i:646;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:15:{s:2:\"id\";i: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\";i: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\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:376;a:15:{s:2:\"id\";i: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\";i: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\";i:83;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:15:{s:2:\"id\";i: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\";i: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\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:15:{s:2:\"id\";i: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\";i: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\";i:84;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:15:{s:2:\"id\";i:16242;s:5:\"title\";s:37:\"Fashion Season Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1607867761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/fashion-season-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:813;s:11:\"trend_index\";i:746;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:15:{s:2:\"id\";i: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\";i: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\";i:84;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:15:{s:2:\"id\";i: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\";i: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\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:382;a:15:{s:2:\"id\";i:16202;s:5:\"title\";s:39:\"Starlight Nation Festival &#8211; Event\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1607867113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/starlight-nation-festival-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:842;s:11:\"trend_index\";i:770;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:15:{s:2:\"id\";i: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\";i: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\";i:85;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:15:{s:2:\"id\";i: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\";i: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\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:15:{s:2:\"id\";i:16139;s:5:\"title\";s:37:\"Financial Consultant &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1607866334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/financial-consultant-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:40:\"[\"Consulting\",\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:824;s:11:\"trend_index\";i:798;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:15:{s:2:\"id\";i: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\";i: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\";i:86;s:16:\"popularity_index\";i:174;s:11:\"trend_index\";i:367;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:15:{s:2:\"id\";i: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\";i: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\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:15:{s:2:\"id\";i:15822;s:5:\"title\";s:30:\"Family Vacation &#8211; Travel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1607855143;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/family-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:773;s:11:\"trend_index\";i:593;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:389;a:15:{s:2:\"id\";i: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\";i: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\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:390;a:15:{s:2:\"id\";i: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\";i: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\";i:87;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:15:{s:2:\"id\";i:15964;s:5:\"title\";s:31:\"Law Convention &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607862731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/law-convention-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:36:\"[\"Convention\",\"Landing Pages\",\"Law\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:860;s:11:\"trend_index\";i:794;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:15:{s:2:\"id\";i: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\";i: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\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:393;a:15:{s:2:\"id\";i: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\";i: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\";i:88;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:15:{s:2:\"id\";i:15910;s:5:\"title\";s:38:\"Litigation Law Office &#8211; Business\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1607860827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/litigation-law-office-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:32:\"[\"Landing Pages\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:825;s:11:\"trend_index\";i:719;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:15:{s:2:\"id\";i: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\";i: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\";i:89;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:15:{s:2:\"id\";i: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\";i: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\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:397;a:15:{s:2:\"id\";i: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\";i: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\";i:89;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:15:{s:2:\"id\";i:16025;s:5:\"title\";s:33:\"Conoco Mobile App &#8211; Product\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1607863511;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/conoco-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:789;s:11:\"trend_index\";i:698;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:399;a:15:{s:2:\"id\";i: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\";i: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\";i:90;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:15:{s:2:\"id\";i: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\";i: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\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:401;a:15:{s:2:\"id\";i: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\";i: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\";i:90;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:15:{s:2:\"id\";i:15853;s:5:\"title\";s:29:\"Me Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1607857451;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/me-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:811;s:11:\"trend_index\";i:704;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:15:{s:2:\"id\";i: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\";i: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\";i:91;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:15:{s:2:\"id\";i: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\";i: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\";i:91;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:15:{s:2:\"id\";i: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\";i: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\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:15:{s:2:\"id\";i:15844;s:5:\"title\";s:32:\"Torel Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1607856863;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/torel-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:822;s:11:\"trend_index\";i:812;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:15:{s:2:\"id\";i: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\";i: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\";i:92;s:16:\"popularity_index\";i:165;s:11:\"trend_index\";i:191;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:15:{s:2:\"id\";i: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\";i: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\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:409;a:15:{s:2:\"id\";i: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\";i: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\";i:92;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:15:{s:2:\"id\";i:16041;s:5:\"title\";s:31:\"Nano Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1607863992;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:847;s:11:\"trend_index\";i:723;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:15:{s:2:\"id\";i: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\";i: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\";i:93;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:15:{s:2:\"id\";i: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\";i: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\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:413;a:15:{s:2:\"id\";i: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\";i: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\";i:93;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:15:{s:2:\"id\";i:15890;s:5:\"title\";s:39:\"Personal Trainer &#8211; Online Service\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1607860512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-trainer-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:35:\"[\"Fitness\",\"Landing Pages\",\"Sport\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:838;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:15:{s:2:\"id\";i: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\";i: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\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:416;a:15:{s:2:\"id\";i: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\";i: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\";i:94;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:15:{s:2:\"id\";i:16233;s:5:\"title\";s:36:\"Journey Photography &#8211; Business\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1607867416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/journey-photography-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:42:\"[\"Business\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:788;s:11:\"trend_index\";i:594;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:418;a:15:{s:2:\"id\";i: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\";i: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\";i:95;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:15:{s:2:\"id\";i: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\";i: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\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:420;a:15:{s:2:\"id\";i: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\";i: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\";i:96;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:15:{s:2:\"id\";i:16162;s:5:\"title\";s:29:\"Private Chef &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1607866578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/private-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:24:\"[\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:855;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:15:{s:2:\"id\";i: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\";i: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\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:423;a:15:{s:2:\"id\";i: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\";i: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\";i:96;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:15:{s:2:\"id\";i:16325;s:5:\"title\";s:28:\"Quality Lens &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1607868782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/quality-lens-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:804;s:11:\"trend_index\";i:621;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:425;a:15:{s:2:\"id\";i: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\";i: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\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:426;a:15:{s:2:\"id\";i: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\";i: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\";i:97;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:15:{s:2:\"id\";i:16332;s:5:\"title\";s:31:\"Luxury Flat &#8211; Real Estate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1607868929;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/luxury-flat-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:38:\"[\"flat\",\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:809;s:11:\"trend_index\";i:707;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:15:{s:2:\"id\";i:16392;s:5:\"title\";s:30:\"Open House &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1607869551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:150:\"[\"Agent\",\"Business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"Landing Pages\",\"listing\",\"modern\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:839;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:15:{s:2:\"id\";i: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\";i: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\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:430;a:15:{s:2:\"id\";i: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\";i: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\";i:98;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:15:{s:2:\"id\";i: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\";i: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\";i:98;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:15:{s:2:\"id\";i:15950;s:5:\"title\";s:30:\"Stylist &#8211; Online Service\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1607862286;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/stylist-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:162:\"[\"cosmetics\",\"Fashion\",\"girly\",\"hairdresser\",\"Landing Pages\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"Products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:853;s:11:\"trend_index\";i:805;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:15:{s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1607869068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:791;s:11:\"trend_index\";i:696;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:434;a:15:{s:2:\"id\";i: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\";i: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\";i:99;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:15:{s:2:\"id\";i: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\";i: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\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:436;a:15:{s:2:\"id\";i:16253;s:5:\"title\";s:33:\"Bicycle Adventures &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1607867944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bicycle-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:36:\"[\"Bicycle\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:785;s:11:\"trend_index\";i:524;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:437;a:15:{s:2:\"id\";i:16358;s:5:\"title\";s:41:\"Sunset Valley Project &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1607869234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/sunset-valley-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:846;s:11:\"trend_index\";i:743;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:15:{s:2:\"id\";i: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\";i: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\";i:100;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:15:{s:2:\"id\";i: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\";i: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\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:15:{s:2:\"id\";i:16271;s:5:\"title\";s:42:\"Luxury Travel Destinations  &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1607868120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/luxury-travel-destinations-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:830;s:11:\"trend_index\";i:833;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:15:{s:2:\"id\";i:16379;s:5:\"title\";s:33:\"Property Page &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1607869379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/property-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:42:\"[\"Landing Pages\",\"Property\",\"Real estate\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:864;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:15:{s:2:\"id\";i: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\";i: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\";i:101;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:15:{s:2:\"id\";i: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\";i: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\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:444;a:15:{s:2:\"id\";i:16283;s:5:\"title\";s:29:\"Vacation Deals &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1607868279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/vacation-deals-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:850;s:11:\"trend_index\";i:799;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:15:{s:2:\"id\";i: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\";i: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\";i:102;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:15:{s:2:\"id\";i: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\";i: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\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:15:{s:2:\"id\";i:16299;s:5:\"title\";s:29:\"New Adventures &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1607868454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/new-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:50:\"[\"Adventures\",\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:849;s:11:\"trend_index\";i:830;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:15:{s:2:\"id\";i: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\";i: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\";i:103;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:15:{s:2:\"id\";i: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\";i: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\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:15:{s:2:\"id\";i: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\";i: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\";i:104;s:16:\"popularity_index\";i:10;s:11:\"trend_index\";i:62;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:15:{s:2:\"id\";i:16312;s:5:\"title\";s:26:\"Summer Time &#8211; Travel\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607868625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/summer-time-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:829;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:15:{s:2:\"id\";i: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\";i: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\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:15:{s:2:\"id\";i: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\";i: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\";i:105;s:16:\"popularity_index\";i:32;s:11:\"trend_index\";i:136;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:454;a:15:{s:2:\"id\";i:15870;s:5:\"title\";s:32:\"Tel Aviv Vacation &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1607860195;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/tel-aviv-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:802;s:11:\"trend_index\";i:688;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:15:{s:2:\"id\";i: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\";i: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\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:456;a:15:{s:2:\"id\";i: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\";i: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\";i:105;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:15:{s:2:\"id\";i: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\";i: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\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:15:{s:2:\"id\";i: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\";i: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\";i:106;s:16:\"popularity_index\";i:290;s:11:\"trend_index\";i:394;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:15:{s:2:\"id\";i:16440;s:5:\"title\";s:31:\"Marketing Webinar &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1607934662;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/marketing-webinar-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:37:\"[\"Event\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:794;s:11:\"trend_index\";i:762;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:460;a:15:{s:2:\"id\";i: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\";i: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\";i:107;s:16:\"popularity_index\";i:202;s:11:\"trend_index\";i:271;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:461;a:15:{s:2:\"id\";i:16212;s:5:\"title\";s:33:\"Wedding Celebration &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1607867299;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/wedding-celebration-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:35:\"[\"Event\",\"Landing Pages\",\"Wedding\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:798;s:11:\"trend_index\";i:730;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:462;a:15:{s:2:\"id\";i: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\";i: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\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:15:{s:2:\"id\";i: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\";i: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\";i:107;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:15:{s:2:\"id\";i: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\";i: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\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:465;a:15:{s:2:\"id\";i: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\";i: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\";i:108;s:16:\"popularity_index\";i:283;s:11:\"trend_index\";i:325;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:466;a:15:{s:2:\"id\";i: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\";i: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\";i:109;s:16:\"popularity_index\";i:329;s:11:\"trend_index\";i:512;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:15:{s:2:\"id\";i: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\";i: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\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:468;a:15:{s:2:\"id\";i: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\";i: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\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:15:{s:2:\"id\";i: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\";i: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\";i:110;s:16:\"popularity_index\";i:195;s:11:\"trend_index\";i:259;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:15:{s:2:\"id\";i: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\";i: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\";i:111;s:16:\"popularity_index\";i:251;s:11:\"trend_index\";i:400;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:15:{s:2:\"id\";i: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\";i: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\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:472;a:15:{s:2:\"id\";i: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\";i: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\";i:112;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:15:{s:2:\"id\";i: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\";i: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\";i:112;s:16:\"popularity_index\";i:344;s:11:\"trend_index\";i:425;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:15:{s:2:\"id\";i: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\";i: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\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:475;a:15:{s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-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:22:\"[\"404\",\"dance studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:15:{s:2:\"id\";i: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\";i: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\";i:113;s:16:\"popularity_index\";i:309;s:11:\"trend_index\";i:435;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:15:{s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-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:25:\"[\"dance studio\",\"footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:15:{s:2:\"id\";i: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\";i: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\";i:114;s:16:\"popularity_index\";i:258;s:11:\"trend_index\";i:200;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:15:{s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-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:25:\"[\"dance studio\",\"header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:15:{s:2:\"id\";i: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\";i: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\";i:115;s:16:\"popularity_index\";i:126;s:11:\"trend_index\";i:257;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:15:{s:2:\"id\";i: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\";i: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\";i:115;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:15:{s:2:\"id\";i: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\";i: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\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:15:{s:2:\"id\";i: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\";i: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\";i:116;s:16:\"popularity_index\";i:293;s:11:\"trend_index\";i:637;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:15:{s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i: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\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:15:{s:2:\"id\";i: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\";i: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\";i:117;s:16:\"popularity_index\";i:490;s:11:\"trend_index\";i:595;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:15:{s:2:\"id\";i: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\";i: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\";i:117;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:15:{s:2:\"id\";i: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\";i: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\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:15:{s:2:\"id\";i: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\";i: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\";i:118;s:16:\"popularity_index\";i:222;s:11:\"trend_index\";i:342;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:15:{s:2:\"id\";i: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\";i: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\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:15:{s:2:\"id\";i: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\";i: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\";i:119;s:16:\"popularity_index\";i:232;s:11:\"trend_index\";i:219;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:15:{s:2:\"id\";i: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\";i: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\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:15:{s:2:\"id\";i: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\";i: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\";i:120;s:16:\"popularity_index\";i:360;s:11:\"trend_index\";i:472;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:15:{s:2:\"id\";i: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\";i: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\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:494;a:15:{s:2:\"id\";i: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\";i: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\";i:121;s:16:\"popularity_index\";i:418;s:11:\"trend_index\";i:476;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:15:{s:2:\"id\";i: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\";i: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\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:496;a:15:{s:2:\"id\";i: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\";i: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\";i:122;s:16:\"popularity_index\";i:410;s:11:\"trend_index\";i:390;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:15:{s:2:\"id\";i: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\";i: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\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:498;a:15:{s:2:\"id\";i: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\";i: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\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:15:{s:2:\"id\";i: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\";i: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\";i:124;s:16:\"popularity_index\";i:5;s:11:\"trend_index\";i:16;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:500;a:15:{s:2:\"id\";i: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\";i: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\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:15:{s:2:\"id\";i: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\";i: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\";i:125;s:16:\"popularity_index\";i:175;s:11:\"trend_index\";i:414;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:15:{s:2:\"id\";i: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\";i: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\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:503;a:15:{s:2:\"id\";i: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\";i: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\";i:126;s:16:\"popularity_index\";i:164;s:11:\"trend_index\";i:286;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:15:{s:2:\"id\";i: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\";i: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\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:15:{s:2:\"id\";i: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\";i: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\";i:127;s:16:\"popularity_index\";i:14;s:11:\"trend_index\";i:79;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:15:{s:2:\"id\";i: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\";i: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\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:15:{s:2:\"id\";i: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\";i: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\";i:128;s:16:\"popularity_index\";i:266;s:11:\"trend_index\";i:407;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:15:{s:2:\"id\";i: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\";i: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\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:509;a:15:{s:2:\"id\";i: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\";i: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\";i:129;s:16:\"popularity_index\";i:382;s:11:\"trend_index\";i:530;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:15:{s:2:\"id\";i: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\";i: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\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:15:{s:2:\"id\";i: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\";i: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\";i:130;s:16:\"popularity_index\";i:249;s:11:\"trend_index\";i:437;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:15:{s:2:\"id\";i: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\";i: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\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:15:{s:2:\"id\";i: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\";i: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\";i:131;s:16:\"popularity_index\";i:130;s:11:\"trend_index\";i:215;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:514;a:15:{s:2:\"id\";i: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\";i: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\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:15:{s:2:\"id\";i: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\";i: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\";i:132;s:16:\"popularity_index\";i:324;s:11:\"trend_index\";i:790;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:15:{s:2:\"id\";i: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\";i: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\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:15:{s:2:\"id\";i: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\";i: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\";i:133;s:16:\"popularity_index\";i:314;s:11:\"trend_index\";i:499;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:15:{s:2:\"id\";i: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\";i: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\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:15:{s:2:\"id\";i: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\";i: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\";i:134;s:16:\"popularity_index\";i:211;s:11:\"trend_index\";i:320;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:15:{s:2:\"id\";i: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\";i: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\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:15:{s:2:\"id\";i: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\";i: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\";i:135;s:16:\"popularity_index\";i:11;s:11:\"trend_index\";i:19;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:15:{s:2:\"id\";i: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\";i: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\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:15:{s:2:\"id\";i: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\";i: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\";i:136;s:16:\"popularity_index\";i:315;s:11:\"trend_index\";i:771;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:15:{s:2:\"id\";i: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\";i: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\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:15:{s:2:\"id\";i: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\";i: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\";i:137;s:16:\"popularity_index\";i:503;s:11:\"trend_index\";i:835;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:15:{s:2:\"id\";i: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\";i: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\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:15:{s:2:\"id\";i: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\";i: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\";i:138;s:16:\"popularity_index\";i:535;s:11:\"trend_index\";i:576;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:15:{s:2:\"id\";i: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\";i: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\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:15:{s:2:\"id\";i: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\";i: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\";i:139;s:16:\"popularity_index\";i:235;s:11:\"trend_index\";i:610;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:15:{s:2:\"id\";i: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\";i: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\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:15:{s:2:\"id\";i: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\";i: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\";i:140;s:16:\"popularity_index\";i:218;s:11:\"trend_index\";i:300;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:15:{s:2:\"id\";i: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\";i: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\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:533;a:15:{s:2:\"id\";i: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\";i: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\";i:141;s:16:\"popularity_index\";i:403;s:11:\"trend_index\";i:699;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:15:{s:2:\"id\";i: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\";i: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\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:15:{s:2:\"id\";i: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\";i: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\";i:142;s:16:\"popularity_index\";i:471;s:11:\"trend_index\";i:461;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:15:{s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-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:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:15:{s:2:\"id\";i: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\";i: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\";i:143;s:16:\"popularity_index\";i:8;s:11:\"trend_index\";i:36;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:15:{s:2:\"id\";i: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\";i: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\";i:144;s:16:\"popularity_index\";i:28;s:11:\"trend_index\";i:141;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:15:{s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:540;a:15:{s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-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:48:\"[\"Flooring company\",\"Flooring website\",\"footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:15:{s:2:\"id\";i: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\";i: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\";i:145;s:16:\"popularity_index\";i:54;s:11:\"trend_index\";i:182;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:15:{s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-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:48:\"[\"Flooring company\",\"Flooring website\",\"header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:15:{s:2:\"id\";i: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\";i: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\";i:146;s:16:\"popularity_index\";i:18;s:11:\"trend_index\";i:74;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:544;a:15:{s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-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:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:15:{s:2:\"id\";i: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\";i: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\";i:147;s:16:\"popularity_index\";i:20;s:11:\"trend_index\";i:65;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:546;a:15:{s:2:\"id\";i: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\";i: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\";i:148;s:16:\"popularity_index\";i:263;s:11:\"trend_index\";i:504;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:15:{s:2:\"id\";i: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\";i: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\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:15:{s:2:\"id\";i: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\";i: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\";i:149;s:16:\"popularity_index\";i:423;s:11:\"trend_index\";i:625;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:15:{s:2:\"id\";i: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\";i: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\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:15:{s:2:\"id\";i: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\";i: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\";i:150;s:16:\"popularity_index\";i:374;s:11:\"trend_index\";i:516;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:15:{s:2:\"id\";i: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\";i: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\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:15:{s:2:\"id\";i: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\";i: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\";i:151;s:16:\"popularity_index\";i:426;s:11:\"trend_index\";i:466;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:15:{s:2:\"id\";i: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\";i: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\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:15:{s:2:\"id\";i: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\";i: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\";i:152;s:16:\"popularity_index\";i:254;s:11:\"trend_index\";i:422;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:15:{s:2:\"id\";i: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\";i: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\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:15:{s:2:\"id\";i: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\";i: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\";i:153;s:16:\"popularity_index\";i:47;s:11:\"trend_index\";i:158;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:15:{s:2:\"id\";i: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\";i: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\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:15:{s:2:\"id\";i: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\";i: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\";i:154;s:16:\"popularity_index\";i:454;s:11:\"trend_index\";i:547;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:15:{s:2:\"id\";i: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\";i: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\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:15:{s:2:\"id\";i: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\";i: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\";i:155;s:16:\"popularity_index\";i:498;s:11:\"trend_index\";i:651;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:15:{s:2:\"id\";i: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\";i: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\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:15:{s:2:\"id\";i: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\";i: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\";i:156;s:16:\"popularity_index\";i:504;s:11:\"trend_index\";i:464;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:15:{s:2:\"id\";i: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\";i: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\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:15:{s:2:\"id\";i: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\";i: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\";i:157;s:16:\"popularity_index\";i:549;s:11:\"trend_index\";i:693;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:15:{s:2:\"id\";i: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\";i: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\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:15:{s:2:\"id\";i: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\";i: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\";i:158;s:16:\"popularity_index\";i:447;s:11:\"trend_index\";i:657;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:15:{s:2:\"id\";i: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\";i: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\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:15:{s:2:\"id\";i: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\";i: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\";i:159;s:16:\"popularity_index\";i:302;s:11:\"trend_index\";i:397;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:15:{s:2:\"id\";i: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\";i: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\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:15:{s:2:\"id\";i: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\";i: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\";i:160;s:16:\"popularity_index\";i:305;s:11:\"trend_index\";i:406;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:15:{s:2:\"id\";i: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\";i: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\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:572;a:15:{s:2:\"id\";i: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\";i: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\";i:161;s:16:\"popularity_index\";i:461;s:11:\"trend_index\";i:549;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:15:{s:2:\"id\";i: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\";i: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\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:15:{s:2:\"id\";i: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\";i: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\";i:162;s:16:\"popularity_index\";i:462;s:11:\"trend_index\";i:715;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:15:{s:2:\"id\";i: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\";i: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\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:15:{s:2:\"id\";i: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\";i: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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:386;s:11:\"trend_index\";i:614;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:15:{s:2:\"id\";i: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\";i: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\";i:164;s:16:\"popularity_index\";i:518;s:11:\"trend_index\";i:748;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:15:{s:2:\"id\";i: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\";i: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\";i:165;s:16:\"popularity_index\";i:128;s:11:\"trend_index\";i:355;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:579;a:15:{s:2:\"id\";i: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\";i: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\";i:166;s:16:\"popularity_index\";i:53;s:11:\"trend_index\";i:196;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:580;a:15:{s:2:\"id\";i: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\";i: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\";i:167;s:16:\"popularity_index\";i:355;s:11:\"trend_index\";i:480;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:15:{s:2:\"id\";i: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\";i: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\";i:168;s:16:\"popularity_index\";i:17;s:11:\"trend_index\";i:107;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:582;a:15:{s:2:\"id\";i: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\";i: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\";i:169;s:16:\"popularity_index\";i:377;s:11:\"trend_index\";i:491;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:15:{s:2:\"id\";i: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\";i: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\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:15:{s:2:\"id\";i: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\";i: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\";i:170;s:16:\"popularity_index\";i:550;s:11:\"trend_index\";i:690;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:15:{s:2:\"id\";i: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\";i: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\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:15:{s:2:\"id\";i: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\";i: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\";i:171;s:16:\"popularity_index\";i:425;s:11:\"trend_index\";i:404;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:15:{s:2:\"id\";i: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\";i: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\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:15:{s:2:\"id\";i: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\";i: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\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:15:{s:2:\"id\";i: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\";i: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\";i:172;s:16:\"popularity_index\";i:415;s:11:\"trend_index\";i:584;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:15:{s:2:\"id\";i: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\";i: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\";i:173;s:16:\"popularity_index\";i:72;s:11:\"trend_index\";i:242;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:591;a:15:{s:2:\"id\";i: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\";i: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\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:15:{s:2:\"id\";i: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\";i: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\";i:174;s:16:\"popularity_index\";i:162;s:11:\"trend_index\";i:366;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:593;a:15:{s:2:\"id\";i: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\";i: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\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:15:{s:2:\"id\";i: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\";i: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\";i:175;s:16:\"popularity_index\";i:86;s:11:\"trend_index\";i:245;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:595;a:15:{s:2:\"id\";i: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\";i: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\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:15:{s:2:\"id\";i: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\";i: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\";i:176;s:16:\"popularity_index\";i:381;s:11:\"trend_index\";i:462;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:15:{s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i: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\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:15:{s:2:\"id\";i: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\";i: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\";i:177;s:16:\"popularity_index\";i:573;s:11:\"trend_index\";i:670;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:15:{s:2:\"id\";i: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\";i: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\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:15:{s:2:\"id\";i: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\";i: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\";i:178;s:16:\"popularity_index\";i:486;s:11:\"trend_index\";i:444;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:15:{s:2:\"id\";i: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\";i: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\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:15:{s:2:\"id\";i: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\";i: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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:594;s:11:\"trend_index\";i:687;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:15:{s:2:\"id\";i: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\";i: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\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:15:{s:2:\"id\";i: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\";i: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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:632;s:11:\"trend_index\";i:774;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:15:{s:2:\"id\";i: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\";i: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\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:15:{s:2:\"id\";i: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\";i: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\";i:181;s:16:\"popularity_index\";i:674;s:11:\"trend_index\";i:785;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:15:{s:2:\"id\";i: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\";i: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\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:15:{s:2:\"id\";i: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\";i: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\";i:182;s:16:\"popularity_index\";i:647;s:11:\"trend_index\";i:737;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:15:{s:2:\"id\";i: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\";i: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\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:15:{s:2:\"id\";i: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\";i: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:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:141;s:11:\"trend_index\";i:388;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:611;a:15:{s:2:\"id\";i: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\";i: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\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:15:{s:2:\"id\";i: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\";i: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\";i:184;s:16:\"popularity_index\";i:363;s:11:\"trend_index\";i:678;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:15:{s:2:\"id\";i: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\";i: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\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:15:{s:2:\"id\";i: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\";i: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\";i:185;s:16:\"popularity_index\";i:55;s:11:\"trend_index\";i:210;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:615;a:15:{s:2:\"id\";i: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\";i: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\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:15:{s:2:\"id\";i: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\";i: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\";i:186;s:16:\"popularity_index\";i:154;s:11:\"trend_index\";i:370;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:617;a:15:{s:2:\"id\";i: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\";i: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\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:15:{s:2:\"id\";i: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\";i: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\";i:187;s:16:\"popularity_index\";i:85;s:11:\"trend_index\";i:247;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:15:{s:2:\"id\";i: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\";i: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\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:15:{s:2:\"id\";i: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\";i: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\";i:188;s:16:\"popularity_index\";i:157;s:11:\"trend_index\";i:354;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:15:{s:2:\"id\";i: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\";i: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\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:15:{s:2:\"id\";i: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\";i: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\";i:189;s:16:\"popularity_index\";i:12;s:11:\"trend_index\";i:24;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:15:{s:2:\"id\";i: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\";i: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\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:624;a:15:{s:2:\"id\";i: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\";i: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\";i:190;s:16:\"popularity_index\";i:26;s:11:\"trend_index\";i:89;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:625;a:15:{s:2:\"id\";i: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\";i: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\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:626;a:15:{s:2:\"id\";i: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\";i: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\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:15:{s:2:\"id\";i: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\";i: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\";i:191;s:16:\"popularity_index\";i:642;s:11:\"trend_index\";i:733;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:15:{s:2:\"id\";i: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\";i: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\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:629;a:15:{s:2:\"id\";i: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\";i: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\";i:192;s:16:\"popularity_index\";i:109;s:11:\"trend_index\";i:338;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:630;a:15:{s:2:\"id\";i: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\";i: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\";i:193;s:16:\"popularity_index\";i:25;s:11:\"trend_index\";i:51;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:631;a:15:{s:2:\"id\";i: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\";i: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\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:15:{s:2:\"id\";i: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\";i: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\";i:194;s:16:\"popularity_index\";i:517;s:11:\"trend_index\";i:529;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:15:{s:2:\"id\";i: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\";i: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\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:15:{s:2:\"id\";i: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\";i: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\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:635;a:15:{s:2:\"id\";i: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\";i: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\";i:195;s:16:\"popularity_index\";i:456;s:11:\"trend_index\";i:545;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:15:{s:2:\"id\";i: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\";i: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\";i:196;s:16:\"popularity_index\";i:384;s:11:\"trend_index\";i:416;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:15:{s:2:\"id\";i: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\";i: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\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:15:{s:2:\"id\";i: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\";i: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\";i:197;s:16:\"popularity_index\";i:409;s:11:\"trend_index\";i:534;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:15:{s:2:\"id\";i: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\";i: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\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:640;a:15:{s:2:\"id\";i: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\";i: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\";i:198;s:16:\"popularity_index\";i:439;s:11:\"trend_index\";i:418;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:15:{s:2:\"id\";i: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\";i: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\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:15:{s:2:\"id\";i: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\";i: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:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:643;a:15:{s:2:\"id\";i: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\";i: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\";i:199;s:16:\"popularity_index\";i:107;s:11:\"trend_index\";i:276;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:644;a:15:{s:2:\"id\";i: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\";i: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\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:645;a:15:{s:2:\"id\";i: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\";i: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\";i:200;s:16:\"popularity_index\";i:68;s:11:\"trend_index\";i:174;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:646;a:15:{s:2:\"id\";i: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\";i: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\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:15:{s:2:\"id\";i: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\";i: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\";i:201;s:16:\"popularity_index\";i:16;s:11:\"trend_index\";i:27;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:648;a:15:{s:2:\"id\";i: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\";i: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\";i:202;s:16:\"popularity_index\";i:257;s:11:\"trend_index\";i:252;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:15:{s:2:\"id\";i: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\";i: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\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:15:{s:2:\"id\";i: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\";i: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\";i:203;s:16:\"popularity_index\";i:35;s:11:\"trend_index\";i:48;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:651;a:15:{s:2:\"id\";i: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\";i: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\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:15:{s:2:\"id\";i: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\";i: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\";i:204;s:16:\"popularity_index\";i:427;s:11:\"trend_index\";i:601;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:15:{s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i: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\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:15:{s:2:\"id\";i: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\";i: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\";i:205;s:16:\"popularity_index\";i:469;s:11:\"trend_index\";i:638;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:15:{s:2:\"id\";i: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\";i: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\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:15:{s:2:\"id\";i: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\";i: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\";i:206;s:16:\"popularity_index\";i:82;s:11:\"trend_index\";i:104;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:657;a:15:{s:2:\"id\";i: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\";i: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\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:15:{s:2:\"id\";i: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\";i: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\";i:207;s:16:\"popularity_index\";i:506;s:11:\"trend_index\";i:623;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:15:{s:2:\"id\";i: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\";i: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\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:15:{s:2:\"id\";i: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\";i: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\";i:208;s:16:\"popularity_index\";i:98;s:11:\"trend_index\";i:164;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:661;a:15:{s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?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:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:15:{s:2:\"id\";i: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\";i: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\";i:209;s:16:\"popularity_index\";i:296;s:11:\"trend_index\";i:317;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:15:{s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-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:41:\"[\"Food\",\"footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:15:{s:2:\"id\";i: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\";i: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\";i:210;s:16:\"popularity_index\";i:160;s:11:\"trend_index\";i:403;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:665;a:15:{s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-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:41:\"[\"Food\",\"header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:15:{s:2:\"id\";i: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\";i: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\";i:211;s:16:\"popularity_index\";i:292;s:11:\"trend_index\";i:371;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:15:{s:2:\"id\";i: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\";i: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\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:15:{s:2:\"id\";i: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\";i: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\";i:212;s:16:\"popularity_index\";i:470;s:11:\"trend_index\";i:616;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:15:{s:2:\"id\";i: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\";i: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\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:15:{s:2:\"id\";i: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\";i: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\";i:213;s:16:\"popularity_index\";i:313;s:11:\"trend_index\";i:306;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:15:{s:2:\"id\";i: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\";i: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\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:15:{s:2:\"id\";i: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\";i: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\";i:214;s:16:\"popularity_index\";i:238;s:11:\"trend_index\";i:61;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:15:{s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i: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\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:15:{s:2:\"id\";i: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\";i: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\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:15:{s:2:\"id\";i: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\";i: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\";i:215;s:16:\"popularity_index\";i:440;s:11:\"trend_index\";i:543;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:15:{s:2:\"id\";i: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\";i: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\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:15:{s:2:\"id\";i: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\";i: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\";i:216;s:16:\"popularity_index\";i:275;s:11:\"trend_index\";i:528;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:15:{s:2:\"id\";i: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\";i: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\";i:217;s:16:\"popularity_index\";i:405;s:11:\"trend_index\";i:588;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:15:{s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?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\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:15:{s:2:\"id\";i: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\";i: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\";i:218;s:16:\"popularity_index\";i:358;s:11:\"trend_index\";i:612;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:15:{s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-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:\"[\"footer\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:15:{s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-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:\"[\"header\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:15:{s:2:\"id\";i: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\";i: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\";i:219;s:16:\"popularity_index\";i:487;s:11:\"trend_index\";i:683;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:15:{s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-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:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:15:{s:2:\"id\";i: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\";i: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\";i:220;s:16:\"popularity_index\";i:620;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:15:{s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-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:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:15:{s:2:\"id\";i: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\";i: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\";i:221;s:16:\"popularity_index\";i:364;s:11:\"trend_index\";i:383;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:15:{s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-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:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:15:{s:2:\"id\";i: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\";i: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\";i:222;s:16:\"popularity_index\";i:460;s:11:\"trend_index\";i:443;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:15:{s:2:\"id\";i: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\";i: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\";i:223;s:16:\"popularity_index\";i:335;s:11:\"trend_index\";i:446;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:15:{s:2:\"id\";i: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\";i: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\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:15:{s:2:\"id\";i: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\";i: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\";i:224;s:16:\"popularity_index\";i:271;s:11:\"trend_index\";i:311;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:15:{s:2:\"id\";i: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\";i: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\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:15:{s:2:\"id\";i: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\";i: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\";i:225;s:16:\"popularity_index\";i:321;s:11:\"trend_index\";i:448;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:15:{s:2:\"id\";i: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\";i: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\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:15:{s:2:\"id\";i: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\";i: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\";i:226;s:16:\"popularity_index\";i:370;s:11:\"trend_index\";i:473;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:15:{s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i: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\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:15:{s:2:\"id\";i: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\";i: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\";i:227;s:16:\"popularity_index\";i:269;s:11:\"trend_index\";i:254;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:15:{s:2:\"id\";i: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\";i: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\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:15:{s:2:\"id\";i: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\";i: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\";i:228;s:16:\"popularity_index\";i:376;s:11:\"trend_index\";i:573;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:15:{s:2:\"id\";i: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\";i: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\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:15:{s:2:\"id\";i: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\";i: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\";i:229;s:16:\"popularity_index\";i:685;s:11:\"trend_index\";i:775;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:15:{s:2:\"id\";i: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\";i: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\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:15:{s:2:\"id\";i: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\";i: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\";i:230;s:16:\"popularity_index\";i:604;s:11:\"trend_index\";i:786;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:15:{s:2:\"id\";i: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\";i: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\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:15:{s:2:\"id\";i: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\";i: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\";i:231;s:16:\"popularity_index\";i:561;s:11:\"trend_index\";i:836;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:15:{s:2:\"id\";i: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\";i: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\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:15:{s:2:\"id\";i: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\";i: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\";i:232;s:16:\"popularity_index\";i:560;s:11:\"trend_index\";i:680;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:15:{s:2:\"id\";i: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\";i: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\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:15:{s:2:\"id\";i: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\";i: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\";i:233;s:16:\"popularity_index\";i:502;s:11:\"trend_index\";i:592;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:15:{s:2:\"id\";i: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\";i: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\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:15:{s:2:\"id\";i: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\";i: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\";i:234;s:16:\"popularity_index\";i:580;s:11:\"trend_index\";i:834;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:15:{s:2:\"id\";i: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\";i: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\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:15:{s:2:\"id\";i: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\";i: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\";i:235;s:16:\"popularity_index\";i:575;s:11:\"trend_index\";i:622;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:15:{s:2:\"id\";i: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\";i: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\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:15:{s:2:\"id\";i: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\";i: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\";i:236;s:16:\"popularity_index\";i:566;s:11:\"trend_index\";i:708;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:717;a:15:{s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i: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\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:15:{s:2:\"id\";i: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\";i: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\";i:237;s:16:\"popularity_index\";i:455;s:11:\"trend_index\";i:469;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:15:{s:2:\"id\";i: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\";i: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\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:15:{s:2:\"id\";i: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\";i: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\";i:238;s:16:\"popularity_index\";i:473;s:11:\"trend_index\";i:518;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:15:{s:2:\"id\";i: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\";i: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\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:15:{s:2:\"id\";i: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\";i: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\";i:239;s:16:\"popularity_index\";i:509;s:11:\"trend_index\";i:682;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:15:{s:2:\"id\";i: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\";i: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\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:15:{s:2:\"id\";i: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\";i: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\";i:240;s:16:\"popularity_index\";i:22;s:11:\"trend_index\";i:160;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:15:{s:2:\"id\";i: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\";i: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\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:15:{s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i: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\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:15:{s:2:\"id\";i: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\";i: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\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:728;a:15:{s:2:\"id\";i: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\";i: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\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:729;a:15:{s:2:\"id\";i: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\";i: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\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:730;a:15:{s:2:\"id\";i: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\";i: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\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:731;a:15:{s:2:\"id\";i: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\";i: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\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:15:{s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i: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\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:15:{s:2:\"id\";i: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\";i: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\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:734;a:15:{s:2:\"id\";i: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\";i: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\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:735;a:15:{s:2:\"id\";i: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\";i: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\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:15:{s:2:\"id\";i: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\";i: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\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:15:{s:2:\"id\";i: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\";i: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\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:738;a:15:{s:2:\"id\";i: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\";i: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\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:15:{s:2:\"id\";i: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\";i: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\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:15:{s:2:\"id\";i: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\";i: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\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:15:{s:2:\"id\";i: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\";i: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\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:15:{s:2:\"id\";i: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\";i: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\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:15:{s:2:\"id\";i: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\";i: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\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:744;a:15:{s:2:\"id\";i: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\";i: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\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:745;a:15:{s:2:\"id\";i: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\";i: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\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:746;a:15:{s:2:\"id\";i: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\";i: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\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:747;a:15:{s:2:\"id\";i: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\";i: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\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:15:{s:2:\"id\";i: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\";i: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\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:15:{s:2:\"id\";i: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\";i: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\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:15:{s:2:\"id\";i: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\";i: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\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:15:{s:2:\"id\";i: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\";i: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\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:15:{s:2:\"id\";i: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\";i: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\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:15:{s:2:\"id\";i: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\";i: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\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:15:{s:2:\"id\";i: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\";i: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\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:15:{s:2:\"id\";i: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\";i: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\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:15:{s:2:\"id\";i: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\";i: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\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:15:{s:2:\"id\";i: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\";i: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\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:15:{s:2:\"id\";i: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\";i: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\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:759;a:15:{s:2:\"id\";i: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\";i: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\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:15:{s:2:\"id\";i: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\";i: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\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:761;a:15:{s:2:\"id\";i: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\";i: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\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:762;a:15:{s:2:\"id\";i: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\";i: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\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:763;a:15:{s:2:\"id\";i: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\";i: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\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:15:{s:2:\"id\";i: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\";i: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\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:15:{s:2:\"id\";i: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\";i: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\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:15:{s:2:\"id\";i: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\";i: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\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:15:{s:2:\"id\";i: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\";i: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\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:15:{s:2:\"id\";i: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\";i: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\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:15:{s:2:\"id\";i: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\";i: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\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:15:{s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-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:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:15:{s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:15:{s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-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:43:\"[\"footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:773;a:15:{s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-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:43:\"[\"header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:15:{s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:775;a:15:{s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-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:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:776;a:15:{s:2:\"id\";i: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\";i: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\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:15:{s:2:\"id\";i: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\";i: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\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:15:{s:2:\"id\";i: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\";i: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\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:15:{s:2:\"id\";i: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\";i: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\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:15:{s:2:\"id\";i: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\";i: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\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:15:{s:2:\"id\";i: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\";i: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\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:15:{s:2:\"id\";i: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\";i: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\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:15:{s:2:\"id\";i: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\";i: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\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:15:{s:2:\"id\";i: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\";i: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\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:15:{s:2:\"id\";i: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\";i: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\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:15:{s:2:\"id\";i: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\";i: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\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:15:{s:2:\"id\";i: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\";i: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\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:15:{s:2:\"id\";i: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\";i: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\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:15:{s:2:\"id\";i: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\";i: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\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:15:{s:2:\"id\";i: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\";i: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\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:15:{s:2:\"id\";i: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\";i: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\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:15:{s:2:\"id\";i: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\";i: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\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:793;a:15:{s:2:\"id\";i: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\";i: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\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:15:{s:2:\"id\";i: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\";i: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\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:795;a:15:{s:2:\"id\";i: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\";i: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\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:796;a:15:{s:2:\"id\";i: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\";i: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\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:15:{s:2:\"id\";i: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\";i: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\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:798;a:15:{s:2:\"id\";i: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\";i: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\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:15:{s:2:\"id\";i: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\";i: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\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:15:{s:2:\"id\";i: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\";i: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\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:15:{s:2:\"id\";i: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\";i: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\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:15:{s:2:\"id\";i: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\";i: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\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:803;a:15:{s:2:\"id\";i: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\";i: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\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:15:{s:2:\"id\";i: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\";i: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\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:805;a:15:{s:2:\"id\";i: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\";i: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\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:15:{s:2:\"id\";i: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\";i: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\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:15:{s:2:\"id\";i: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\";i: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\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:15:{s:2:\"id\";i: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\";i: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\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:15:{s:2:\"id\";i: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\";i: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\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:810;a:15:{s:2:\"id\";i: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\";i: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\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:15:{s:2:\"id\";i: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\";i: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\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:15:{s:2:\"id\";i: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\";i: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\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:15:{s:2:\"id\";i: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\";i: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\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:15:{s:2:\"id\";i: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\";i: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\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:15:{s:2:\"id\";i: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\";i: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\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:15:{s:2:\"id\";i: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\";i: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\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:817;a:15:{s:2:\"id\";i: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\";i: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\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:818;a:15:{s:2:\"id\";i: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\";i: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\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:819;a:15:{s:2:\"id\";i: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\";i: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\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:820;a:15:{s:2:\"id\";i: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\";i: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\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:821;a:15:{s:2:\"id\";i: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\";i: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\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:822;a:15:{s:2:\"id\";i: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\";i: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\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:823;a:15:{s:2:\"id\";i: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\";i: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\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:824;a:15:{s:2:\"id\";i: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\";i: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\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:825;a:15:{s:2:\"id\";i: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\";i: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\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:826;a:15:{s:2:\"id\";i: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\";i: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\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:827;a:15:{s:2:\"id\";i: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\";i: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\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:828;a:15:{s:2:\"id\";i: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\";i: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\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:829;a:15:{s:2:\"id\";i: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\";i: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\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:830;a:15:{s:2:\"id\";i: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\";i: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\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:831;a:15:{s:2:\"id\";i: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\";i: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\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:832;a:15:{s:2:\"id\";i: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\";i: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\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:833;a:15:{s:2:\"id\";i: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\";i: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\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:834;a:15:{s:2:\"id\";i: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\";i: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\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:835;a:15:{s:2:\"id\";i: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\";i: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\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:836;a:15:{s:2:\"id\";i: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\";i: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\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:837;a:15:{s:2:\"id\";i: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\";i: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\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:838;a:15:{s:2:\"id\";i: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\";i: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\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:839;a:15:{s:2:\"id\";i: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\";i: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\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:840;a:15:{s:2:\"id\";i: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\";i: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\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:841;a:15:{s:2:\"id\";i: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\";i: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\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:15:{s:2:\"id\";i: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\";i: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\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:843;a:15:{s:2:\"id\";i: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\";i: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\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:844;a:15:{s:2:\"id\";i: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\";i: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\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:845;a:15:{s:2:\"id\";i: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\";i: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\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:846;a:15:{s:2:\"id\";i: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\";i: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\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:847;a:15:{s:2:\"id\";i: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\";i: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\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:848;a:15:{s:2:\"id\";i: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\";i: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\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:849;a:15:{s:2:\"id\";i: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\";i: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\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:850;a:15:{s:2:\"id\";i: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\";i: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\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:851;a:15:{s:2:\"id\";i: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\";i: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\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:852;a:15:{s:2:\"id\";i: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\";i: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\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:853;a:15:{s:2:\"id\";i: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\";i: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\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:854;a:15:{s:2:\"id\";i: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\";i: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\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:855;a:15:{s:2:\"id\";i: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\";i: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\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:856;a:15:{s:2:\"id\";i: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\";i: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\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:857;a:15:{s:2:\"id\";i: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\";i: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\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:858;a:15:{s:2:\"id\";i: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\";i: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\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:859;a:15:{s:2:\"id\";i: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\";i: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\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:860;a:15:{s:2:\"id\";i: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\";i: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\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:861;a:15:{s:2:\"id\";i: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\";i: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\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:862;a:15:{s:2:\"id\";i: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\";i: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\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:863;a:15:{s:2:\"id\";i: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\";i: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\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:864;a:15:{s:2:\"id\";i: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\";i: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\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:865;a:15:{s:2:\"id\";i: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\";i: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\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:866;a:15:{s:2:\"id\";i: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\";i: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\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:867;a:15:{s:2:\"id\";i: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\";i: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\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:868;a:15:{s:2:\"id\";i: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\";i: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\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:869;a:15:{s:2:\"id\";i: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\";i: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\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:870;a:15:{s:2:\"id\";i: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\";i: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\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:871;a:15:{s:2:\"id\";i: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\";i: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\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:872;a:15:{s:2:\"id\";i: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\";i: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\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:873;a:15:{s:2:\"id\";i: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\";i: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\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:874;a:15:{s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i: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\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:875;a:15:{s:2:\"id\";i: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\";i: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\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:876;a:15:{s:2:\"id\";i: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\";i: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\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:877;a:15:{s:2:\"id\";i: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\";i: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\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:878;a:15:{s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-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:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:879;a:15:{s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:880;a:15:{s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:881;a:15:{s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-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:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:882;a:15:{s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-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:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:883;a:15:{s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:884;a:15:{s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-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:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(189,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:55:\"What Is Material Design? Definition, Uses, and Examples\";s:7:\"excerpt\";s:147:\"Material Design is the standard for designing and creating websites and apps. Discover why and learn how to use it to make a user-friendly website.\";s:7:\"created\";i:1612263675;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/what-is-material-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:53:\"Elementor SEO: How To Optimize Your Elementor Website\";s:7:\"excerpt\";s:154:\"SEO is crucial to the success of any website, but to many users, it still remains a mystery. Discover what SEO is and how to use it to optimize your site.\";s:7:\"created\";i:1611838485;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:113:\"https://elementor.com/blog/elementor-seo/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.1: Experiments, Performance Enhancements, And a New Landing Page Workflow\";s:7:\"excerpt\";s:162:\"The new Elementor version 3.1 features performance improvements, a new Landing Page area and workflow to manage your marketing pages, and exploratory experiments.\";s:7:\"created\";i:1611665700;s:5:\"badge\";s:11:\"New Feature\";s:3:\"url\";s:125:\"https://elementor.com/blog/introducing-elementor-3-1/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:33:\"How To Redirect URLs in WordPress\";s:7:\"excerpt\";s:152:\"Redirecting visitors from one page to another is an important part of website maintenance. Explore all the reasons for redirects and how to create them.\";s:7:\"created\";i:1611143960;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/redirect-url-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:33:\"How to Create the Perfect Favicon\";s:7:\"excerpt\";s:140:\"Favicons are an integral part of building up your brand and a recognizable website. Understand what they are, and how to use them correctly.\";s:7:\"created\";i:1610975844;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/favicon-complete-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(738,'widget_bookingwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(665,'booking_unavailable_day5','Off','yes'),(666,'booking_unavailable_day6','Off','yes'),(667,'booking_menu_position','top','yes'),(668,'booking_user_role_booking','editor','yes'),(669,'booking_user_role_addbooking','editor','yes'),(670,'booking_user_role_resources','editor','yes'),(192,'mc4wp_version','4.8.4','yes'),(193,'rentex_options','a:38:{s:8:\"last_tab\";s:1:\"0\";s:11:\"site_layout\";s:4:\"wide\";s:15:\"boxed-container\";s:4:\"1400\";s:12:\"boxed-offset\";s:2:\"30\";s:10:\"logo_light\";a:5:{s:3:\"url\";s:77:\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-updated-.jpeg\";s:2:\"id\";s:4:\"2904\";s:6:\"height\";s:3:\"223\";s:5:\"width\";s:3:\"479\";s:9:\"thumbnail\";s:85:\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-updated--150x150.jpeg\";}s:9:\"logo_size\";a:3:{s:5:\"width\";s:0:\"\";s:6:\"height\";s:4:\"70px\";s:5:\"units\";s:2:\"px\";}s:15:\"body-background\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:0:\"\";s:5:\"media\";a:4:{s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:13:\"color-primary\";a:2:{s:7:\"regular\";s:7:\"#d3b758\";s:5:\"hover\";s:0:\"\";}s:10:\"color-body\";s:7:\"#000000\";s:13:\"color-heading\";s:0:\"\";s:12:\"color-border\";s:7:\"#D3B758\";s:11:\"color-light\";s:0:\"\";s:10:\"color-dark\";s:0:\"\";s:15:\"typography-body\";a:10:{s:11:\"font-family\";s:0:\"\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:0:\"\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:0:\"\";s:11:\"line-height\";s:0:\"\";s:12:\"word-spacing\";s:0:\"\";s:14:\"letter-spacing\";s:0:\"\";}s:11:\"header-type\";s:1:\"2\";s:16:\"header-preview-1\";s:1:\"1\";s:16:\"header-preview-2\";s:1:\"1\";s:16:\"header-preview-3\";s:1:\"1\";s:22:\"header-preview-landing\";s:1:\"1\";s:19:\"show-header-account\";s:1:\"0\";s:20:\"show-header-wishlist\";s:1:\"0\";s:19:\"show-header-compare\";s:1:\"0\";s:22:\"show-header-addlisting\";s:1:\"0\";s:12:\"contact-info\";s:258:\"<ul>\r\n<li><i class=\"rentex-icon-map-marker-alt\"></i><span>Beverly Hills, C.A.</span></li>\r\n<li><i class=\"rentex-icon-paper-plane\"></i><span>(424)-567-2106</span></li>\r\n<li><i class=\"rentex-icon-phone-square\"></i><span>info@opulencemgmt.net</span></li>\r\n</ul>\";s:18:\"show-header-sticky\";s:1:\"1\";s:24:\"breadcrumb-default-color\";s:0:\"\";s:21:\"breadcrumb-default-bg\";a:7:{s:16:\"background-color\";s:0:\"\";s:17:\"background-repeat\";s:0:\"\";s:15:\"background-size\";s:0:\"\";s:21:\"background-attachment\";s:0:\"\";s:19:\"background-position\";s:0:\"\";s:16:\"background-image\";s:74:\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17.jpeg\";s:5:\"media\";a:4:{s:2:\"id\";s:4:\"2652\";s:6:\"height\";s:4:\"1001\";s:5:\"width\";s:4:\"1500\";s:9:\"thumbnail\";s:82:\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-150x150.jpeg\";}}s:9:\"blog_type\";s:0:\"\";s:11:\"social_text\";a:1:{i:0;s:25:\"https://www.facebook.com/\";}s:12:\"social-share\";s:1:\"1\";s:21:\"social-share-facebook\";s:1:\"1\";s:20:\"social-share-twitter\";s:1:\"1\";s:21:\"social-share-linkedin\";s:1:\"1\";s:24:\"social-share-google-plus\";s:1:\"1\";s:22:\"social-share-pinterest\";s:1:\"1\";s:18:\"social-share-email\";s:1:\"1\";s:21:\"enable-footer-builder\";s:1:\"1\";s:19:\"footer-builder-slug\";s:15:\"footerbuilder-3\";}','yes'),(194,'rentex_options-transients','a:4:{s:14:\"changed_values\";a:1:{s:10:\"logo_light\";a:5:{s:3:\"url\";s:59:\"https://om7717.dev34.info/wp-content/uploads/2020/06/om.png\";s:2:\"id\";s:4:\"3940\";s:6:\"height\";s:3:\"555\";s:5:\"width\";s:3:\"663\";s:9:\"thumbnail\";s:67:\"https://om7717.dev34.info/wp-content/uploads/2020/06/om-150x150.png\";}}s:9:\"last_save\";i:1624513252;s:13:\"last_compiler\";i:1624513252;s:11:\"last_import\";i:1624513252;}','yes'),(197,'_elementor_installed_time','1620938330','yes'),(198,'mc4wp_flash_messages','a:0:{}','no'),(653,'booking_form_field_required6','Off','yes'),(654,'booking_form_field_label6','Visitors','yes'),(655,'booking_form_field_values6','1\n2\n3\n4','yes'),(656,'booking_is_days_always_available','Off','yes'),(657,'booking_is_show_pending_days_as_available','Off','yes'),(658,'booking_check_on_server_if_dates_free','On','yes'),(659,'booking_unavailable_days_num_from_today','0','yes'),(660,'booking_unavailable_day0','Off','yes'),(661,'booking_unavailable_day1','Off','yes'),(662,'booking_unavailable_day2','Off','yes'),(663,'booking_unavailable_day3','Off','yes'),(204,'allowedthemes','a:1:{s:12:\"rentex-child\";b:1;}','yes'),(205,'merlin_rentex_child','Rentex Child','yes'),(664,'booking_unavailable_day4','Off','yes'),(207,'theme_mods_rentex-child','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:7:\"primary\";i:52;s:8:\"handheld\";i:52;s:6:\"topbar\";i:12;}s:18:\"custom_css_post_id\";i:3219;}','yes'),(214,'category_children','a:0:{}','yes'),(215,'elementor_library_category_children','a:0:{}','yes'),(1764,'listing-category_children','a:0:{}','yes'),(217,'listing-region_children','a:0:{}','yes'),(219,'elementor_pro_theme_builder_conditions','a:0:{}','yes'),(220,'elementor_fonts_manager_font_types','a:0:{}','yes'),(221,'elementor_fonts_manager_fonts','a:0:{}','yes'),(222,'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'),(223,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";}i:2;a:2:{s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";}i:3;a:2:{s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";}i:4;a:2:{s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";}}','yes'),(224,'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:\"#fff\";i:8;s:4:\"#000\";}','yes'),(225,'_elementor_general_settings','a:3:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:15:\"container_width\";s:4:\"1290\";s:21:\"global_image_lightbox\";s:3:\"yes\";}','yes'),(226,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(227,'elementor_disable_color_schemes','','yes'),(228,'elementor_disable_typography_schemes','','yes'),(229,'elementor_allow_tracking','no','yes'),(230,'elementor_default_generic_fonts','Sans-serif','yes'),(231,'elementor_container_width','1290','yes'),(232,'elementor_space_between_widgets','','yes'),(233,'elementor_stretched_section_container','','yes'),(234,'elementor_page_title_selector','','yes'),(235,'elementor_viewport_lg','','yes'),(256,'elementor_editor_break_lines','','yes'),(257,'elementor_allow_svg','','yes'),(258,'elementor_load_fa4_shim','','yes'),(259,'elementor_unfiltered_files_upload','1','yes'),(260,'_elementor_pro_license_data_fallback','a:2:{s:7:\"timeout\";i:1592874698;s:5:\"value\";s:196:\"{\\\"success\\\":false,\\\"license\\\":\\\"invalid\\\",\\\"item_id\\\":false,\\\"item_name\\\":\\\"Elementor Pro\\\",\\\"checksum\\\":\\\"4ed5702984d5673e6c3cad8e46c1cc50\\\",\\\"subscriptions\\\":\\\"disable\\\",\\\"renewal_discount\\\":0}\";}','yes'),(237,'elementor_viewport_md','','yes'),(238,'elementor_global_image_lightbox','yes','yes'),(239,'elementor_pro_recaptcha_site_key','','yes'),(240,'elementor_pro_recaptcha_secret_key','','yes'),(241,'elementor_pro_recaptcha_v3_site_key','','yes'),(242,'elementor_pro_recaptcha_v3_secret_key','','yes'),(243,'elementor_pro_recaptcha_v3_threshold','0.5','yes'),(244,'elementor_pro_facebook_app_id','','yes'),(245,'elementor_pro_mailchimp_api_key','','yes'),(246,'elementor_validate_api_data','','yes'),(247,'elementor_pro_drip_api_token','','yes'),(248,'elementor_pro_activecampaign_api_key','','yes'),(249,'elementor_pro_activecampaign_api_url','','yes'),(250,'elementor_pro_getresponse_api_key','','yes'),(251,'elementor_pro_convertkit_api_key','','yes'),(252,'elementor_pro_mailerlite_api_key','','yes'),(253,'elementor_typekit-kit-id','','yes'),(254,'elementor_font_awesome_pro_kit_id','','yes'),(255,'elementor_css_print_method','external','yes'),(261,'elementor_pro_tracker_notice','1','yes'),(262,'elementor_tracker_notice','1','yes'),(263,'bmainsite_display','1','yes'),(264,'Hmainsite_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(265,'Hmainsite_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(266,'bhome_display','1','yes'),(267,'Hhome_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(268,'Hhome_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(269,'bblog_display','1','yes'),(270,'hseparator',' <i class=\\\"rentex-icon-angle-right\\\"></i> ','yes'),(271,'amax_title_length','20','yes'),(272,'bpost_page_hierarchy_display','1','yes'),(273,'bpost_page_hierarchy_parent_first','1','yes'),(274,'Spost_page_hierarchy_type','BCN_POST_PARENT','yes'),(275,'Hpost_page_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(276,'Hpost_page_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(277,'apost_page_root','200','yes'),(278,'Hpaged_template','<span class=\\\"%type%\\\">Page %htitle%</span>','yes'),(279,'Hpost_post_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(280,'Hpost_post_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(281,'apost_post_root','64','yes'),(282,'bpost_post_hierarchy_display','1','yes'),(283,'Spost_post_hierarchy_type','category','yes'),(284,'bpost_attachment_archive_display','1','yes'),(285,'bpost_attachment_hierarchy_display','1','yes'),(286,'bpost_attachment_hierarchy_parent_first','1','yes'),(287,'Spost_attachment_hierarchy_type','BCN_POST_PARENT','yes'),(288,'apost_attachment_root','0','yes'),(289,'Hpost_attachment_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(290,'Hpost_attachment_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(291,'H404_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(292,'S404_title','404','yes'),(293,'Hsearch_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\">Search results for &#039;<a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the first page of search results for %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current>%htitle%</a>&#039;</span><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(294,'Hsearch_template_no_anchor','<span class=\\\"%type%\\\">Search results for &#039;%htitle%&#039;</span>','yes'),(295,'Htax_post_tag_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% tag archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(296,'Htax_post_tag_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(297,'Htax_post_format_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(298,'Htax_post_format_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(299,'Hauthor_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\">Articles by: <a title=\\\"Go to the first page of posts by %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current>%htitle%</a></span><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(300,'Hauthor_template_no_anchor','<span class=\\\"%type%\\\">Articles by: %htitle%</span>','yes'),(301,'Sauthor_name','display_name','yes'),(302,'aauthor_root','0','yes'),(303,'Htax_category_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% category archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(304,'Htax_category_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(305,'Hdate_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(306,'Hdate_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(307,'Hpost_elementor_library_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(308,'Hpost_elementor_library_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(309,'apost_elementor_library_root','0','yes'),(310,'bpost_elementor_library_archive_display','1','yes'),(311,'Spost_elementor_library_hierarchy_type','BCN_DATE','yes'),(312,'Hpost_listing_type_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(313,'Hpost_listing_type_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(314,'apost_listing_type_root','0','yes'),(315,'bpost_listing_type_archive_display','1','yes'),(316,'Spost_listing_type_hierarchy_type','BCN_DATE','yes'),(317,'Hpost_listing_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(318,'Hpost_listing_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(319,'apost_listing_root','0','yes'),(320,'bpost_listing_hierarchy_display','1','yes'),(321,'bpost_listing_archive_display','1','yes'),(322,'Spost_listing_hierarchy_type','listing-category','yes'),(323,'Hpost_stm_pricing_plans_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(324,'Hpost_stm_pricing_plans_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(325,'apost_stm_pricing_plans_root','0','yes'),(326,'bpost_stm_pricing_plans_archive_display','1','yes'),(327,'Spost_stm_pricing_plans_hierarchy_type','BCN_DATE','yes'),(328,'Hpost_wpcf7_contact_form_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(329,'Hpost_wpcf7_contact_form_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(330,'apost_wpcf7_contact_form_root','0','yes'),(331,'Spost_wpcf7_contact_form_hierarchy_type','BCN_DATE','yes'),(332,'Hpost_mc4wp-form_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(333,'Hpost_mc4wp-form_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(334,'apost_mc4wp-form_root','0','yes'),(335,'Spost_mc4wp-form_hierarchy_type','BCN_DATE','yes'),(336,'Hpost_elementor_font_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(337,'Hpost_elementor_font_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(338,'apost_elementor_font_root','0','yes'),(339,'Spost_elementor_font_hierarchy_type','BCN_DATE','yes'),(340,'Hpost_elementor_icons_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to %title%.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(341,'Hpost_elementor_icons_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\" class=\\\"%type%\\\">%htitle%</span><meta property=\\\"url\\\" content=\\\"%link%\\\"><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(342,'apost_elementor_icons_root','0','yes'),(343,'Spost_elementor_icons_hierarchy_type','BCN_DATE','yes'),(344,'Htax_elementor_library_type_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% Type archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(345,'Htax_elementor_library_type_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\">%htitle%</span><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(346,'Htax_elementor_library_category_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% Category archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(347,'Htax_elementor_library_category_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\">%htitle%</span><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(348,'Htax_listing-category_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% Categories archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(349,'Htax_listing-category_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\">%htitle%</span><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(350,'Htax_listing-attribute-options_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% Listing attribute options archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(351,'Htax_listing-attribute-options_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\">%htitle%</span><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(352,'Htax_listing-region_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% Regions archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(353,'Htax_listing-region_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\">%htitle%</span><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(354,'Htax_elementor_font_type_template','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><a property=\\\"item\\\" typeof=\\\"WebPage\\\" title=\\\"Go to the %title% Font Type archives.\\\" href=\\\"%link%\\\" class=\\\"%type%\\\" bcn-aria-current><span property=\\\"name\\\">%htitle%</span></a><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(355,'Htax_elementor_font_type_template_no_anchor','<span property=\\\"itemListElement\\\" typeof=\\\"ListItem\\\"><span property=\\\"name\\\">%htitle%</span><meta property=\\\"position\\\" content=\\\"%position%\\\"></span>','yes'),(356,'stm_listing_pages','a:5:{s:12:\"account_page\";s:1:\"5\";s:16:\"account_endpoint\";a:6:{s:12:\"edit-profile\";s:12:\"edit-profile\";s:8:\"my-plans\";s:8:\"my-plans\";s:15:\"payment-history\";s:15:\"payment-history\";s:10:\"my-listing\";s:10:\"my-listing\";s:14:\"saved-searches\";s:14:\"saved-searches\";s:7:\"my-card\";s:7:\"my-card\";}s:11:\"add_listing\";s:4:\"2517\";s:12:\"pricing_plan\";s:4:\"2518\";s:17:\"listing_type_page\";a:2:{i:2642;s:4:\"2643\";i:3967;i:3968;}}','yes'),(357,'ulisting_type_page_layout_0','{\"name\":\"Left Filter Grid\",\"section\":[{\"id\":\"910_1592365710777\",\"title\":\"Section\",\"rows\":[{\"id\":\"60_1592365710777\",\"title\":\"Row\",\"columns\":[{\"id\":\"900_1592365710777\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"190_1592365718164\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\"}},{\"id\":\"540_1592186003560\",\"title\":\"Section\",\"rows\":[{\"id\":\"810_1592186003560\",\"title\":\"Row\",\"columns\":[{\"id\":\"0_1592192590409\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"120_1592193824500\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_1\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"4\",\"large\":\"4\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"500_1592186003560\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"20\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"flex-start\"},\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"flex_direction\":{\"extra_large\":\"none\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":2}},{\"id\":\"560_1592987556426\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"340_1592987556426\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"730_1592987990145\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#FFFFFF\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":1}},{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"grid\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}]}','yes'),(358,'ulisting_element_type_page_layout_0','[]','yes'),(359,'ulisting_type_page_layout_1','{\"name\":\"Right Filter Grid\",\"section\":[{\"id\":\"910_1592365710777\",\"title\":\"Section\",\"rows\":[{\"id\":\"60_1592365710777\",\"title\":\"Row\",\"columns\":[{\"id\":\"900_1592365710777\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"190_1592365718164\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\"}},{\"id\":\"540_1592186003560\",\"title\":\"Section\",\"rows\":[{\"id\":\"810_1592186003560\",\"title\":\"Row\",\"columns\":[{\"id\":\"500_1592186003560\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"20\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":2}},{\"id\":\"560_1592987556426\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"340_1592987556426\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"730_1592987990145\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#FFFFFF\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":1}},{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"grid\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"rentex-mobile-order-2\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"}}},{\"id\":\"0_1592192590409\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"120_1592193824500\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_1\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"rentex-mobile-order-1\",\"size\":{\"extra_large\":\"4\",\"large\":\"4\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}]}','yes'),(360,'ulisting_element_type_page_layout_1','[]','yes'),(361,'ulisting_type_page_layout_2','{\"name\":\"Full Map\",\"section\":[{\"id\":\"780_1592206852244\",\"title\":\"Section\",\"rows\":[{\"id\":\"760_1592206852244\",\"title\":\"Row\",\"columns\":[{\"id\":\"220_1592206852245\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"150_1592206866553\",\"title\":\"Map\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"template\":\"template_1\",\"type\":\"map\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"height\":{\"extra_large\":\"600\",\"large\":\"\",\"medium\":\"400\",\"small\":\"\",\"extra_small\":\"\"}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#FFFFFF\",\"margin\":{\"extra_large\":{\"top\":\"-40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":1,\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"540_1592186003560\",\"title\":\"Section\",\"rows\":[{\"id\":\"810_1592186003560\",\"title\":\"Row\",\"columns\":[{\"id\":\"0_1592192590409\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}},{\"id\":\"180_1592206242617\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"15\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"750_1592365902319\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_2\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"0\",\"large\":\"0\",\"medium\":0,\"small\":0,\"extra_small\":\"0\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#FFFFFF\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"410_1592989685046\",\"title\":\"Section\",\"rows\":[{\"id\":\"410_1592989685046\",\"title\":\"Row\",\"columns\":[{\"id\":\"370_1592989685046\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"grid\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\"}}]}','yes'),(362,'ulisting_element_type_page_layout_2','[]','yes'),(363,'ulisting_type_page_layout_3','{\"name\":\"Top Search Grid\",\"section\":[{\"id\":\"710_1592368202915\",\"title\":\"Section\",\"rows\":[{\"id\":\"950_1592368202915\",\"title\":\"Row\",\"columns\":[{\"id\":\"810_1592368202915\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"20_1592368207499\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#FFFFFF\",\"margin\":{\"extra_large\":{\"top\":\"-40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"540_1592186003560\",\"title\":\"Section\",\"rows\":[{\"id\":\"810_1592186003560\",\"title\":\"Row\",\"columns\":[{\"id\":\"0_1592192590409\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}},{\"id\":\"180_1592206242617\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"15\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"0\",\"large\":\"0\",\"medium\":0,\"small\":0,\"extra_small\":\"0\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#FFFFFF\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"820_1592989980879\",\"title\":\"Section\",\"rows\":[{\"id\":\"560_1592989980879\",\"title\":\"Row\",\"columns\":[{\"id\":\"70_1592989980879\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"230_1626176031680\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_2\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"grid\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\"}}]}','yes'),(364,'ulisting_element_type_page_layout_3','[{\"id\":\"20_1592368207499\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}},{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}},{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}},{\"id\":\"230_1626176031680\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_2\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"grid\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}]','yes'),(365,'ulisting_type_page_layout_4','{\"name\":\"Halfmap Left Grid\",\"section\":[{\"id\":\"780_1592206852244\",\"title\":\"Section\",\"rows\":[{\"id\":\"760_1592206852244\",\"title\":\"Row\",\"columns\":[{\"id\":\"220_1592206852245\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"150_1592206866553\",\"title\":\"Map\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"template\":\"template_1\",\"type\":\"map\",\"id\":\"\",\"class\":\"full-height\",\"color\":\"\",\"background_color\":\"\",\"height\":{\"extra_large\":\"600\",\"large\":\"\",\"medium\":\"400\",\"small\":\"\",\"extra_small\":\"\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"sticky-layout\",\"size\":{\"extra_large\":\"5\",\"large\":\"5\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"440_1592216243558\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"890_1592991685537\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"180_1592991685537\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"980_1592216396451\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"30\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"30\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":2}},{\"id\":\"70_1592991721766\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"540_1592991721766\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"180_1592206242617\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"15\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#E1E1E1\"}},{\"id\":\"780_1592216313417\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_2\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"30\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"60_1592991342586\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"660_1592991342586\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"grid\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"40\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"30\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"7\",\"large\":\"7\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#FFFFFF\"}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"-40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":1}}]}','yes'),(366,'ulisting_element_type_page_layout_4','[]','yes'),(367,'ulisting_type_page_layout_5','{\"name\":\"Halfmap Right\",\"section\":[{\"id\":\"780_1592206852244\",\"title\":\"Section\",\"rows\":[{\"id\":\"760_1592206852244\",\"title\":\"Row\",\"columns\":[{\"id\":\"440_1592216243558\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"890_1592991685537\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"180_1592991685537\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"980_1592216396451\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":2}},{\"id\":\"70_1592991721766\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"540_1592991721766\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"180_1592206242617\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"15\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#E1E1E1\"}},{\"id\":\"780_1592216313417\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_2\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"60_1592991342586\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"660_1592991342586\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"grid\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"40\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"rentex-mobile-order-2\",\"size\":{\"extra_large\":\"7\",\"large\":\"7\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#FFFFFF\"}},{\"id\":\"220_1592206852245\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"150_1592206866553\",\"title\":\"Map\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"template\":\"template_1\",\"type\":\"map\",\"id\":\"\",\"class\":\"full-height\",\"color\":\"\",\"background_color\":\"\",\"height\":{\"extra_large\":\"600\",\"large\":\"\",\"medium\":\"400\",\"small\":\"\",\"extra_small\":\"\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"sticky-layout rentex-mobile-order-1\",\"size\":{\"extra_large\":\"5\",\"large\":\"5\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"-40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":1}}]}','yes'),(368,'ulisting_element_type_page_layout_5','[]','yes'),(369,'ulisting_type_page_layout_6','{\"name\":\"Left Filter List\",\"section\":[{\"id\":\"910_1592365710777\",\"title\":\"Section\",\"rows\":[{\"id\":\"60_1592365710777\",\"title\":\"Row\",\"columns\":[{\"id\":\"900_1592365710777\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"190_1592365718164\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\"}},{\"id\":\"540_1592186003560\",\"title\":\"Section\",\"rows\":[{\"id\":\"810_1592186003560\",\"title\":\"Row\",\"columns\":[{\"id\":\"0_1592192590409\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"120_1592193824500\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_1\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"4\",\"large\":\"4\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"500_1592186003560\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"20\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":2}},{\"id\":\"560_1592987556426\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"340_1592987556426\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"730_1592987990145\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#FFFFFF\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":1}},{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"list\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}]}','yes'),(370,'ulisting_element_type_page_layout_6','[]','yes'),(371,'ulisting_type_page_layout_7','{\"name\":\"Right Filter List\",\"section\":[{\"id\":\"910_1592365710777\",\"title\":\"Section\",\"rows\":[{\"id\":\"60_1592365710777\",\"title\":\"Row\",\"columns\":[{\"id\":\"900_1592365710777\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"190_1592365718164\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\"}},{\"id\":\"540_1592186003560\",\"title\":\"Section\",\"rows\":[{\"id\":\"810_1592186003560\",\"title\":\"Row\",\"columns\":[{\"id\":\"500_1592186003560\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"20\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":2}},{\"id\":\"560_1592987556426\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"340_1592987556426\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"730_1592987990145\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#FFFFFF\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"45\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"35\",\"bottom\":\"\",\"left\":\"35\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":1}},{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"list\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"rentex-mobile-order-2\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"}}},{\"id\":\"0_1592192590409\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"120_1592193824500\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_1\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"rentex-mobile-order-1\",\"size\":{\"extra_large\":\"4\",\"large\":\"4\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}]}','yes'),(372,'ulisting_element_type_page_layout_7','[]','yes'),(373,'ulisting_type_page_layout_8','{\"name\":\"Top Search List\",\"section\":[{\"id\":\"710_1592368202915\",\"title\":\"Section\",\"rows\":[{\"id\":\"950_1592368202915\",\"title\":\"Row\",\"columns\":[{\"id\":\"810_1592368202915\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"20_1592368207499\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#FFFFFF\",\"margin\":{\"extra_large\":{\"top\":\"-40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"540_1592186003560\",\"title\":\"Section\",\"rows\":[{\"id\":\"810_1592186003560\",\"title\":\"Row\",\"columns\":[{\"id\":\"0_1592192590409\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}},{\"id\":\"180_1592206242617\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"15\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"570_1592368123611\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_2\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"0\",\"large\":\"0\",\"medium\":0,\"small\":0,\"extra_small\":\"0\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#FFFFFF\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"820_1592989980879\",\"title\":\"Section\",\"rows\":[{\"id\":\"560_1592989980879\",\"title\":\"Row\",\"columns\":[{\"id\":\"70_1592989980879\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"list\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\"}}]}','yes'),(374,'ulisting_element_type_page_layout_8','[{\"id\":\"20_1592368207499\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}},{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}},{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}},{\"id\":\"570_1592368123611\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_2\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"list\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}]','yes'),(375,'ulisting_type_page_layout_9','{\"name\":\"Halfmap Left List\",\"section\":[{\"id\":\"780_1592206852244\",\"title\":\"Section\",\"rows\":[{\"id\":\"760_1592206852244\",\"title\":\"Row\",\"columns\":[{\"id\":\"220_1592206852245\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"150_1592206866553\",\"title\":\"Map\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"template\":\"template_1\",\"type\":\"map\",\"id\":\"\",\"class\":\"full-height\",\"color\":\"\",\"background_color\":\"\",\"height\":{\"extra_large\":\"600\",\"large\":\"\",\"medium\":\"400\",\"small\":\"\",\"extra_small\":\"\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"sticky-layout\",\"size\":{\"extra_large\":\"5\",\"large\":\"5\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"440_1592216243558\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"890_1592991685537\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"180_1592991685537\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"980_1592216396451\",\"title\":\"Title\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"template\":\"template_1\",\"type\":\"title\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"font_size\":{\"extra_large\":\"\",\"large\":\"\",\"medium\":\"\",\"small\":\"30\",\"extra_small\":\"\"}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"30\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"60_1592195523506\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"950_1592195523506\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592186103498\",\"title\":\"Matches\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"matches\",\"params\":{\"type\":\"matches\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"title\":\"Properties\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"3\",\"large\":\"3\",\"medium\":\"3\",\"small\":0,\"extra_small\":\"12\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"10\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"30\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1592195533019\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"360_1592186088098\",\"title\":\"Reset filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"reset_filter\",\"params\":{\"template\":\"template_1\",\"type\":\"reset_filter\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"960_1592204627293\",\"title\":\"Save Search\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"saved_searches\",\"params\":{\"template_path\":\"saved-searches\\/add-button\",\"template\":\"template_1\",\"type\":\"saved_searches\",\"id\":\"\",\"class\":\"rentex-dot-right\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"50_1592186084246\",\"title\":\"Sort\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"sort\",\"params\":{\"template\":\"template_1\",\"type\":\"sort\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"280_1592192686988\",\"title\":\"Column switch\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"column_switch\",\"params\":{\"template\":\"template_1\",\"type\":\"column_switch\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"10\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"0\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"9\",\"large\":\"9\",\"medium\":\"9\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"flex-start\",\"extra_small\":\"space-between\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-listing-box-white\",\"column\":2}},{\"id\":\"70_1592991721766\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"540_1592991721766\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"180_1592206242617\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder\\/attribute\\/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"15\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#E1E1E1\"}},{\"id\":\"780_1592216313417\",\"title\":\"Filter\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"filter\",\"params\":{\"template\":\"template_2\",\"type\":\"filter\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"30\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"60_1592991342586\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"660_1592991342586\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"510_1592186108532\",\"title\":\"List\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list\",\"params\":{\"template\":\"template_1\",\"type\":\"list\",\"default_item_view\":\"list\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"510_1592186106647\",\"title\":\"Pagination\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"pagination\",\"params\":{\"template\":\"template_1\",\"type\":\"pagination\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"40\",\"right\":\"45\",\"bottom\":\"\",\"left\":\"30\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"45\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"7\",\"large\":\"7\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#FFFFFF\"}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"-40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":1}}]}','yes'),(376,'ulisting_element_type_page_layout_9','[]','yes'),(377,'ulisting_type_page_layout_10','{\"name\":\"Only Map\",\"section\":[{\"id\":\"380_1593055950569\",\"title\":\"Section\",\"rows\":[{\"id\":\"640_1593055950569\",\"title\":\"Row\",\"columns\":[{\"id\":\"740_1593055950569\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"640_1593055958302\",\"title\":\"Map\",\"type\":\"inventory_element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"template\":\"template_1\",\"type\":\"map\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"height\":{\"extra_large\":\"600\",\"large\":\"500\",\"medium\":\"400\",\"small\":\"500\",\"extra_small\":\"400\"}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"full_width\":1}}]}','yes'),(378,'ulisting_element_type_page_layout_10','[]','yes'),(379,'rentex_listing_setting','a:10:{s:15:\"contact_form_id\";s:1:\"6\";s:26:\"agent_info_show_only_login\";s:5:\"false\";s:16:\"google_map_style\";s:19:\"light_grey_and_blue\";s:21:\"add_listing_unlimited\";s:5:\"false\";s:12:\"yelp_api_key\";s:0:\"\";s:10:\"yelp_limit\";s:1:\"0\";s:20:\"yelp_categories_list\";a:3:{i:5;s:9:\"education\";i:8;s:4:\"food\";i:9;s:6:\"health\";}s:12:\"yelp_sort_by\";s:10:\"best_match\";s:12:\"yelp_caching\";s:4:\"true\";s:18:\"walk_score_api_key\";s:0:\"\";}','yes'),(380,'stm_open_by_hover','yes','yes'),(381,'ulisting_default_placeholder','47','yes'),(382,'rentex_check_oneclick','a:1:{s:14:\"import_listing\";b:1;}','yes'),(387,'elementor_log','a:20:{s:32:\"a39a734d81a0c20fa34a0f24bec4d549\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"42524\";s:7:\"\0*\0file\";s:96:\"https://om7717.dev34.info/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=2.9.9\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2021-05-13 22:48:09\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:54:\"An invalid argument supplied as multiple control value\";s:7:\"\0*\0meta\";a:2:{s:8:\"category\";s:18:\"InvalidElementData\";s:3:\"tag\";s:78:\"Element `undefined` got as `testimonial_link` value. Expected array or object.\";}s:8:\"\0*\0times\";i:9;s:14:\"\0*\0times_dates\";a:9:{i:0;s:19:\"2021-05-13 22:48:09\";i:1;s:19:\"2021-05-13 22:48:09\";i:2;s:19:\"2021-05-14 00:24:31\";i:3;s:19:\"2021-06-14 21:18:25\";i:4;s:19:\"2021-06-14 21:25:25\";i:5;s:19:\"2021-06-14 21:25:25\";i:6;s:19:\"2021-06-23 01:59:20\";i:7;s:19:\"2021-06-23 01:59:20\";i:8;s:19:\"2021-06-23 03:54:47\";}s:7:\"\0*\0args\";a:8:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1620946089\";s:7:\"message\";s:54:\"An invalid argument supplied as multiple control value\";s:3:\"url\";s:96:\"https://om7717.dev34.info/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=2.9.9\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"42524\";s:12:\"customFields\";a:2:{s:8:\"category\";s:18:\"InvalidElementData\";s:3:\"tag\";s:78:\"Element `undefined` got as `testimonial_link` value. Expected array or object.\";}s:4:\"meta\";a:2:{s:8:\"category\";s:18:\"InvalidElementData\";s:3:\"tag\";s:78:\"Element `undefined` got as `testimonial_link` value. Expected array or object.\";}}}s:32:\"81e919f591c8ca98d420eb6e2693b8ab\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"161742\";s:7:\"\0*\0file\";s:88:\"https://om7717.dev34.info/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.9.9\";s:7:\"\0*\0line\";s:2:\"31\";s:7:\"\0*\0date\";s:19:\"2021-05-14 05:30:45\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:52:\"Cannot read property \\&#039;html\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2021-05-14 05:30:45\";i:1;s:19:\"2021-05-14 05:30:54\";i:2;s:19:\"2021-05-14 05:31:02\";i:3;s:19:\"2021-06-23 18:40:24\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1620970245\";s:7:\"message\";s:42:\"Cannot read property \\\'html\\\' of undefined\";s:3:\"url\";s:88:\"https://om7717.dev34.info/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.9.9\";s:4:\"line\";s:2:\"31\";s:6:\"column\";s:6:\"161742\";}}s:32:\"1a76b12e4e5e02d3e16611e85bfd1562\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"69ebc0cc7b1fb4887cd2f39d440dd68f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"18e2ce72b65f47bdbf6ca30f9c9f1405\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_general_settings_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"1b9c5c8fbd464df2da37fe46a536bd6e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"54d4c101e12644049705d6566063f878\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:65:\"Elementor/Upgrades - _v_3_0_0_move_default_colors_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"7f9668294a5ee8a292c404909f72909e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:61:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:61:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"181cde553ecb32fd0d5685306446484b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:63:\"Elementor/Upgrades - _v_3_0_0_move_saved_colors_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"4837e14cace68a7e560663fc5e31348a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:67:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"852630a405d9b31f21f2b2eeeeb9e0e8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:69:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:69:\"Elementor/Upgrades - _v_3_0_0_move_default_typography_to_kit Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"b34bf378445d72d4dc13f8e4d29eb252\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"baf3ab12c316af4de37c55cd8c4b6c8f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"Elementor/Upgrades - _v_3_2_0_migrate_breakpoints_to_new_system Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"ac28906aef65864262d95cc93fd66cb2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.2.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.2.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"aa31a4435285279aef3e2af83075a8b2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.2.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.2.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"578915755e4a58895dd716c4d60620d5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2021-05-28 09:19:19\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.2.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-28 09:19:19\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:5:\"2.9.9\";s:2:\"to\";s:5:\"3.2.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"13297aebef0a19fe74a5e4fe2e839171\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:78:\"/home/dev34/om7717.dev34.info/wp-content/plugins/elementor-pro/license/api.php\";s:7:\"\0*\0line\";i:295;s:7:\"\0*\0date\";s:19:\"2021-05-31 07:20:19\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type null\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-05-31 07:20:19\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type null\";s:4:\"file\";s:78:\"/home/dev34/om7717.dev34.info/wp-content/plugins/elementor-pro/license/api.php\";s:4:\"line\";i:295;s:5:\"trace\";b:1;}}s:32:\"51e4d49ccd91e1f13af7660071296cf9\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"13466\";s:7:\"\0*\0file\";s:111:\"https://om7717.dev34.info/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:\"2021-06-23 02:20:35\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:47:\"An \\&quot;el\\&quot; undefined must exist in DOM\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:7;s:14:\"\0*\0times_dates\";a:7:{i:0;s:19:\"2021-06-23 02:20:35\";i:1;s:19:\"2021-06-23 02:22:23\";i:2;s:19:\"2021-06-23 02:22:33\";i:3;s:19:\"2021-06-23 02:22:39\";i:4;s:19:\"2021-06-23 02:22:46\";i:5;s:19:\"2021-06-23 02:22:55\";i:6;s:19:\"2021-06-23 02:23:00\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1624414835\";s:7:\"message\";s:37:\"An \\\"el\\\" undefined must exist in DOM\";s:3:\"url\";s:111:\"https://om7717.dev34.info/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:\"13466\";}}s:32:\"e2c8f11f936bd2803815a5b7cce6afb1\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"19643\";s:7:\"\0*\0file\";s:94:\"https://om7717.dev34.info/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2021-06-23 03:54:23\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:37:\"this.getColorRepresentation() is null\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:101;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2021-06-23 03:58:55\";i:1;s:19:\"2021-06-23 03:58:55\";i:2;s:19:\"2021-06-23 03:58:55\";i:3;s:19:\"2021-06-23 03:58:55\";i:4;s:19:\"2021-06-23 03:58:55\";i:5;s:19:\"2021-06-23 03:58:55\";i:6;s:19:\"2021-06-23 03:59:10\";i:7;s:19:\"2021-06-23 03:59:10\";i:8;s:19:\"2021-06-23 03:59:10\";i:9;s:19:\"2021-06-23 03:59:10\";i:10;s:19:\"2021-06-23 03:59:10\";i:11;s:19:\"2021-06-23 03:59:10\";i:12;s:19:\"2021-06-23 03:59:11\";i:13;s:19:\"2021-06-23 03:59:11\";i:14;s:19:\"2021-06-23 03:59:11\";i:15;s:19:\"2021-06-23 03:59:11\";i:16;s:19:\"2021-06-23 03:59:11\";i:17;s:19:\"2021-06-23 03:59:11\";i:18;s:19:\"2021-06-23 03:59:11\";i:19;s:19:\"2021-06-23 04:00:15\";i:20;s:19:\"2021-06-23 04:00:15\";i:21;s:19:\"2021-06-23 04:00:15\";i:22;s:19:\"2021-06-23 04:00:15\";i:23;s:19:\"2021-06-23 04:00:15\";i:24;s:19:\"2021-06-23 04:00:15\";i:25;s:19:\"2021-06-23 04:00:15\";i:26;s:19:\"2021-06-23 04:00:15\";i:27;s:19:\"2021-06-23 04:00:15\";i:28;s:19:\"2021-06-23 04:00:15\";i:29;s:19:\"2021-06-23 04:00:15\";i:30;s:19:\"2021-06-23 04:00:15\";i:31;s:19:\"2021-06-23 04:00:15\";i:32;s:19:\"2021-06-23 04:00:15\";i:33;s:19:\"2021-06-23 04:00:15\";i:34;s:19:\"2021-06-23 04:00:15\";i:35;s:19:\"2021-06-23 04:00:15\";i:36;s:19:\"2021-06-23 06:30:10\";i:37;s:19:\"2021-06-23 06:30:10\";i:38;s:19:\"2021-06-23 06:30:10\";i:39;s:19:\"2021-06-23 06:36:30\";i:40;s:19:\"2021-06-23 06:36:31\";i:41;s:19:\"2021-06-23 06:36:31\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1624420463\";s:7:\"message\";s:37:\"this.getColorRepresentation() is null\";s:3:\"url\";s:94:\"https://om7717.dev34.info/wp-content/plugins/elementor/assets/lib/pickr/pickr.min.js?ver=1.5.0\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"19643\";}}s:32:\"b8694df8cefafce7901d6f05d91bb3ed\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"174893\";s:7:\"\0*\0file\";s:88:\"https://om7717.dev34.info/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.9.9\";s:7:\"\0*\0line\";s:2:\"31\";s:7:\"\0*\0date\";s:19:\"2021-07-04 20:04:42\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:51:\"Cannot read property \\&#039;get\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2021-07-04 20:04:42\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1625429082\";s:7:\"message\";s:41:\"Cannot read property \\\'get\\\' of undefined\";s:3:\"url\";s:88:\"https://om7717.dev34.info/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.9.9\";s:4:\"line\";s:2:\"31\";s:6:\"column\";s:6:\"174893\";}}}','no'),(758,'widget_dopbspwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(759,'DOPBSP_db_version','2.86','yes'),(760,'DOPBSP_db_version_api_keys','1','yes'),(761,'DOPBSP_db_version_availability','1','yes'),(762,'DOPBSP_db_version_availability_no','1','yes'),(763,'DOPBSP_db_version_availability_price','1','yes'),(764,'DOPBSP_db_version_calendars','1.07','yes'),(765,'DOPBSP_db_version_coupons','1','yes'),(766,'DOPBSP_db_version_days','1.01','yes'),(767,'DOPBSP_db_version_discounts','1','yes'),(768,'DOPBSP_db_version_discounts_items','1','yes'),(769,'DOPBSP_db_version_discounts_items_rules','1','yes'),(770,'DOPBSP_db_version_emails','1','yes'),(771,'DOPBSP_db_version_emails_translation','1','yes'),(772,'DOPBSP_db_version_extras','1','yes'),(773,'DOPBSP_db_version_extras_groups','1.01','yes'),(774,'DOPBSP_db_version_extras_groups_items','1.01','yes'),(775,'DOPBSP_db_version_fees','1','yes'),(776,'DOPBSP_db_version_forms','1','yes'),(777,'DOPBSP_db_version_forms_fields','1.02','yes'),(778,'DOPBSP_db_version_forms_select_options','1','yes'),(779,'DOPBSP_db_version_languages','1','yes'),(780,'DOPBSP_db_version_locations','1','yes'),(781,'DOPBSP_db_version_models','1','yes'),(782,'DOPBSP_db_version_reservations','1.02','yes'),(783,'DOPBSP_db_version_rules','1','yes'),(784,'DOPBSP_db_version_searches','1','yes'),(785,'DOPBSP_db_version_settings','1','yes'),(786,'DOPBSP_db_version_settings_calendar','1','yes'),(787,'DOPBSP_db_version_settings_notifications','1','yes'),(788,'DOPBSP_db_version_settings_payment','1','yes'),(789,'DOPBSP_db_version_settings_search','1','yes'),(790,'DOPBSP_db_version_smses','1','yes'),(791,'DOPBSP_db_version_smses_translation','1','yes'),(792,'DOPBSP_db_version_translation','1.03','yes'),(793,'DOPBSP_request_rating','true','yes'),(1098,'theme_mods_elementor-safe','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(604,'booking_activation_process','Off','yes'),(605,'booking_admin_cal_count','2','yes'),(606,'booking_skin','/css/skins/traditional.css','yes'),(607,'booking_num_per_page','10','yes'),(608,'booking_sort_order','','yes'),(609,'booking_default_toolbar_tab','filter','yes'),(610,'booking_listing_default_view_mode','vm_calendar','yes'),(611,'booking_view_days_num','90','yes'),(612,'booking_max_monthes_in_calendar','1y','yes'),(613,'booking_client_cal_count','1','yes'),(614,'booking_start_day_weeek','0','yes'),(615,'booking_title_after_reservation','Thank you for your online booking.  We will send confirmation of your booking as soon as possible.','yes'),(616,'booking_title_after_reservation_time','7000','yes'),(617,'booking_type_of_thank_you_message','message','yes'),(618,'booking_thank_you_page_URL','/thank-you','yes'),(619,'booking_is_use_autofill_4_logged_user','Off','yes'),(620,'booking_date_format','F j, Y','yes'),(621,'booking_is_use_localized_time_format','Off','yes'),(622,'booking_date_view_type','short','yes'),(623,'booking_is_delete_if_deactive','Off','yes'),(624,'booking_dif_colors_approval_pending','On','yes'),(625,'booking_is_use_hints_at_admin_panel','On','yes'),(626,'booking_is_not_load_bs_script_in_client','Off','yes'),(627,'booking_is_not_load_bs_script_in_admin','Off','yes'),(628,'booking_is_load_js_css_on_specific_pages','Off','yes'),(629,'booking_is_show_system_debug_log','Off','yes'),(630,'booking_pages_for_load_js_css','','yes'),(631,'booking_type_of_day_selections','single','yes'),(632,'booking_timeslot_picker','Off','yes'),(633,'booking_timeslot_picker_skin','/css/time_picker_skins/grey.css','yes'),(634,'booking_timeslot_day_bg_as_available','On','yes'),(635,'booking_form_is_using_bs_css','On','yes'),(636,'booking_form_format_type','vertical','yes'),(637,'booking_form_field_active1','On','yes'),(638,'booking_form_field_required1','On','yes'),(639,'booking_form_field_label1','First Name','yes'),(640,'booking_form_field_active2','On','yes'),(641,'booking_form_field_required2','On','yes'),(642,'booking_form_field_label2','Last Name','yes'),(643,'booking_form_field_active3','On','yes'),(644,'booking_form_field_required3','On','yes'),(645,'booking_form_field_label3','Email','yes'),(646,'booking_form_field_active4','On','yes'),(647,'booking_form_field_required4','Off','yes'),(648,'booking_form_field_label4','Phone','yes'),(649,'booking_form_field_active5','On','yes'),(650,'booking_form_field_required5','Off','yes'),(1563,'essgrid_servers','a:7:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:16:\"themepunch.tools\";i:3;s:22:\"themepunch-ext-a.tools\";i:4;s:22:\"themepunch-ext-a.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-b.tools\";}','yes'),(1564,'essgrid_server_refresh','1626986966','yes'),(1565,'tp_eg_grids_version','3.0','yes'),(1566,'tp_eg_custom_css_imported','true','yes'),(1567,'tp_eg_custom_css','/* HENRY HARRISON */\n\na.eg-henryharrison-element-1,\na.eg-henryharrison-element-2 {\n  -webkit-transition: all .4s linear;  \n    -moz-transition: all .4s linear;  \n    -o-transition: all .4s linear;  \n    -ms-transition: all .4s linear;  \n    transition: all .4s linear; \n}\n\n/* JIMMY CARTER */\n.eg-jimmy-carter-element-11 i:before { margin-left:0px; margin-right:0px;}\n\n\n/* HARDING */\n.eg-harding-element-17 { letter-spacing:1px}\n.eg-harding-wrapper .esg-entry-media { overflow:hidden; \n            box-sizing:border-box;\n            -webkit-box-sizing:border-box;\n            -moz-box-sizing:border-box;\n            padding:30px 30px 0px 30px;\n}\n\n.eg-harding-wrapper .esg-media-poster { overflow:hidden; \n            border-radius:50%;\n            -webkit-border-radius:50%;\n            -moz-border-radius:50%;\n}\n\n/*ULYSSES S GRANT */\n.eg-ulysses-s-grant-wrapper .esg-entry-media { overflow:hidden; \n            box-sizing:border-box;\n            -webkit-box-sizing:border-box;\n            -moz-box-sizing:border-box;\n            padding:30px 30px 0px 30px;\n}\n\n.eg-ulysses-s-grant-wrapper .esg-media-poster { overflow:hidden; \n            border-radius:50%;\n            -webkit-border-radius:50%;\n            -moz-border-radius:50%;\n}\n\n/*RICHARD NIXON */\n.eg-richard-nixon-wrapper .esg-entry-media { overflow:hidden; \n            box-sizing:border-box;\n            -webkit-box-sizing:border-box;\n            -moz-box-sizing:border-box;\n            padding:30px 30px 0px 30px;\n}\n\n.eg-richard-nixon-wrapper .esg-media-poster { overflow:hidden; \n            border-radius:50%;\n            -webkit-border-radius:50%;\n            -moz-border-radius:50%;\n}\n\n\n/* HERBERT HOOVER */\n.eg-herbert-hoover-wrapper .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n    filter: gray; /* IE6-9 */\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n.eg-herbert-hoover-wrapper:hover .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n    -webkit-filter: grayscale(0%);}\n\n\n/* JOOHNSON */\n.eg-lyndon-johnson-wrapper .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n    filter: gray; /* IE6-9 */\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n.eg-lyndon-johnson-wrapper:hover .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n    -webkit-filter: grayscale(0%);}\n\n\n/*RONALD REAGAN*/\n.esg-overlay.eg-ronald-reagan-container {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\n\n/*GEORGE BUSH*/\n.eg-georgebush-wrapper .esg-entry-cover {background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,0.83) 99%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(linear, left top, left bottom, color-stop(50%,rgba(0,0,0,0)), color-stop(99%,rgba(0,0,0,0.83)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */\nbackground: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */\nbackground: -ms-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* IE10+ */\nbackground: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,0.83) 99%,rgba(0,0,0,0.85) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#00000000\', endColorstr=\'#d9000000\',GradientType=0 ); /* IE6-9 */}\n\n/*GEORGE BUSH\n.eg-georgebush-wrapper .esg-entry-cover { background: rgba(0,0,0,0.5);}*/\n\n/*JEFFERSON*/\n.eg-jefferson-wrapper { -webkit-border-radius: 5px !important; -moz-border-radius: 5px !important; border-radius: 5px !important; -webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC) !important; }\n\n/*MONROE*/\n.eg-monroe-element-1 { text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); }\n\n/*LYNDON JOHNSON*/\n.eg-lyndon-johnson-wrapper .esg-entry-cover { background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%, rgba(18,18,18,0) 96%, rgba(19,19,19,0) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.35)), color-stop(96%,rgba(18,18,18,0)), color-stop(100%,rgba(19,19,19,0))); /* Chrome,Safari4+ */\nbackground: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Opera 12+ */\nbackground: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* IE10+ */\nbackground: radial-gradient(ellipse at center,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#59000000\', endColorstr=\'#00131313\',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */\n }\n\n/*WILBERT*/\n.eg-wilbert-wrapper .esg-entry-cover { background: -moz-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%, rgba(18,18,18,0) 96%, rgba(19,19,19,0) 100%); /* FF3.6+ */\nbackground: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(0,0,0,0.35)), color-stop(96%,rgba(18,18,18,0)), color-stop(100%,rgba(19,19,19,0))); /* Chrome,Safari4+ */\nbackground: -webkit-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Chrome10+,Safari5.1+ */\nbackground: -o-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* Opera 12+ */\nbackground: -ms-radial-gradient(center, ellipse cover,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* IE10+ */\nbackground: radial-gradient(ellipse at center,  rgba(0,0,0,0.35) 0%,rgba(18,18,18,0) 96%,rgba(19,19,19,0) 100%); /* W3C */\nfilter: progid:DXImageTransform.Microsoft.gradient( startColorstr=\'#59000000\', endColorstr=\'#00131313\',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */\n }\n.eg-wilbert-wrapper .esg-media-poster{\n  -webkit-transition: 0.4s ease-in-out;\n    -moz-transition:  0.4s ease-in-out;\n    -o-transition:  0.4s ease-in-out;\n    transition:  0.4s ease-in-out;\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n    filter: gray; /* IE6-9 */\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n.eg-wilbert-wrapper:hover .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n    -webkit-filter: grayscale(0%);}\n\n/*PHILLIE*/\n.eg-phillie-element-3:after { \ncontent:\" \";\nwidth: 0px;\nheight: 0px;\nborder-style: solid;\nborder-width: 5px 5px 0 5px;\nborder-color: #000 transparent transparent transparent;\nleft:50%;\nmargin-left:-5px; bottom:-5px; position:absolute; }\n\n/*HOWARD TAFT*/\n.eg-howardtaft-wrapper .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale\");\n    -webkit-filter: grayscale(0%);\n}\n\n.eg-howardtaft-wrapper:hover .esg-media-poster{\n    filter: url(\"data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale\"); /* Firefox 10+, Firefox on Android */\n    filter: gray; /* IE6-9 */\n    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */\n}\n\n/* WOOCOMMERCE */\n.myportfolio-container .added_to_cart.wc-forward { font-family: \"Open Sans\"; font-size: 13px; color: #fff; margin-top: 10px; }\n\n/* LIGHTBOX */\n.esgbox-title.esgbox-title-outside-wrap { font-size: 15px; font-weight: 700; text-align: center; }\n.esgbox-title.esgbox-title-inside-wrap { padding-bottom: 10px; font-size: 15px; font-weight: 700; text-align: center; }','yes'),(1546,'duplicate_page_options','a:4:{s:21:\"duplicate_post_status\";s:5:\"draft\";s:23:\"duplicate_post_redirect\";s:7:\"to_list\";s:21:\"duplicate_post_suffix\";s:0:\"\";s:21:\"duplicate_post_editor\";s:7:\"classic\";}','yes'),(1568,'tp-google-fonts','a:0:{}','yes'),(1569,'tp_eg_role','','yes'),(1570,'tp_eg_update-check-short','1627239964','yes'),(1571,'tp_eg-templates-check','1627239964','yes'),(1572,'tp_eg-templates-new','','no');
/*!40000 ALTER TABLE `wpew_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_postmeta`
--

DROP TABLE IF EXISTS `wpew_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=7054 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_postmeta`
--

LOCK TABLES `wpew_postmeta` WRITE;
/*!40000 ALTER TABLE `wpew_postmeta` DISABLE KEYS */;
INSERT INTO `wpew_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(5,6,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(6,6,'_mail','a:8:{s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:43:\"[_site_title] <wordpress@om7717.dev34.info>\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(7,6,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:43:\"[_site_title] <wordpress@om7717.dev34.info>\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(8,6,'_messages','a:12:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";}'),(9,6,'_additional_settings',NULL),(10,6,'_locale','en_US'),(2108,2642,'listing_type_attribute','a:9:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"5\";i:4;s:2:\"13\";i:5;s:2:\"14\";i:6;s:2:\"16\";i:7;s:2:\"17\";i:8;s:2:\"21\";}'),(2107,2643,'inline_featured_image','0'),(2106,2642,'inline_featured_image','0'),(15,47,'_wp_attached_file','2020/05/placeholder.jpg'),(16,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2020/05/placeholder.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"placeholder-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:23:\"placeholder-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:23:\"placeholder-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"placeholder-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"placeholder-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:23:\"placeholder-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:23:\"placeholder-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:23:\"placeholder-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:23:\"placeholder-450x450.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:23:\"placeholder-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"placeholder-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"placeholder.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;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:{}}}'),(17,47,'_typist_tech_image_optimized','1'),(18,47,'_wxr_import_user_slug','admin'),(19,195,'_wp_attached_file','2020/05/favicon.png'),(20,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:19:\"2020/05/favicon.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"favicon-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:19:\"favicon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"favicon-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"favicon-512x360.png\";s:5:\"width\";i:512;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"favicon-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"favicon-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"favicon-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"favicon-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"favicon-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(21,195,'_typist_tech_image_optimized','1'),(22,195,'_wxr_import_user_slug','admin'),(23,196,'_wp_attached_file','2020/05/cropped-favicon.png'),(24,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2020/05/cropped-favicon.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-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:27:\"cropped-favicon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:25:\"cropped-favicon-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-512x360.png\";s:5:\"width\";i:512;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(25,196,'_wp_attachment_context','site-icon'),(26,196,'_typist_tech_image_optimized','1'),(27,196,'_wxr_import_user_slug','admin'),(28,198,'_wp_attached_file','2020/05/logo.svg'),(29,198,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:17:\"/2020/05/logo.svg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-recent-post\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"rentex-post-grid\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:24:\"rentex-thumbnail-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:30:\"rentex-ulisting-detail-gallery\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-map-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:8:\"logo.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(30,198,'_typist_tech_image_optimized','1'),(31,198,'_wxr_import_user_slug','admin'),(32,226,'_wp_attached_file','2020/05/h1_img1.jpg'),(33,226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:710;s:4:\"file\";s:19:\"2020/05/h1_img1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h1_img1-254x300.jpg\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h1_img1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"h1_img1-600x565.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h1_img1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h1_img1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"h1_img1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"h1_img1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h1_img1-380x450.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"h1_img1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h1_img1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h1_img1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(34,226,'_typist_tech_image_optimized','1'),(37,235,'_wp_attached_file','2020/05/floorplan-01.jpg'),(38,235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:410;s:4:\"file\";s:24:\"2020/05/floorplan-01.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"floorplan-01-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"floorplan-01-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:\"floorplan-01-768x399.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"floorplan-01-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"floorplan-01-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"floorplan-01-615x410.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"floorplan-01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"floorplan-01-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(39,235,'_typist_tech_image_optimized','1'),(40,235,'_wxr_import_user_slug','admin'),(41,245,'_wp_attached_file','2020/05/brand-1.png'),(42,245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:70;s:4:\"file\";s:19:\"2020/05/brand-1.png\";s:5:\"sizes\";a:3:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"brand-1-80x70.png\";s:5:\"width\";i:80;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"brand-1-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"brand-1.png\";s:5:\"width\";i:145;s:6:\"height\";i:70;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:{}}}'),(43,245,'_typist_tech_image_optimized','1'),(44,245,'_wxr_import_user_slug','admin'),(45,246,'_wp_attached_file','2020/05/brand-2.png'),(46,246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:70;s:4:\"file\";s:19:\"2020/05/brand-2.png\";s:5:\"sizes\";a:3:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"brand-2-80x70.png\";s:5:\"width\";i:80;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"brand-2-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"brand-2.png\";s:5:\"width\";i:145;s:6:\"height\";i:70;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:{}}}'),(47,246,'_typist_tech_image_optimized','1'),(48,246,'_wxr_import_user_slug','admin'),(49,247,'_wp_attached_file','2020/05/brand-3.png'),(50,247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:70;s:4:\"file\";s:19:\"2020/05/brand-3.png\";s:5:\"sizes\";a:3:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"brand-3-80x70.png\";s:5:\"width\";i:80;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"brand-3-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"brand-3.png\";s:5:\"width\";i:145;s:6:\"height\";i:70;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:{}}}'),(51,247,'_typist_tech_image_optimized','1'),(52,247,'_wxr_import_user_slug','admin'),(53,248,'_wp_attached_file','2020/05/brand-4.png'),(54,248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:70;s:4:\"file\";s:19:\"2020/05/brand-4.png\";s:5:\"sizes\";a:3:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"brand-4-80x70.png\";s:5:\"width\";i:80;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"brand-4-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"brand-4.png\";s:5:\"width\";i:145;s:6:\"height\";i:70;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:{}}}'),(55,248,'_typist_tech_image_optimized','1'),(56,248,'_wxr_import_user_slug','admin'),(57,249,'_wp_attached_file','2020/05/brand-5.png'),(58,249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:70;s:4:\"file\";s:19:\"2020/05/brand-5.png\";s:5:\"sizes\";a:3:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"brand-5-80x70.png\";s:5:\"width\";i:80;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"brand-5-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"brand-5.png\";s:5:\"width\";i:145;s:6:\"height\";i:70;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:{}}}'),(59,249,'_typist_tech_image_optimized','1'),(60,249,'_wxr_import_user_slug','admin'),(61,250,'_wp_attached_file','2020/05/brand-6.png'),(62,250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:145;s:6:\"height\";i:70;s:4:\"file\";s:19:\"2020/05/brand-6.png\";s:5:\"sizes\";a:3:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"brand-6-80x70.png\";s:5:\"width\";i:80;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"brand-6-100x70.png\";s:5:\"width\";i:100;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"brand-6.png\";s:5:\"width\";i:145;s:6:\"height\";i:70;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:{}}}'),(63,250,'_typist_tech_image_optimized','1'),(64,250,'_wxr_import_user_slug','admin'),(65,272,'_wp_attached_file','2020/05/h1_find-1.jpg'),(66,272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/05/h1_find-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-1-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h1_find-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h1_find-1-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;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:{}}}'),(67,272,'_typist_tech_image_optimized','1'),(70,273,'_wp_attached_file','2020/05/h1_find-2.jpg'),(71,273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/05/h1_find-2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-2-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h1_find-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h1_find-2-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(72,273,'_typist_tech_image_optimized','1'),(75,274,'_wp_attached_file','2020/05/h1_find-3.jpg'),(76,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/05/h1_find-3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-3-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h1_find-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h1_find-3-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;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:{}}}'),(77,274,'_typist_tech_image_optimized','1'),(80,275,'_wp_attached_file','2020/05/h1_find-4.jpg'),(81,275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/05/h1_find-4.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-4-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h1_find-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h1_find-4-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;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:{}}}'),(82,275,'_typist_tech_image_optimized','1'),(85,276,'_wp_attached_file','2020/05/h1_find-5.jpg'),(86,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/05/h1_find-5.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-5-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h1_find-5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h1_find-5-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;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:{}}}'),(87,276,'_typist_tech_image_optimized','1'),(90,277,'_wp_attached_file','2020/05/h1_find-6.jpg'),(91,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/05/h1_find-6.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-6-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h1_find-6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h1_find-6-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;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:{}}}'),(92,277,'_typist_tech_image_optimized','1'),(95,286,'_wp_attached_file','2020/05/h1_img2.jpg'),(96,286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:710;s:4:\"file\";s:19:\"2020/05/h1_img2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h1_img2-254x300.jpg\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h1_img2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"h1_img2-600x565.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h1_img2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h1_img2-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"h1_img2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"h1_img2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h1_img2-380x450.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"h1_img2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h1_img2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h1_img2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(97,286,'_typist_tech_image_optimized','1'),(100,317,'_wp_attached_file','2020/05/revslider-h1.jpg'),(101,317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2020/05/revslider-h1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"revslider-h1-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"revslider-h1-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"revslider-h1-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:\"revslider-h1-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"revslider-h1-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"revslider-h1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"revslider-h1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"revslider-h1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"revslider-h1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"revslider-h1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:25:\"revslider-h1-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:24:\"revslider-h1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"revslider-h1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"revslider-h1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(102,317,'_typist_tech_image_optimized','1'),(103,317,'stm_post_views','1'),(104,317,'stm_day_20','1'),(105,317,'stm_month_06','1'),(108,349,'_wp_attached_file','2020/05/h2_img1.jpg'),(109,349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:710;s:4:\"file\";s:19:\"2020/05/h2_img1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h2_img1-254x300.jpg\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h2_img1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"h2_img1-600x565.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h2_img1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h2_img1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"h2_img1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"h2_img1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h2_img1-380x450.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"h2_img1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h2_img1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h2_img1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"h2_img1.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:710;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:11:\"h2_img1.jpg\";s:5:\"width\";i:600;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:11:\"h2_img1.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:710;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:11:\"h2_img1.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:710;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:11:\"h2_img1.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:710;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(110,349,'_typist_tech_image_optimized','1'),(113,358,'_wp_attached_file','2020/05/bg-newsletter.jpg'),(114,358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1294;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2020/05/bg-newsletter.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-newsletter-300x58.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:58;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-newsletter-1024x198.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-newsletter-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:25:\"bg-newsletter-768x148.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"bg-newsletter-1000x250.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:23:\"bg-newsletter-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:25:\"bg-newsletter-615x250.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:25:\"bg-newsletter-615x250.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:25:\"bg-newsletter-960x250.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:25:\"bg-newsletter-850x250.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-newsletter-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:25:\"bg-newsletter-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(115,358,'_typist_tech_image_optimized','1'),(118,361,'_wp_attached_file','2020/05/image-footer.png'),(119,361,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:249;s:6:\"height\";i:295;s:4:\"file\";s:24:\"2020/05/image-footer.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"image-footer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"image-footer-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"image-footer-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"image-footer-249x180.png\";s:5:\"width\";i:249;s:6:\"height\";i:180;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:{}}}'),(120,361,'_typist_tech_image_optimized','1'),(123,383,'_wp_attached_file','2020/05/h2_bg-video.jpg'),(124,383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:238;s:4:\"file\";s:23:\"2020/05/h2_bg-video.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"h2_bg-video-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"h2_bg-video-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"h2_bg-video-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"h2_bg-video-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"h2_bg-video-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(125,383,'_typist_tech_image_optimized','1'),(128,391,'_wp_attached_file','2020/05/revslider-h2.jpg'),(129,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2020/05/revslider-h2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"revslider-h2-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"revslider-h2-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"revslider-h2-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:\"revslider-h2-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"revslider-h2-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"revslider-h2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"revslider-h2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"revslider-h2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"revslider-h2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"revslider-h2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:25:\"revslider-h2-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:24:\"revslider-h2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"revslider-h2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"revslider-h2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(130,391,'_typist_tech_image_optimized','1'),(131,391,'_wxr_import_user_slug','admin'),(132,392,'_wp_attached_file','2020/05/floorplans01.jpg'),(133,392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:511;s:4:\"file\";s:24:\"2020/05/floorplans01.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"floorplans01-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"floorplans01-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:\"floorplans01-768x497.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"floorplans01-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"floorplans01-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"floorplans01-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"floorplans01-790x450.jpg\";s:5:\"width\";i:790;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:24:\"floorplans01-696x450.jpg\";s:5:\"width\";i:696;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"floorplans01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"floorplans01-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(134,392,'_typist_tech_image_optimized','1'),(135,392,'_wxr_import_user_slug','admin'),(136,393,'_wp_attached_file','2020/05/floorplans02.jpg'),(137,393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:559;s:4:\"file\";s:24:\"2020/05/floorplans02.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"floorplans02-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"floorplans02-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:\"floorplans02-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"floorplans02-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"floorplans02-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"floorplans02-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"floorplans02-790x450.jpg\";s:5:\"width\";i:790;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:24:\"floorplans02-636x450.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"floorplans02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"floorplans02-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(138,393,'_typist_tech_image_optimized','1'),(139,393,'_wxr_import_user_slug','admin'),(140,394,'_wp_attached_file','2020/05/floorplans03.jpg'),(141,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:790;s:6:\"height\";i:559;s:4:\"file\";s:24:\"2020/05/floorplans03.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"floorplans03-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"floorplans03-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:\"floorplans03-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"floorplans03-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"floorplans03-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"floorplans03-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"floorplans03-790x450.jpg\";s:5:\"width\";i:790;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:24:\"floorplans03-636x450.jpg\";s:5:\"width\";i:636;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"floorplans03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"floorplans03-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(142,394,'_typist_tech_image_optimized','1'),(143,394,'_wxr_import_user_slug','admin'),(144,397,'_wp_attached_file','2020/05/revslider-h3.jpg'),(145,397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:24:\"2020/05/revslider-h3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"revslider-h3-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"revslider-h3-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"revslider-h3-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:\"revslider-h3-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"revslider-h3-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"revslider-h3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"revslider-h3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"revslider-h3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"revslider-h3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"revslider-h3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:25:\"revslider-h3-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:24:\"revslider-h3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"revslider-h3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"revslider-h3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(146,397,'_typist_tech_image_optimized','1'),(147,397,'_wxr_import_user_slug','admin'),(148,403,'_wp_attached_file','2020/05/h2_bg-1.jpg'),(149,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:622;s:6:\"height\";i:902;s:4:\"file\";s:19:\"2020/05/h2_bg-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-207x300.jpg\";s:5:\"width\";i:207;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-622x565.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h2_bg-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-622x450.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-310x450.jpg\";s:5:\"width\";i:310;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-622x600.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h2_bg-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(150,403,'_typist_tech_image_optimized','1'),(153,421,'_wp_attached_file','2020/05/h2_bg-2.jpg'),(154,421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:902;s:4:\"file\";s:19:\"2020/05/h2_bg-2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h2_bg-2-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:19:\"h2_bg-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"h2_bg-2-440x565.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h2_bg-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h2_bg-2-440x360.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"h2_bg-2-440x450.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"h2_bg-2-440x450.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h2_bg-2-220x450.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"h2_bg-2-440x600.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h2_bg-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h2_bg-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(155,421,'_typist_tech_image_optimized','1'),(158,442,'_wp_attached_file','2020/05/h3_bg-1.jpg'),(159,442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:19:\"2020/05/h3_bg-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h3_bg-1-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:20:\"h3_bg-1-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:19:\"h3_bg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"h3_bg-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"h3_bg-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_bg-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h3_bg-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h3_bg-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"h3_bg-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"h3_bg-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h3_bg-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"h3_bg-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h3_bg-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h3_bg-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(160,442,'_typist_tech_image_optimized','1'),(163,452,'_wp_attached_file','2020/05/h3_bg-2.jpg'),(164,452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1085;s:4:\"file\";s:19:\"2020/05/h3_bg-2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"h3_bg-2-1024x579.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"h3_bg-2-1536x868.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:868;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_bg-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h3_bg-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-796x450.jpg\";s:5:\"width\";i:796;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h3_bg-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(165,452,'_typist_tech_image_optimized','1'),(168,459,'_wp_attached_file','2020/05/services-1.jpg'),(169,459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2020/05/services-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"services-1-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"services-1-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:\"services-1-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"services-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"services-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"services-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"services-1-770x450.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"services-1-693x450.jpg\";s:5:\"width\";i:693;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"services-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"services-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(170,459,'_typist_tech_image_optimized','1'),(171,459,'_wp_page_template','default'),(172,459,'_wp_attachment_image_alt','Service 1'),(173,459,'_wxr_import_user_slug','admin'),(174,476,'_wp_attached_file','2020/05/services-2.jpg'),(175,476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2020/05/services-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"services-2-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"services-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:22:\"services-2-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"services-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"services-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"services-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"services-2-770x450.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"services-2-693x450.jpg\";s:5:\"width\";i:693;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"services-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"services-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(176,476,'_typist_tech_image_optimized','1'),(177,476,'_wp_attachment_image_alt','Service 2'),(178,476,'_wp_page_template','default'),(179,476,'_wxr_import_user_slug','admin'),(180,477,'_wp_attached_file','2020/05/services-3.jpg'),(181,477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2020/05/services-3.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"services-3-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"services-3-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:\"services-3-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"services-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"services-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"services-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"services-3-770x450.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"services-3-693x450.jpg\";s:5:\"width\";i:693;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"services-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"services-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(182,477,'_typist_tech_image_optimized','1'),(183,477,'_wp_attachment_image_alt','Service 3'),(184,477,'_wp_page_template','default'),(185,477,'_wxr_import_user_slug','admin'),(186,478,'_wp_attached_file','2020/05/services-4.jpg'),(187,478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2020/05/services-4.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"services-4-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"services-4-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:\"services-4-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"services-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"services-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"services-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"services-4-770x450.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"services-4-693x450.jpg\";s:5:\"width\";i:693;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"services-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"services-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(188,478,'_typist_tech_image_optimized','1'),(189,478,'stm_post_views','1'),(190,478,'stm_day_14','1'),(191,478,'stm_month_07','1'),(192,478,'_wp_attachment_image_alt','Service 4'),(193,478,'_wp_page_template','default'),(194,478,'_wxr_import_user_slug','admin'),(195,595,'_wp_attached_file','2020/06/image-about.jpg'),(196,595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:23:\"2020/06/image-about.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"image-about-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"image-about-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:23:\"image-about-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"image-about-960x565.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"image-about-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:23:\"image-about-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:23:\"image-about-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:23:\"image-about-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:23:\"image-about-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:23:\"image-about-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"image-about-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"image-about-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(197,595,'_typist_tech_image_optimized','1'),(200,605,'_wp_attached_file','2020/06/parallax-about.jpg'),(201,605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:26:\"2020/06/parallax-about.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"parallax-about-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:27:\"parallax-about-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:26:\"parallax-about-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:26:\"parallax-about-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:27:\"parallax-about-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:27:\"parallax-about-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:24:\"parallax-about-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:26:\"parallax-about-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:26:\"parallax-about-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:26:\"parallax-about-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:26:\"parallax-about-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:26:\"parallax-about-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:26:\"parallax-about-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:26:\"parallax-about-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(202,605,'_typist_tech_image_optimized','1'),(205,743,'_wp_attached_file','2020/06/slider1-h7.jpg'),(206,743,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2020/06/slider1-h7.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"slider1-h7-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"slider1-h7-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"slider1-h7-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:\"slider1-h7-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"slider1-h7-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slider1-h7-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"slider1-h7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"slider1-h7-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"slider1-h7-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"slider1-h7-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:23:\"slider1-h7-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:22:\"slider1-h7-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"slider1-h7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"slider1-h7-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(207,743,'_typist_tech_image_optimized','1'),(208,743,'stm_post_views','1'),(209,743,'stm_day_20','1'),(210,743,'stm_month_06','1'),(213,756,'_wp_attached_file','2020/06/h4_bg-1.jpg'),(214,756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:19:\"2020/06/h4_bg-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h4_bg-1-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"h4_bg-1-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h4_bg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"h4_bg-1-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"h4_bg-1-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"h4_bg-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h4_bg-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h4_bg-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"h4_bg-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"h4_bg-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"h4_bg-1-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"h4_bg-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h4_bg-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h4_bg-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(215,756,'_typist_tech_image_optimized','1'),(218,792,'_wp_attached_file','2020/06/h4_img-1.jpg'),(219,792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:710;s:4:\"file\";s:20:\"2020/06/h4_img-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h4_img-1-254x300.jpg\";s:5:\"width\";i:254;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h4_img-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"h4_img-1-600x565.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"h4_img-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"h4_img-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"h4_img-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"h4_img-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"h4_img-1-380x450.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"h4_img-1-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"h4_img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"h4_img-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(220,792,'_typist_tech_image_optimized','1'),(223,795,'_wp_attached_file','2020/06/image1-h7.jpg'),(224,795,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2020/06/image1-h7.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"image1-h7-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:22:\"image1-h7-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:21:\"image1-h7-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:21:\"image1-h7-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:22:\"image1-h7-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:22:\"image1-h7-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"image1-h7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"image1-h7-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"image1-h7-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"image1-h7-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"image1-h7-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"image1-h7-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"image1-h7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"image1-h7-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(225,795,'_typist_tech_image_optimized','1'),(228,818,'_wp_attached_file','2020/06/bg1-h7.png'),(229,818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:624;s:6:\"height\";i:555;s:4:\"file\";s:18:\"2020/06/bg1-h7.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"bg1-h7-300x267.png\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"bg1-h7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"bg1-h7-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"bg1-h7-615x360.png\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"bg1-h7-615x450.png\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"bg1-h7-624x450.png\";s:5:\"width\";i:624;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"bg1-h7-506x450.png\";s:5:\"width\";i:506;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"bg1-h7-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"bg1-h7-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(230,818,'_typist_tech_image_optimized','1'),(233,834,'_wp_attached_file','2020/06/avatar-4.jpg'),(234,834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2020/06/avatar-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"avatar-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"avatar-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"avatar-4.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;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:{}}}'),(235,834,'_typist_tech_image_optimized','1'),(238,835,'_wp_attached_file','2020/06/avatar-1.jpg'),(239,835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2020/06/avatar-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"avatar-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"avatar-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"avatar-1.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;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:{}}}'),(240,835,'_typist_tech_image_optimized','1'),(243,852,'_wp_attached_file','2020/06/parallax-h8.jpg'),(244,852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"2020/06/parallax-h8.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"parallax-h8-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:24:\"parallax-h8-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:23:\"parallax-h8-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:23:\"parallax-h8-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:24:\"parallax-h8-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:24:\"parallax-h8-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"parallax-h8-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:23:\"parallax-h8-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:23:\"parallax-h8-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:23:\"parallax-h8-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:23:\"parallax-h8-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:23:\"parallax-h8-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"parallax-h8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"parallax-h8-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(245,852,'_typist_tech_image_optimized','1'),(248,858,'_wp_attached_file','2020/06/avatar-10.jpg'),(249,858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2020/06/avatar-10.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"avatar-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"avatar-10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"avatar-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"avatar-10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(250,858,'_typist_tech_image_optimized','1'),(253,894,'_wp_attached_file','2020/06/h5_img-1.jpg'),(254,894,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:539;s:6:\"height\";i:380;s:4:\"file\";s:20:\"2020/06/h5_img-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5_img-1-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5_img-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"h5_img-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"h5_img-1-539x360.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"h5_img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"h5_img-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:12:\"h5_img-1.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(255,894,'_typist_tech_image_optimized','1'),(258,895,'_wp_attached_file','2020/06/h5_img-2.jpg'),(259,895,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:190;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2020/06/h5_img-2.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5_img-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"h5_img-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"h5_img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"h5_img-2-190x180.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:12:\"h5_img-2.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:200;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:{}}}'),(260,895,'_typist_tech_image_optimized','1'),(263,896,'_wp_attached_file','2020/06/h5_img-3.jpg'),(264,896,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:430;s:6:\"height\";i:200;s:4:\"file\";s:20:\"2020/06/h5_img-3.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5_img-3-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5_img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"h5_img-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"h5_img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"h5_img-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:12:\"h5_img-3.jpg\";s:5:\"width\";i:430;s:6:\"height\";i:200;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:{}}}'),(265,896,'_typist_tech_image_optimized','1'),(268,901,'_wp_attached_file','2020/06/h5_shape-1.jpg'),(269,901,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:22:\"2020/06/h5_shape-1.jpg\";s:5:\"sizes\";a:16:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"h5_shape-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.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:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"h5_shape-1.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:{}}}'),(270,901,'_typist_tech_image_optimized','1'),(273,902,'_wp_attached_file','2020/06/h5_shape-2.jpg'),(274,902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:22:\"2020/06/h5_shape-2.jpg\";s:5:\"sizes\";a:16:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"h5_shape-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.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:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"h5_shape-2.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:{}}}'),(275,902,'_typist_tech_image_optimized','1'),(278,915,'_wp_attached_file','2020/06/h5_bg.jpg'),(279,915,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:17:\"2020/06/h5_bg.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"h5_bg-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"h5_bg-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"h5_bg-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:17:\"h5_bg-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"h5_bg-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"h5_bg-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"h5_bg-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"h5_bg-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"h5_bg-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:17:\"h5_bg-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"h5_bg-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:17:\"h5_bg-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"h5_bg-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"h5_bg-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(280,915,'_typist_tech_image_optimized','1'),(283,930,'_wp_attached_file','2020/06/slider1-h9.jpg'),(284,930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2020/06/slider1-h9.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"slider1-h9-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"slider1-h9-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"slider1-h9-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:\"slider1-h9-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"slider1-h9-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"slider1-h9-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"slider1-h9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"slider1-h9-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"slider1-h9-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"slider1-h9-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:23:\"slider1-h9-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:22:\"slider1-h9-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"slider1-h9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"slider1-h9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(285,930,'_typist_tech_image_optimized','1'),(286,930,'_wxr_import_user_slug','admin'),(287,948,'_wp_attached_file','2020/06/image1-h9.jpg'),(288,948,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:915;s:6:\"height\";i:710;s:4:\"file\";s:21:\"2020/06/image1-h9.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"image1-h9-300x233.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"image1-h9-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:21:\"image1-h9-768x596.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:596;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"image1-h9-915x565.jpg\";s:5:\"width\";i:915;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"image1-h9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"image1-h9-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"image1-h9-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"image1-h9-915x450.jpg\";s:5:\"width\";i:915;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"image1-h9-580x450.jpg\";s:5:\"width\";i:580;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"image1-h9-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"image1-h9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"image1-h9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(289,948,'_typist_tech_image_optimized','1'),(2114,2642,'ulisting_single_page_layout_0','{\"name\":\"Layout 1\",\"section\":[{\"id\":\"820_1553249009531\",\"title\":\"Section\",\"rows\":[{\"id\":\"350_1553249009531\",\"title\":\"Row\",\"columns\":[{\"id\":\"490_1553249009531\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"860_1590569932340\",\"title\":\"Top bar\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"single_inventory_top_bar\",\"params\":{\"template_path\":\"listing-single/item-meta/style_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"370_1590998704681\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"25\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"background_color\":\"#E1E1E1\"}},{\"id\":\"610_1590636029251\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"530_1590636029251\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"990_1592560794381\",\"title\":\"Address\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"rentex_address\",\"params\":{\"template_path\":\"builder/attribute/address\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"6\",\"large\":\"0\",\"medium\":\"0\",\"small\":0,\"extra_small\":\"12\"}}},{\"id\":\"750_1590636089219\",\"title\":\"Column\",\"number\":0,\"elements\":[],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}},{\"id\":\"480_1590739680656\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"1000_1590739680656\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"24\"}},{\"id\":\"320_1592626060744\",\"title\":\"Vertical Lines\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_lines\",\"params\":{\"template_path\":\"builder/attribute/vertical-line\",\"type\":\"element\",\"class\":\"rentex-vertical-line\"}},{\"id\":\"10_1592468505646\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"560_1592468509097\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"700_1592468513248\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}}],\"params\":{\"id\":\"\",\"class\":\"rentex-meta-extra\",\"background_color\":\"\",\"size\":{\"extra_large\":\"6\",\"large\":\"6\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"flex-start\",\"medium\":\"flex-start\",\"small\":\"flex-start\",\"extra_small\":\"flex-start\"},\"flex_direction\":{\"extra_large\":\"row\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}},{\"id\":\"470_1590739690916\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"130_1590739664073\",\"title\":\"Tab Heading\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"params\":{\"template_path\":\"builder/attribute/tab-heading\",\"type\":\"element\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"6\",\"large\":\"6\",\"medium\":\"0\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-start\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex_direction\":{\"extra_large\":\"row\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"20\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}},{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_2\",\"margin\":{\"extra_large\":{\"top\":\"10\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"15\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"50\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":0}},{\"id\":\"160_1553249663085\",\"title\":\"Section\",\"rows\":[{\"id\":\"30_1553249663085\",\"title\":\"Row\",\"columns\":[{\"id\":\"690_1553249663085\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"250_1590740301068\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"230_1590740301068\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"310_1590740341205\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"<h4 style=u0022font-size:18px;u0022>Property Details</h4>\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"Title\"}},{\"id\":\"200_1590740402940\",\"title\":\"Attribute Box\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"attribute-box\",\"field_group\":\"attribute-box\",\"elements\":[{\"id\":\"440_1592468585259\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"150_1592468591070\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"160_1592468600597\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"520_1592468617389\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"type\":\"attribute-box\",\"class\":\"ulisting-attribute-box rentex-attribute-box\",\"column\":3,\"attribute_style\":0,\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F8F8F5\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\"},\"extra_small\":{\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"490_1621327979621\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"130_1590985546425\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Description\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\",\"padding\":{\"extra_large\":{\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"7\",\"large\":\"8\",\"medium\":\"0\",\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"60\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"930_1590568048132\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"230_1621953206518\",\"title\":\"SHort code\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"short-code\",\"elements\":[],\"params\":{\"short_code\":\"[contact-form-7 id=u00223682u0022 title=u0022Untitledu0022]\",\"type\":\"short-code\",\"padding\":{\"extra_large\":{\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"310_1623863288107\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"560_1620984497595\",\"title\":\"Grid Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-grid-listing\",\"params\":{\"template_path\":\"builder/element/grid-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Latest Listings\",\"listing_posts_sort_by\":\"latest\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"1\",\"listing_posts_item_columns_tablet\":\"1\",\"listing_posts_item_columns_mobile\":\"1\",\"style_template\":\"grid-style-5\",\"listing_posts_type_list\":\"2642\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"5\",\"large\":\"4\",\"medium\":\"0\",\"small\":0,\"extra_small\":\"12\"},\"values\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"position\":{\"extra_large\":\"sticky\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#FFFFFF\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"80\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}]}'),(292,951,'_wp_attached_file','2020/06/h5_bg-1.jpg'),(293,951,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:420;s:4:\"file\";s:19:\"2020/06/h5_bg-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h5_bg-1-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h5_bg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h5_bg-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h5_bg-1-410x360.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h5_bg-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h5_bg-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(294,951,'_typist_tech_image_optimized','1'),(297,960,'_wp_attached_file','2020/06/h5_bg-2.jpg'),(298,960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:420;s:4:\"file\";s:19:\"2020/06/h5_bg-2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h5_bg-2-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h5_bg-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h5_bg-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h5_bg-2-410x360.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h5_bg-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h5_bg-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(299,960,'_typist_tech_image_optimized','1'),(302,961,'_wp_attached_file','2020/06/h5_bg-3.jpg'),(303,961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:420;s:4:\"file\";s:19:\"2020/06/h5_bg-3.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h5_bg-3-293x300.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h5_bg-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h5_bg-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h5_bg-3-410x360.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h5_bg-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h5_bg-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(304,961,'_typist_tech_image_optimized','1'),(307,972,'_wp_attached_file','2020/06/h5_bg-4.jpg'),(308,972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:991;s:4:\"file\";s:19:\"2020/06/h5_bg-4.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"h5_bg-4-1024x529.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-768x396.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"h5_bg-4-1536x793.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:793;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"h5_bg-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"h5_bg-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-872x450.jpg\";s:5:\"width\";i:872;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"h5_bg-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(309,972,'stm_post_views','1'),(310,972,'stm_day_20','1'),(311,972,'stm_month_06','1'),(312,972,'_typist_tech_image_optimized','1'),(315,999,'_wp_attached_file','2020/06/h6_bg1.jpg'),(316,999,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:18:\"2020/06/h6_bg1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"h6_bg1-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"h6_bg1-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"h6_bg1-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:18:\"h6_bg1-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"h6_bg1-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"h6_bg1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"h6_bg1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"h6_bg1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"h6_bg1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"h6_bg1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h6_bg1-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"h6_bg1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"h6_bg1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"h6_bg1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(317,999,'_typist_tech_image_optimized','1'),(320,1042,'_wp_attached_file','2020/06/wide_range.svg'),(321,1042,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:23:\"/2020/06/wide_range.svg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-recent-post\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"rentex-post-grid\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:24:\"rentex-thumbnail-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:30:\"rentex-ulisting-detail-gallery\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-map-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"wide_range.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(322,1042,'_typist_tech_image_optimized','1'),(325,1047,'_wp_attached_file','2020/06/financing.svg'),(326,1047,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:22:\"/2020/06/financing.svg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-recent-post\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"rentex-post-grid\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:24:\"rentex-thumbnail-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:30:\"rentex-ulisting-detail-gallery\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-map-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:13:\"financing.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(327,1047,'_typist_tech_image_optimized','1'),(2113,2642,'stm_search_form_type','a:2:{i:0;a:1:{s:4:\"date\";a:4:{s:4:\"type\";s:4:\"date\";s:5:\"label\";s:8:\"Check in\";s:9:\"date_type\";s:5:\"range\";s:9:\"use_field\";s:0:\"\";}}i:1;a:1:{s:4:\"date\";a:4:{s:4:\"type\";s:4:\"date\";s:5:\"label\";s:9:\"Check out\";s:9:\"date_type\";s:5:\"range\";s:9:\"use_field\";s:0:\"\";}}}'),(330,1048,'_wp_attached_file','2020/06/trust.svg'),(331,1048,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:18:\"/2020/06/trust.svg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-recent-post\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"rentex-post-grid\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:24:\"rentex-thumbnail-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:30:\"rentex-ulisting-detail-gallery\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-map-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:9:\"trust.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(332,1048,'_typist_tech_image_optimized','1'),(335,1064,'_wp_attached_file','2020/06/h6_bg2.jpg'),(336,1064,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:760;s:4:\"file\";s:18:\"2020/06/h6_bg2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"h6_bg2-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"h6_bg2-1024x405.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"h6_bg2-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:18:\"h6_bg2-768x304.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"h6_bg2-1536x608.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"h6_bg2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"h6_bg2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"h6_bg2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"h6_bg2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"h6_bg2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h6_bg2-1137x450.jpg\";s:5:\"width\";i:1137;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"h6_bg2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"h6_bg2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"h6_bg2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(337,1064,'_typist_tech_image_optimized','1'),(340,1091,'_wp_attached_file','2020/06/avatar-2.jpg'),(341,1091,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2020/06/avatar-2.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"avatar-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"avatar-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(342,1091,'_typist_tech_image_optimized','1'),(345,1092,'_wp_attached_file','2020/06/avatar-3.jpg'),(346,1092,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2020/06/avatar-3.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"avatar-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"avatar-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(347,1092,'_typist_tech_image_optimized','1'),(350,1093,'_wp_attached_file','2020/06/avatar-5.jpg'),(351,1093,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2020/06/avatar-5.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"avatar-5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"avatar-5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(352,1093,'_typist_tech_image_optimized','1'),(355,1094,'_wp_attached_file','2020/06/avatar-6.jpg'),(356,1094,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2020/06/avatar-6.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"avatar-6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"avatar-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"avatar-6-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(357,1094,'_typist_tech_image_optimized','1'),(358,1094,'stm_post_views','1'),(359,1094,'stm_day_25','1'),(360,1094,'stm_month_06','1'),(363,1116,'_wp_attached_file','2020/06/buy_a_home.svg'),(364,1116,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:23:\"/2020/06/buy_a_home.svg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-recent-post\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"rentex-post-grid\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:24:\"rentex-thumbnail-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:30:\"rentex-ulisting-detail-gallery\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-map-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:14:\"buy_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(365,1116,'_typist_tech_image_optimized','1'),(368,1118,'_wp_attached_file','2020/06/neighborhoods.svg'),(369,1118,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:26:\"/2020/06/neighborhoods.svg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-recent-post\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"rentex-post-grid\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:24:\"rentex-thumbnail-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:30:\"rentex-ulisting-detail-gallery\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-map-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:17:\"neighborhoods.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(370,1118,'_typist_tech_image_optimized','1'),(373,1119,'_wp_attached_file','2020/06/rent_a_home.svg'),(374,1119,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:0;s:6:\"height\";i:0;s:4:\"file\";s:24:\"/2020/06/rent_a_home.svg\";s:5:\"sizes\";a:15:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"150\";s:6:\"height\";s:3:\"150\";s:4:\"crop\";s:1:\"1\";s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"300\";s:6:\"height\";s:3:\"300\";s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:4:\"1024\";s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:14:\"post-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-recent-post\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:16:\"rentex-post-grid\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:24:\"rentex-thumbnail-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:30:\"rentex-ulisting-detail-gallery\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:18:\"rentex-map-listing\";a:5:{s:5:\"width\";b:0;s:6:\"height\";b:0;s:4:\"crop\";b:0;s:4:\"file\";s:15:\"rent_a_home.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(375,1119,'_typist_tech_image_optimized','1'),(378,1333,'_wp_attached_file','2020/06/bg1-h7.jpg'),(379,1333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2020/06/bg1-h7.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"bg1-h7-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:19:\"bg1-h7-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:18:\"bg1-h7-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:18:\"bg1-h7-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:19:\"bg1-h7-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:19:\"bg1-h7-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"bg1-h7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"bg1-h7-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"bg1-h7-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"bg1-h7-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"bg1-h7-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"bg1-h7-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"bg1-h7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"bg1-h7-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(380,1333,'_typist_tech_image_optimized','1'),(383,1349,'_wp_attached_file','2020/06/region1-h9.jpg'),(384,1349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/06/region1-h9.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"region1-h9-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"region1-h9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"region1-h9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"region1-h9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"region1-h9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(385,1349,'_typist_tech_image_optimized','1'),(388,1353,'_wp_attached_file','2020/06/region3-h9.jpg'),(389,1353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/06/region3-h9.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"region3-h9-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"region3-h9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"region3-h9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"region3-h9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"region3-h9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(390,1353,'_typist_tech_image_optimized','1'),(393,1354,'_wp_attached_file','2020/06/region4-h9.jpg'),(394,1354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:850;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/06/region4-h9.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"region4-h9-300x106.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"region4-h9-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:\"region4-h9-768x271.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"region4-h9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"region4-h9-615x300.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"region4-h9-615x300.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"region4-h9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"region4-h9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(395,1354,'_typist_tech_image_optimized','1'),(398,1359,'_wp_attached_file','2020/06/region2-h9.jpg'),(399,1359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:610;s:6:\"height\";i:446;s:4:\"file\";s:22:\"2020/06/region2-h9.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"region2-h9-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"region2-h9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"region2-h9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"region2-h9-610x360.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"region2-h9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"region2-h9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(400,1359,'_typist_tech_image_optimized','1'),(403,1360,'_wp_attached_file','2020/06/region5-h9.jpg'),(404,1360,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:610;s:6:\"height\";i:446;s:4:\"file\";s:22:\"2020/06/region5-h9.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"region5-h9-300x219.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"region5-h9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"region5-h9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"region5-h9-610x360.jpg\";s:5:\"width\";i:610;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"region5-h9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"region5-h9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(405,1360,'_typist_tech_image_optimized','1'),(408,1405,'_wp_attached_file','2020/06/banner1-h8.jpg'),(409,1405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:430;s:4:\"file\";s:22:\"2020/06/banner1-h8.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"banner1-h8-286x300.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"banner1-h8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"banner1-h8-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"banner1-h8-410x360.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"banner1-h8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"banner1-h8-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(410,1405,'_typist_tech_image_optimized','1'),(413,1411,'_wp_attached_file','2020/06/slider1-h10.jpg'),(414,1411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2020/06/slider1-h10.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"slider1-h10-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"slider1-h10-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"slider1-h10-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:23:\"slider1-h10-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"slider1-h10-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"slider1-h10-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"slider1-h10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:23:\"slider1-h10-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:23:\"slider1-h10-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:23:\"slider1-h10-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:24:\"slider1-h10-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:23:\"slider1-h10-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"slider1-h10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"slider1-h10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(415,1411,'_typist_tech_image_optimized','1'),(416,1411,'stm_post_views','1'),(417,1411,'stm_day_25','1'),(418,1411,'stm_month_06','1'),(419,1411,'_wxr_import_user_slug','admin'),(420,1415,'_wp_attached_file','2020/06/banner1-h10.jpg'),(421,1415,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2020/06/banner1-h10.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"banner1-h10-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"banner1-h10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"banner1-h10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"banner1-h10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"banner1-h10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(422,1415,'_typist_tech_image_optimized','1'),(425,1427,'_wp_attached_file','2020/06/banner2-h10.jpg'),(426,1427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2020/06/banner2-h10.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"banner2-h10-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"banner2-h10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"banner2-h10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"banner2-h10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"banner2-h10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(427,1427,'_typist_tech_image_optimized','1'),(2112,2642,'stm_search_form_category','a:8:{i:0;a:1:{s:6:\"search\";a:4:{s:4:\"type\";s:6:\"search\";s:5:\"label\";s:6:\"Search\";s:11:\"placeholder\";s:14:\"Enter keywords\";s:9:\"use_field\";s:14:\"ulisitng_title\";}}i:1;a:1:{s:8:\"dropdown\";a:6:{s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:4:\"City\";s:11:\"placeholder\";s:11:\"Select City\";s:9:\"use_field\";s:6:\"region\";s:8:\"order_by\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";}}i:2;a:1:{s:8:\"dropdown\";a:6:{s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:8:\"Bedrooms\";s:11:\"placeholder\";s:11:\"Select Beds\";s:9:\"use_field\";s:2:\"16\";s:8:\"order_by\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";}}i:3;a:1:{s:8:\"dropdown\";a:6:{s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:9:\"Bathrooms\";s:11:\"placeholder\";s:16:\"Select Bathrooms\";s:9:\"use_field\";s:2:\"17\";s:8:\"order_by\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";}}i:4;a:1:{s:5:\"range\";a:5:{s:4:\"type\";s:5:\"range\";s:5:\"label\";s:5:\"Sq Ft\";s:9:\"use_field\";s:0:\"\";s:6:\"prefix\";s:0:\"\";s:6:\"suffix\";s:0:\"\";}}i:5;a:1:{s:5:\"range\";a:5:{s:4:\"type\";s:5:\"range\";s:5:\"label\";s:5:\"Price\";s:9:\"use_field\";s:1:\"3\";s:6:\"prefix\";s:1:\"$\";s:6:\"suffix\";s:0:\"\";}}i:6;a:1:{s:8:\"dropdown\";a:6:{s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:7:\"Garages\";s:11:\"placeholder\";s:13:\"Select Garage\";s:9:\"use_field\";s:0:\"\";s:8:\"order_by\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";}}i:7;a:1:{s:8:\"checkbox\";a:6:{s:4:\"type\";s:8:\"checkbox\";s:5:\"label\";s:9:\"Amenities\";s:9:\"use_field\";s:0:\"\";s:8:\"order_by\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";s:6:\"column\";s:1:\"4\";}}}'),(430,1428,'_wp_attached_file','2020/06/banner3-h10.jpg'),(431,1428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2020/06/banner3-h10.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"banner3-h10-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"banner3-h10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"banner3-h10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"banner3-h10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"banner3-h10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(432,1428,'_typist_tech_image_optimized','1'),(3938,3204,'inline_featured_image','0'),(435,1442,'_wp_attached_file','2020/06/banner4-h10.jpg'),(436,1442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1165;s:6:\"height\";i:710;s:4:\"file\";s:23:\"2020/06/banner4-h10.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"banner4-h10-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"banner4-h10-1024x624.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:624;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"banner4-h10-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:23:\"banner4-h10-768x468.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"banner4-h10-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"banner4-h10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:23:\"banner4-h10-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:23:\"banner4-h10-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:23:\"banner4-h10-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:23:\"banner4-h10-738x450.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:23:\"banner4-h10-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"banner4-h10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"banner4-h10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(437,1442,'stm_post_views','1'),(438,1442,'stm_day_20','1'),(439,1442,'stm_month_06','1'),(440,1442,'_typist_tech_image_optimized','1'),(3939,3204,'_edit_last','8'),(3940,3204,'_wp_page_template','default'),(443,1581,'_wp_attached_file','2020/06/logo-light.png'),(444,1581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:136;s:6:\"height\";i:37;s:4:\"file\";s:22:\"2020/06/logo-light.png\";s:5:\"sizes\";a:2:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"logo-light-80x37.png\";s:5:\"width\";i:80;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"logo-light-100x37.png\";s:5:\"width\";i:100;s:6:\"height\";i:37;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:{}}}'),(445,1581,'_typist_tech_image_optimized','1'),(446,1581,'stm_post_views','1'),(447,1581,'stm_day_22','1'),(448,1581,'stm_month_06','1'),(449,1581,'_wxr_import_user_slug','admin'),(450,1789,'_wp_attached_file','2020/06/image-footer4.png'),(451,1789,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:140;s:6:\"height\";i:131;s:4:\"file\";s:25:\"2020/06/image-footer4.png\";s:5:\"sizes\";a:2:{s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:23:\"image-footer4-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:25:\"image-footer4-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:{}}}'),(452,1789,'stm_post_views','1'),(453,1789,'stm_day_25','1'),(454,1789,'stm_month_06','1'),(455,1789,'_typist_tech_image_optimized','1'),(3941,3204,'_edit_lock','1624422784:8'),(458,1888,'_wp_attached_file','2020/06/h3_img-1.jpg'),(459,1888,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:220;s:4:\"file\";s:20:\"2020/06/h3_img-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"h3_img-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"h3_img-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"h3_img-1.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;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:{}}}'),(460,1888,'_typist_tech_image_optimized','1'),(463,1889,'_wp_attached_file','2020/06/h3_img-2.jpg'),(464,1889,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:220;s:4:\"file\";s:20:\"2020/06/h3_img-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"h3_img-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"h3_img-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"h3_img-2.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;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:{}}}'),(465,1889,'_typist_tech_image_optimized','1'),(6106,2779,'stm_day_23','10'),(468,1890,'_wp_attached_file','2020/06/h3_img-3.jpg'),(469,1890,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:220;s:4:\"file\";s:20:\"2020/06/h3_img-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"h3_img-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"h3_img-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"h3_img-3.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;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:{}}}'),(470,1890,'_typist_tech_image_optimized','1'),(6373,3918,'_wp_page_template','elementor_header_footer'),(473,1891,'_wp_attached_file','2020/06/h3_img-4.jpg'),(474,1891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:470;s:4:\"file\";s:20:\"2020/06/h3_img-4.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h3_img-4-191x300.jpg\";s:5:\"width\";i:191;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"h3_img-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"h3_img-4-300x360.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"h3_img-4-300x450.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"h3_img-4-300x450.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"h3_img-4-287x450.jpg\";s:5:\"width\";i:287;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"h3_img-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"h3_img-4.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:470;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:{}}}'),(475,1891,'_typist_tech_image_optimized','1'),(478,1892,'_wp_attached_file','2020/06/h3_img-5.jpg'),(479,1892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:220;s:4:\"file\";s:20:\"2020/06/h3_img-5.jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"h3_img-5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"h3_img-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"h3_img-5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"h3_img-5.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;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:{}}}'),(480,1892,'_typist_tech_image_optimized','1'),(483,2039,'_wp_attached_file','2020/07/h6_find-8.jpg'),(484,2039,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/07/h6_find-8.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6_find-8-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h6_find-8-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h6_find-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h6_find-8-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;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:{}}}'),(485,2039,'_typist_tech_image_optimized','1'),(488,2041,'_wp_attached_file','2020/07/h6_find-7.jpg'),(489,2041,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/07/h6_find-7.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6_find-7-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h6_find-7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h6_find-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h6_find-7-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;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:{}}}'),(490,2041,'_typist_tech_image_optimized','1'),(493,2366,'_wp_attached_file','2020/07/bg-videoh7.jpg'),(494,2366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2020/07/bg-videoh7.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bg-videoh7-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-videoh7-1024x384.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-videoh7-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:\"bg-videoh7-768x288.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"bg-videoh7-1536x576.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"bg-videoh7-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"bg-videoh7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"bg-videoh7-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"bg-videoh7-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"bg-videoh7-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:23:\"bg-videoh7-1200x450.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:22:\"bg-videoh7-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-videoh7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"bg-videoh7-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(495,2366,'_typist_tech_image_optimized','1'),(498,2372,'_wp_attached_file','2020/07/h3_img-6..jpg'),(499,2372,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:220;s:4:\"file\";s:21:\"2020/07/h3_img-6..jpg\";s:5:\"sizes\";a:16:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h3_img-6.-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h3_img-6.-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h3_img-6.-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h3_img-6.-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";s:3:\"300\";s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:13:\"h3_img-6..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;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:{}}}'),(500,2372,'_typist_tech_image_optimized','1'),(503,2373,'_wp_attached_file','2020/07/h3_img-7..jpg'),(504,2373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:220;s:4:\"file\";s:21:\"2020/07/h3_img-7..jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h3_img-7.-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h3_img-7.-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h3_img-7.-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h3_img-7.-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:13:\"h3_img-7..jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;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:{}}}'),(505,2373,'_typist_tech_image_optimized','1'),(508,2378,'_wp_attached_file','2020/07/region6-h9.jpg'),(509,2378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/07/region6-h9.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"region6-h9-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"region6-h9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"region6-h9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"region6-h9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"region6-h9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(510,2378,'_typist_tech_image_optimized','1'),(2111,2642,'stm_search_form_advanced','a:3:{i:0;a:1:{s:8:\"dropdown\";a:6:{s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:4:\"City\";s:11:\"placeholder\";s:4:\"City\";s:9:\"use_field\";s:6:\"region\";s:8:\"order_by\";s:4:\"name\";s:5:\"order\";s:3:\"ASC\";}}i:1;a:1:{s:8:\"dropdown\";a:6:{s:4:\"type\";s:8:\"dropdown\";s:5:\"label\";s:5:\"Guest\";s:11:\"placeholder\";s:5:\"Guest\";s:9:\"use_field\";s:2:\"21\";s:8:\"order_by\";s:5:\"count\";s:5:\"order\";s:3:\"ASC\";}}i:2;a:1:{s:6:\"search\";a:4:{s:4:\"type\";s:6:\"search\";s:5:\"label\";s:5:\"House\";s:11:\"placeholder\";s:15:\"Type House name\";s:9:\"use_field\";s:14:\"ulisitng_title\";}}}'),(513,2379,'_wp_attached_file','2020/07/region7-h9.jpg'),(514,2379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:410;s:6:\"height\";i:300;s:4:\"file\";s:22:\"2020/07/region7-h9.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"region7-h9-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"region7-h9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"region7-h9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"region7-h9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"region7-h9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:14:\"region7-h9.jpg\";s:5:\"width\";i:410;s:6:\"height\";i:300;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:{}}}'),(515,2379,'stm_post_views','1'),(516,2379,'stm_day_14','1'),(517,2379,'stm_month_07','1'),(518,2379,'_typist_tech_image_optimized','1'),(521,2478,'_wp_attached_file','2020/07/about-us.jpg'),(522,2478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:574;s:4:\"file\";s:20:\"2020/07/about-us.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"about-us-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"about-us-1024x306.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:306;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"about-us-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:20:\"about-us-768x230.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"about-us-1536x459.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:459;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"about-us-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"about-us-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"about-us-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"about-us-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"about-us-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"about-us-1505x450.jpg\";s:5:\"width\";i:1505;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"about-us-850x574.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"about-us-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"about-us-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(523,2478,'_typist_tech_image_optimized','1'),(2110,2642,'ulisting_listing_compare_attribute','a:9:{i:0;i:3;i:1;i:8;i:2;i:10;i:3;i:11;i:4;i:12;i:5;i:16;i:6;i:17;i:7;i:18;i:8;i:19;}'),(526,2514,'_wp_attached_file','2020/07/h1-bg1.jpg'),(527,2514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:480;s:4:\"file\";s:18:\"2020/07/h1-bg1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"h1-bg1-300x75.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"h1-bg1-1024x256.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"h1-bg1-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:18:\"h1-bg1-768x192.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"h1-bg1-1536x384.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"h1-bg1-1000x480.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"h1-bg1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"h1-bg1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"h1-bg1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"h1-bg1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"h1-bg1-1800x450.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"h1-bg1-850x480.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"h1-bg1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"h1-bg1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(528,2514,'_typist_tech_image_optimized','1'),(531,2515,'inline_featured_image','0'),(532,2515,'_wp_page_template','default'),(533,2515,'_wxr_import_user_slug','admin'),(534,2516,'inline_featured_image','0'),(535,2516,'_wp_page_template','default'),(536,2516,'stm_post_views','4'),(537,2516,'stm_day_2','1'),(538,2516,'stm_month_06','2'),(539,2516,'stm_day_30','1'),(540,2516,'stm_day_27','1'),(541,2516,'stm_month_07','1'),(542,2516,'stm_day_17','1'),(543,2516,'stm_month_08','1'),(544,2516,'_wxr_import_user_slug','admin'),(545,5,'inline_featured_image','0'),(546,5,'stm_post_views','682'),(547,5,'stm_day_29','5'),(548,5,'stm_month_05','2'),(549,5,'stm_day_2','10'),(550,5,'stm_month_06','221'),(551,5,'stm_day_3','10'),(552,5,'stm_day_5','46'),(553,5,'stm_day_6','3'),(554,5,'stm_day_8','41'),(555,5,'stm_day_9','28'),(556,5,'stm_day_10','4'),(557,5,'stm_day_12','1'),(558,5,'stm_day_13','22'),(559,5,'stm_day_15','105'),(560,5,'stm_day_16','2'),(561,5,'stm_day_18','2'),(562,5,'stm_day_19','22'),(563,5,'stm_day_20','36'),(564,5,'stm_day_22','42'),(565,5,'stm_day_23','20'),(566,5,'stm_day_24','9'),(567,5,'stm_day_25','35'),(568,5,'stm_day_26','6'),(569,5,'stm_day_30','11'),(570,5,'stm_day_1','4'),(571,5,'stm_month_07','265'),(572,5,'stm_day_7','15'),(573,5,'stm_day_14','28'),(574,5,'stm_day_17','41'),(575,5,'stm_day_27','4'),(576,5,'stm_day_28','1'),(577,5,'stm_month_08','192'),(578,5,'stm_day_4','125'),(579,5,'stm_day_11','3'),(580,5,'_wxr_import_user_slug','admin'),(581,2517,'inline_featured_image','0'),(582,2517,'stm_post_views','216'),(583,2517,'stm_day_28','2'),(584,2517,'stm_month_05','2'),(585,2517,'stm_day_2','1'),(586,2517,'stm_month_06','109'),(587,2517,'stm_day_8','12'),(588,2517,'stm_day_9','1'),(589,2517,'stm_day_12','11'),(590,2517,'stm_day_13','6'),(591,2517,'stm_day_15','38'),(592,2517,'stm_day_16','9'),(593,2517,'stm_day_17','10'),(594,2517,'stm_day_18','1'),(595,2517,'stm_day_19','11'),(596,2517,'stm_day_20','17'),(597,2517,'stm_day_22','17'),(598,2517,'stm_day_23','9'),(599,2517,'stm_day_24','3'),(600,2517,'stm_day_1','4'),(601,2517,'stm_month_07','52'),(602,2517,'stm_day_6','1'),(603,2517,'stm_day_7','5'),(604,2517,'stm_day_14','7'),(605,2517,'stm_day_27','1'),(606,2517,'stm_day_29','1'),(607,2517,'stm_day_3','1'),(608,2517,'stm_month_08','53'),(609,2517,'stm_day_4','38'),(610,2517,'stm_day_5','10'),(611,2517,'_wxr_import_user_slug','admin'),(612,2518,'inline_featured_image','0'),(613,2518,'stm_post_views','144'),(614,2518,'stm_day_28','2'),(615,2518,'stm_month_05','1'),(616,2518,'stm_day_2','26'),(617,2518,'stm_month_06','71'),(618,2518,'inline_featured_image','0'),(619,2518,'slide_template','default'),(620,2518,'rs_page_bg_color','#ffffff'),(621,2518,'_elementor_template_type','wp-page'),(622,2518,'_elementor_version','2.9.13'),(623,2518,'_elementor_pro_version','2.10.2'),(624,2518,'_wp_page_template','default'),(625,2518,'_elementor_data','[]'),(626,2518,'stm_day_3','12'),(627,2518,'stm_day_4','13'),(628,2518,'stm_day_5','4'),(629,2518,'stm_day_6','4'),(630,2518,'stm_day_12','1'),(631,2518,'stm_day_18','1'),(632,2518,'stm_day_20','8'),(633,2518,'stm_day_22','5'),(634,2518,'stm_day_23','2'),(635,2518,'stm_day_24','4'),(636,2518,'stm_day_25','6'),(637,2518,'stm_day_29','6'),(638,2518,'_elementor_edit_mode','builder'),(639,2518,'stm_day_30','4'),(640,2518,'stm_day_1','4'),(641,2518,'stm_month_07','54'),(642,2518,'stm_day_7','1'),(643,2518,'stm_day_8','6'),(644,2518,'stm_day_13','1'),(645,2518,'stm_day_14','24'),(646,2518,'stm_day_15','6'),(647,2518,'stm_day_17','4'),(648,2518,'stm_month_08','18'),(649,2518,'_wxr_import_user_slug','admin'),(650,8,'inline_featured_image','0'),(651,8,'stm_post_views','58'),(652,8,'stm_day_29','3'),(653,8,'stm_month_05','2'),(654,8,'stm_day_17','10'),(655,8,'stm_month_06','4'),(656,8,'stm_day_7','4'),(657,8,'stm_month_07','46'),(658,8,'stm_day_8','14'),(659,8,'stm_day_14','6'),(660,8,'stm_day_15','4'),(661,8,'stm_day_20','10'),(662,8,'stm_day_28','2'),(663,8,'stm_day_5','5'),(664,8,'stm_month_08','6'),(665,8,'_wxr_import_user_slug','admin'),(668,57,'inline_featured_image','0'),(669,57,'inline_featured_image','0'),(670,57,'slide_template','default'),(671,57,'rs_page_bg_color','#ffffff'),(672,57,'stm_post_views','12460'),(673,57,'stm_day_27','53'),(674,57,'stm_month_05','837'),(675,57,'stm_day_28','381'),(676,57,'stm_day_29','480'),(677,57,'stm_day_30','333'),(678,57,'stm_day_1','728'),(679,57,'stm_month_06','7832'),(680,57,'stm_day_2','914'),(681,57,'stm_day_3','395'),(682,57,'stm_day_4','449'),(683,57,'stm_day_5','205'),(684,57,'stm_day_6','903'),(685,57,'stm_day_8','886'),(686,57,'stm_day_9','153'),(687,57,'stm_day_10','237'),(688,57,'stm_day_11','511'),(689,57,'stm_day_12','434'),(690,57,'stm_day_15','743'),(691,57,'stm_day_16','300'),(692,57,'stm_day_17','597'),(693,57,'stm_day_18','121'),(694,57,'stm_day_19','179'),(695,57,'stm_day_20','586'),(696,57,'stm_day_22','377'),(697,57,'stm_day_23','619'),(698,57,'stm_day_24','303'),(699,57,'stm_day_25','413'),(700,57,'stm_day_26','128'),(701,57,'stm_month_07','3460'),(702,57,'stm_day_7','470'),(703,57,'stm_day_13','212'),(704,57,'stm_day_14','230'),(705,57,'stm_day_21','62'),(706,57,'stm_day_31','12'),(707,57,'stm_month_08','280'),(708,57,'_thumbnail_id','47'),(709,57,'_wxr_import_user_slug','admin'),(710,57,'_wxr_import_has_attachment_refs','1'),(713,58,'inline_featured_image','0'),(714,58,'inline_featured_image','0'),(715,58,'stm_post_views','6'),(716,58,'stm_day_8','2'),(717,58,'stm_month_07','6'),(718,58,'slide_template','default'),(719,58,'rs_page_bg_color','#ffffff'),(720,58,'stm_day_20','1'),(721,58,'stm_day_26','2'),(722,58,'stm_day_29','1'),(723,58,'_thumbnail_id','47'),(724,58,'_wxr_import_user_slug','admin'),(725,58,'_wxr_import_has_attachment_refs','1'),(728,59,'inline_featured_image','0'),(729,59,'inline_featured_image','0'),(730,59,'stm_post_views','5'),(731,59,'stm_day_7','2'),(732,59,'stm_month_07','4'),(733,59,'slide_template','default'),(734,59,'rs_page_bg_color','#ffffff'),(735,59,'stm_day_20','1'),(736,59,'stm_day_27','1'),(737,59,'stm_day_6','1'),(738,59,'stm_month_08','1'),(739,59,'_thumbnail_id','47'),(740,59,'_wxr_import_user_slug','admin'),(741,59,'_wxr_import_has_attachment_refs','1'),(744,60,'inline_featured_image','0'),(745,60,'inline_featured_image','0'),(746,60,'_oembed_f551c374233ebbf8065a235e8708d379','<iframe title=\"Video Placeholder\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(747,60,'_oembed_time_f551c374233ebbf8065a235e8708d379','1590632835'),(748,60,'stm_post_views','5'),(749,60,'stm_day_7','1'),(750,60,'stm_month_07','5'),(751,60,'stm_day_8','2'),(752,60,'stm_day_20','1'),(753,60,'stm_day_21','1'),(754,60,'_thumbnail_id','47'),(755,60,'_wxr_import_user_slug','admin'),(756,60,'_wxr_import_has_attachment_refs','1'),(2109,2642,'stm_listing_type_subnit_form','a:15:{i:0;s:8:\"category\";i:1;s:6:\"region\";i:2;s:1:\"1\";i:3;s:1:\"2\";i:4;s:1:\"3\";i:5;s:1:\"4\";i:6;s:1:\"5\";i:7;s:1:\"6\";i:8;s:1:\"7\";i:9;s:1:\"8\";i:10;s:2:\"10\";i:11;s:2:\"11\";i:12;s:2:\"12\";i:13;s:2:\"14\";i:14;s:2:\"15\";}'),(759,61,'inline_featured_image','0'),(760,61,'inline_featured_image','0'),(761,61,'stm_post_views','11'),(762,61,'stm_day_9','1'),(763,61,'stm_month_06','2'),(764,61,'stm_day_25','1'),(765,61,'stm_day_2','1'),(766,61,'stm_month_07','9'),(767,61,'stm_day_8','1'),(768,61,'stm_day_15','2'),(769,61,'stm_day_21','5'),(770,61,'_thumbnail_id','47'),(771,61,'_wxr_import_user_slug','admin'),(772,61,'_wxr_import_has_attachment_refs','1'),(775,62,'inline_featured_image','0'),(776,62,'inline_featured_image','0'),(777,62,'stm_post_views','52'),(778,62,'stm_day_6','1'),(779,62,'stm_month_06','6'),(780,62,'stm_day_25','3'),(781,62,'stm_day_26','2'),(782,62,'stm_day_3','4'),(783,62,'stm_month_07','41'),(784,62,'stm_day_7','5'),(785,62,'stm_day_8','3'),(786,62,'stm_day_13','1'),(787,62,'stm_day_14','11'),(788,62,'stm_day_15','2'),(789,62,'stm_day_17','1'),(790,62,'stm_day_20','4'),(791,62,'stm_day_21','12'),(792,62,'slide_template','default'),(793,62,'rs_page_bg_color','#ffffff'),(794,62,'stm_day_29','2'),(795,62,'stm_month_08','5'),(796,62,'stm_day_5','1'),(797,62,'_thumbnail_id','47'),(798,62,'_wxr_import_user_slug','admin'),(799,62,'_wxr_import_has_attachment_refs','1'),(800,64,'inline_featured_image','0'),(801,64,'inline_featured_image','0'),(802,64,'_wxr_import_user_slug','admin'),(803,75,'_menu_item_type','post_type'),(804,75,'_menu_item_menu_item_parent','612'),(805,75,'_menu_item_object_id','2518'),(806,75,'_menu_item_object','page'),(807,75,'_menu_item_target',''),(808,75,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(809,75,'_menu_item_xfn',''),(810,75,'_menu_item_url',''),(811,75,'_wxr_import_user_slug','admin'),(812,192,'inline_featured_image','0'),(813,192,'inline_featured_image','0'),(814,192,'slide_template','default'),(815,192,'rs_page_bg_color','#ffffff'),(816,192,'stm_post_views','174'),(817,192,'stm_day_27','9'),(818,192,'stm_month_05','23'),(819,192,'stm_day_28','6'),(820,192,'stm_day_29','13'),(821,192,'stm_day_1','8'),(822,192,'stm_month_06','138'),(823,192,'stm_day_2','5'),(824,192,'stm_day_3','11'),(825,192,'stm_day_4','10'),(826,192,'stm_day_5','14'),(827,192,'stm_day_6','7'),(828,192,'stm_day_8','13'),(829,192,'stm_day_9','2'),(830,192,'stm_day_10','1'),(831,192,'stm_day_11','4'),(832,192,'stm_day_12','10'),(833,192,'stm_day_15','20'),(834,192,'stm_day_16','1'),(835,192,'stm_day_17','1'),(836,192,'stm_day_18','3'),(837,192,'stm_day_19','16'),(838,192,'stm_day_20','9'),(839,192,'stm_day_22','2'),(840,192,'stm_day_24','2'),(841,192,'stm_day_26','2'),(842,192,'stm_day_30','4'),(843,192,'stm_month_07','13'),(844,192,'stm_day_14','2'),(845,192,'stm_day_23','1'),(846,192,'stm_month_08','2'),(847,192,'_wxr_import_user_slug','admin'),(848,200,'inline_featured_image','0'),(849,200,'inline_featured_image','0'),(850,200,'_wp_page_template','template-homepage.php'),(851,200,'slide_template','default'),(852,200,'rs_page_bg_color','#ffffff'),(853,200,'_elementor_edit_mode','builder'),(854,200,'_elementor_template_type','wp-page'),(855,200,'_elementor_version','2.9.13'),(856,200,'_elementor_pro_version','2.10.2'),(857,200,'_elementor_data','[{\"id\":\"93d4f01\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h1.jpg\",\"id\":317},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":317,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h1.jpg\"},{\"id\":391,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h2.jpg\"}],\"background_slideshow_slide_duration\":500000,\"background_slideshow_ken_burns\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":900,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]}},\"elements\":[{\"id\":\"ead37b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2c5ae85\",\"elType\":\"widget\",\"settings\":{\"title\":\"It\'s great to be home!\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"normal\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-scale-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26aab94\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find a property today\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-scale-up\",\"animation_duration\":\"fast\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2daeb3\",\"elType\":\"widget\",\"settings\":{\"_animation\":\"opal-scale-up\",\"_animation_delay\":500},\"elements\":[],\"widgetType\":\"rentext_listing_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8a288d3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":true},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"cd65419\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"e3e05d5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a90d624\",\"elType\":\"widget\",\"settings\":{\"title\":\"Top Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fa0cd86\",\"elType\":\"widget\",\"settings\":{\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\",\"listing_posts_type_list\":2642,\"listing_category_list\":\"buy\",\"ulisting_posts_carousel_nav\":\"false\",\"listing_posts_styles\":\"grid-style-2\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"},{\"id\":\"a2368d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"View All Top Properties  \",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/buildings\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_background_hover_color\":\"#FF8000\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43cbe97\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6744d9e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"120\",\"left\":\"110\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":60,\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"opal-move-right\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"646c0f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"who we are\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f503278\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experts in local and international property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d0f1b76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Over 39,000 people work for us in more than 70 countries all over the world. This breadth of global coverage, combined with specialist services and market insight, means we\'ll always have an expert who is local to you.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d095a79\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Outstanding property\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Get expert advice\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"d723630\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Group structure\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Management\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Vision & strategy\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"e971a1e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Discover Our Services  \",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"2ba2f00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":40,\"hide_mobile\":\"hidden-phone\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_img1.jpg\",\"id\":226},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b89cd0e\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":635,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"662a927\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/h1-bg1.jpg\",\"id\":2514},\"background_position\":\"top center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0db40f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"1ac4849\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/buy_a_home.svg\",\"id\":1116},\"title_text\":\"Buy a home\",\"description_text\":\"With over 1 million+ homes for sale available on the website, we can match you with a house you will want to call home.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"8850124\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find A Home \",\"align\":\"center\",\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/buildings\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4865e08\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"border_color\":\"#E8E8E8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":100},\"elements\":[{\"id\":\"192892e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/rent_a_home.svg\",\"id\":1119},\"title_text\":\"Rent a home\",\"description_text\":\"With 35+ filters and custom keyword search, we can help you easily find a home or apartment for rent that you\'ll love.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1a70e9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find A Rental\",\"align\":\"center\",\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/buildings\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"cae71eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":200},\"elements\":[{\"id\":\"7903500\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/neighborhoods.svg\",\"id\":1118},\"title_text\":\"See neighborhoods\",\"description_text\":\"With more neighborhood insights than any other real estate website, we\'ve captured the color and diversity of communities.\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"image_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"c1d1b0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/buildings\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cfb76c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]}},\"elements\":[{\"id\":\"50eb3b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"align\":\"center\"},\"elements\":[{\"id\":\"77b487a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Cities\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1444039\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find the neighborhood<br> for you\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d335d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"69943ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"1821c21\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-1.jpg\",\"id\":272},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"b8ad361\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"40e552e\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-2.jpg\",\"id\":273},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"ce3a2e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"b72929e\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-3.jpg\",\"id\":274},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"997d190\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3820cd6\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/h1_find-8.jpg\",\"id\":2518},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4b4e2ea\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"230f4f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"58c9ee6\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-4.jpg\",\"id\":275},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"19ad40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"eca7e04\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-5.jpg\",\"id\":276},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"fc24ba3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"0cbff43\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-6.jpg\",\"id\":277},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"5373585\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"ce4557b\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/h1_find-7.jpg\",\"id\":2517},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c514f6b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"81\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7012c4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":40,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_img2.jpg\",\"id\":286},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"2e239fd\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"efe0e4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"100\",\"left\":\"110\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":60,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E3E3E3\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"opal-move-left\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"b04d5d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f2f4e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9c1e2c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E3E3E3\",\"gap\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"aa2e880\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":20,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"align_mobile\":\"center\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"61ff7c3\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"Corporate communications Executive\",\"testimonial_link\":\"#\",\"_id\":\"cc9e8c4\"},{\"testimonial_content\":\"Real Estate is worth much more than I paid. Great job, I will definitely be ordering again! I would also like to say thank you to all your staff.\",\"testimonial_name\":\"Mr. Andre M\",\"testimonial_job\":\"Corporate communications Executive\",\"testimonial_link\":\"#\",\"_id\":\"fbca94a\"},{\"testimonial_content\":\"I just can\'t get enough of Real Estate. I want to get a T-Shirt with Real Estate on it so I can show it off to everyone. I can\'t say enough about Real Estate.\",\"testimonial_name\":\"Ginnie \",\"testimonial_job\":\"Corporate communications Executive\",\"testimonial_link\":\"#\",\"_id\":\"3cfe9cd\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"testimonial_alignment_mobile\":\"center\",\"enable_carousel\":\"yes\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"},{\"id\":\"a3db7e4\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"position\":\"center\",\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\",\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"bdf0a27\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Contact Our Agents \",\"align\":\"right\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/author\\/laura-antiochus\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_orientation_v\":\"end\",\"_offset_y_end\":{\"unit\":\"px\",\"size\":-20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ca765a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"18aaf89\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0,\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"35d6024\",\"elType\":\"widget\",\"settings\":{\"title\":\"our team\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"576422f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291c309\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"acf20b8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"0c6cafa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0,\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"2f25091\",\"elType\":\"widget\",\"settings\":{\"title\":\"our Blog\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dd1f2bf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips and advice\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51b9ed4\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":3,\"column_tablet\":\"2\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-post-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(858,200,'stm_post_views','1400'),(859,200,'stm_day_28','46'),(860,200,'stm_month_05','66'),(861,200,'stm_day_29','38'),(862,200,'stm_day_30','26'),(863,200,'stm_day_1','59'),(864,200,'stm_month_06','695'),(865,200,'stm_day_2','82'),(866,200,'stm_day_3','53'),(867,200,'stm_day_4','39'),(868,200,'stm_day_5','24'),(869,200,'stm_day_6','51'),(870,200,'stm_day_8','108'),(871,200,'stm_day_9','13'),(872,200,'stm_day_10','35'),(873,200,'stm_day_11','45'),(874,200,'stm_day_12','13'),(875,200,'stm_day_13','76'),(876,200,'stm_day_15','98'),(877,200,'stm_day_16','49'),(878,200,'stm_day_17','109'),(879,200,'stm_day_18','11'),(880,200,'stm_day_19','15'),(881,200,'stm_day_20','96'),(882,200,'stm_day_22','30'),(883,200,'stm_day_23','92'),(884,200,'stm_day_24','29'),(885,200,'stm_day_25','15'),(886,200,'stm_day_26','8'),(887,200,'stm_month_07','601'),(888,200,'stm_day_7','39'),(889,200,'stm_day_14','52'),(890,200,'_elementor_controls_usage','a:17:{s:7:\"heading\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:14;s:5:\"align\";i:5;s:11:\"header_size\";i:6;s:12:\"align_tablet\";i:2;s:12:\"align_mobile\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:14;s:20:\"typography_font_size\";i:14;s:22:\"typography_font_weight\";i:1;s:27:\"typography_font_size_mobile\";i:7;s:25:\"typography_text_transform\";i:6;s:22:\"typography_line_height\";i:12;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:14;s:8:\"_padding\";i:7;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:4;s:16:\"_animation_delay\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:6;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:6;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:21:\"_element_custom_width\";i:2;}}}}s:22:\"rentext_listing_search\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:12:\"_inline_size\";i:20;s:21:\"space_between_widgets\";i:20;s:12:\"align_tablet\";i:1;s:19:\"_inline_size_tablet\";i:13;s:12:\"align_mobile\";i:13;s:5:\"align\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:2;s:16:\"background_image\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;}s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:4;s:20:\"border_radius_mobile\";i:1;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;s:19:\"border_width_mobile\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:7:{s:7:\"padding\";i:5;s:14:\"padding_tablet\";i:5;s:7:\"z_index\";i:2;s:14:\"padding_mobile\";i:5;s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:8;s:13:\"margin_mobile\";i:8;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:7;s:18:\"animation_duration\";i:7;s:15:\"animation_delay\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:9:{s:15:\"stretch_section\";i:8;s:3:\"gap\";i:10;s:6:\"height\";i:1;s:13:\"custom_height\";i:3;s:20:\"custom_height_tablet\";i:1;s:13:\"content_width\";i:2;s:20:\"custom_height_mobile\";i:3;s:15:\"column_position\";i:2;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:8;s:16:\"background_image\";i:2;s:28:\"background_slideshow_gallery\";i:1;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:16:\"background_color\";i:6;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:22:\"motion_fx_scale_effect\";i:1;s:9:\"animation\";i:2;s:18:\"animation_duration\";i:2;}s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:8;s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:3;s:14:\"padding_mobile\";i:5;s:14:\"padding_tablet\";i:3;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:6:{s:22:\"listing_posts_per_page\";i:1;s:26:\"listing_posts_item_columns\";i:1;s:23:\"listing_posts_type_list\";i:1;s:21:\"listing_category_list\";i:1;s:27:\"ulisting_posts_carousel_nav\";i:1;s:20:\"listing_posts_styles\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:1:{s:18:\"animation_duration\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:9:{s:11:\"button_type\";i:3;s:4:\"text\";i:6;s:4:\"size\";i:3;s:4:\"link\";i:6;s:13:\"selected_icon\";i:6;s:10:\"icon_align\";i:6;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:2;s:5:\"align\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:13:\"border_radius\";i:3;s:29:\"button_background_hover_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:2;s:14:\"_margin_mobile\";i:2;}s:17:\"_section_position\";a:6:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:21:\"_offset_orientation_v\";i:1;s:13:\"_offset_y_end\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:2:{s:10:\"text_color\";i:2;s:26:\"icon_typography_typography\";i:1;}s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:4:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;s:21:\"_element_width_mobile\";i:2;s:28:\"_element_custom_width_mobile\";i:2;}s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:2;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:2:{s:5:\"space\";i:1;s:12:\"space_mobile\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:5:\"style\";a:2:{s:21:\"section_style_content\";a:6:{s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:33:\"description_typography_typography\";i:3;s:18:\"title_bottom_space\";i:3;s:28:\"title_typography_line_height\";i:3;}s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:3;s:10:\"image_size\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:3;}s:17:\"_section_position\";a:2:{s:21:\"_element_width_mobile\";i:3;s:28:\"_element_custom_width_mobile\";i:3;}}}}s:13:\"rentex-region\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_region\";a:4:{s:12:\"listing_type\";i:8;s:4:\"term\";i:8;s:5:\"image\";i:8;s:11:\"show_region\";i:8;}}s:5:\"style\";a:1:{s:12:\"rigion_image\";a:1:{s:14:\"image_bg_hover\";i:8;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:21:\"_element_width_mobile\";i:8;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:3:\"gap\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:13:\"selected_icon\";i:1;s:5:\"align\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:3:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;s:11:\"size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:22:\"testimonial_image_size\";i:1;s:5:\"style\";i:1;s:28:\"testimonial_alignment_mobile\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_mobile\";i:1;}s:14:\"_section_style\";a:1:{s:15:\"_padding_mobile\";i:1;}}s:5:\"style\";a:1:{s:31:\"section_style_testimonial_style\";a:1:{s:15:\"content_padding\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:13:\"ending_number\";i:1;s:5:\"title\";i:1;}}s:5:\"style\";a:3:{s:14:\"section_number\";a:4:{s:12:\"number_color\";i:1;s:28:\"typography_number_typography\";i:1;s:27:\"typography_number_font_size\";i:1;s:29:\"typography_number_line_height\";i:1;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:1;s:27:\"typography_title_typography\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_line_height\";i:1;s:31:\"typography_title_text_transform\";i:1;s:28:\"typography_title_font_weight\";i:1;}s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:6:{s:14:\"_element_width\";i:1;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:16:\"_offset_y_mobile\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:12:\"rentex_users\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:24:\"section_carousel_options\";a:2:{s:15:\"enable_carousel\";i:1;s:13:\"check_visible\";i:1;}s:19:\"man_offices_content\";a:1:{s:14:\"columns_tablet\";i:1;}}}}s:16:\"rentex-post-grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"section_query\";a:2:{s:14:\"posts_per_page\";i:1;s:13:\"column_tablet\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_prev_label\";i:1;s:21:\"pagination_next_label\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}}}}'),(891,200,'stm_day_21','36'),(892,200,'stm_day_27','9'),(893,200,'stm_day_31','4'),(894,200,'stm_month_08','38'),(895,200,'_wxr_import_user_slug','admin'),(896,202,'inline_featured_image','0'),(897,202,'_elementor_edit_mode','builder'),(898,202,'_elementor_template_type','kit'),(899,202,'inline_featured_image','0'),(900,202,'_elementor_version','2.9.8'),(901,202,'_elementor_pro_version','2.9.1'),(902,202,'_elementor_data','null'),(903,202,'_wxr_import_user_slug','admin'),(904,234,'inline_featured_image','0'),(905,234,'_elementor_edit_mode','builder'),(906,234,'_elementor_template_type','page'),(907,234,'inline_featured_image','0'),(908,234,'_elementor_version','2.9.14'),(909,234,'_elementor_pro_version','2.10.3'),(910,234,'_wp_page_template','default'),(911,234,'_elementor_data','[{\"id\":\"678ce2f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E7E7E7\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"d479891\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"e756b93\",\"elType\":\"widget\",\"settings\":{\"brands\":[{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-1.png\",\"id\":245},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"eec1693\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-2.png\",\"id\":246},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"4c85d80\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-3.png\",\"id\":247},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"7765c80\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-4.png\",\"id\":248},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"d03519d\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-5.png\",\"id\":249},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"960f666\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-6.png\",\"id\":250},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"dcf6e33\"}],\"column\":\"6\",\"image_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"navigation\":\"none\",\"enable_carousel\":\"yes\",\"column_tablet\":\"4\",\"column_mobile\":\"2\"},\"elements\":[],\"widgetType\":\"rentex-brand\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d47195\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E7E7E7\",\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"d2c6180\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":24.035000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"90\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"_inline_size_tablet\":30},\"elements\":[{\"id\":\"9f5f8e1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-consultant\",\"library\":\"rentex-icon\"},\"title_text\":\"free consultation\",\"description_text\":\"Schedule a free\\nconsultation with our\\nspecialist.\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"primary_color\":\"#B1DC6F\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#B1DC6F\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a6cd735\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule Now \",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"button_text_color\":\"#000000\",\"background_color\":\"#E1E1D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"35\",\"bottom\":\"18\",\"left\":\"35\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"text_padding_tablet\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"16\",\"bottom\":\"12\",\"left\":\"16\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"6a10d4e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":33.63000000000000255795384873636066913604736328125,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"_inline_size_tablet\":33},\"elements\":[{\"id\":\"e13f89e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-help_desk\",\"library\":\"rentex-icon\"},\"title_text\":\"help desk\",\"description_text\":\"Do you have questions\\nor want more infomation?\\nCall now.\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#F5A44A\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#F5A44A\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"34\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":225,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e7517b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+(844) 180-355-268\",\"text_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"0de54c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.66666666670000296335274470038712024688720703125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":35,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fdde635\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up for newsletter\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6547c8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"and get latest news & update\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2b9c6b7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\",\"placeholder\":\"your email\",\"width\":\"66\",\"_id\":\"ac22160\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"50\",\"width_mobile\":\"60\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"input_size\":\"md\",\"mark_required\":\"yes\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_width\":\"25\",\"button_width_mobile\":\"20\",\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"label_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"bold\",\"field_border_color\":\"#E5E5E5\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"button_background_color\":\"#F5A44A\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#000000\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"html_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"ddc9482\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow us\",\"text_color\":\"#222222\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aafd7f9\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"e0e3e32\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#6D3DD3\",\"item_icon_secondary_color\":\"\",\"_id\":\"f07d3d6\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"3a482ce\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"f246385\",\"link\":{\"url\":\"#\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_animation\":\"push\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9dd3468\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F5A44A\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"fef9ec1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"75191a6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2020 <a href=\\\"https:\\/\\/rentex.wpopal.com\\/\\\">Rentex<\\/a>. All Rights Reserved.\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"831beb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4c0398e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Carefully crafted by <span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"#\\\">OpalThemes<\\/a><\\/span><\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(912,234,'stm_post_views','34'),(913,234,'stm_day_28','11'),(914,234,'stm_month_05','11'),(915,234,'stm_day_3','4'),(916,234,'stm_month_06','13'),(917,234,'stm_day_4','2'),(918,234,'stm_day_8','2'),(919,234,'stm_day_12','1'),(920,234,'stm_day_16','1'),(921,234,'stm_day_23','1'),(922,234,'stm_day_24','2'),(923,234,'stm_day_26','1'),(924,234,'stm_day_6','4'),(925,234,'stm_month_07','10'),(926,234,'stm_day_14','2'),(927,234,'stm_day_17','1'),(928,234,'stm_day_29','2'),(929,234,'_elementor_controls_usage','a:9:{s:12:\"rentex-brand\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_brands\";a:4:{s:6:\"brands\";i:1;s:6:\"column\";i:1;s:13:\"column_tablet\";i:1;s:13:\"column_mobile\";i:1;}s:24:\"section_carousel_options\";a:2:{s:10:\"navigation\";i:1;s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:1:{s:19:\"style_brand_wrapper\";a:1:{s:13:\"image_opacity\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:6;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:15:\"stretch_section\";i:3;s:3:\"gap\";i:3;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:3:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;}s:18:\"section_background\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:3;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:2;s:10:\"title_text\";i:2;s:16:\"description_text\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:2;s:16:\"icon_size_mobile\";i:2;}s:21:\"section_style_content\";a:12:{s:10:\"text_align\";i:2;s:18:\"title_bottom_space\";i:2;s:11:\"title_color\";i:2;s:27:\"title_typography_typography\";i:2;s:26:\"title_typography_font_size\";i:2;s:28:\"title_typography_font_weight\";i:2;s:31:\"title_typography_text_transform\";i:2;s:17:\"description_color\";i:2;s:33:\"description_typography_typography\";i:2;s:32:\"description_typography_font_size\";i:2;s:34:\"description_typography_font_weight\";i:2;s:34:\"description_typography_line_height\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:13:\"selected_icon\";i:1;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:19:\"text_padding_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:12:\"align_mobile\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:4:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_width\";i:1;s:19:\"button_width_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:4:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:13:\"label_spacing\";i:1;s:12:\"html_spacing\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:4:{s:23:\"button_background_color\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:19:\"button_text_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:1:{s:16:\"social_icon_list\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:2:{s:9:\"icon_size\";i:1;s:13:\"border_radius\";i:1;}s:20:\"section_social_hover\";a:1:{s:15:\"hover_animation\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}}'),(930,234,'_wxr_import_user_slug','admin'),(931,326,'inline_featured_image','0'),(932,326,'_elementor_edit_mode','builder'),(933,326,'_elementor_template_type','page'),(934,326,'inline_featured_image','0'),(935,326,'_elementor_version','2.9.13'),(936,326,'_elementor_pro_version','2.10.2'),(937,326,'_wp_page_template','default'),(938,326,'_elementor_data','[{\"id\":\"38578c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#FFFFFF\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d1cef51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/bg-newsletter.jpg\",\"id\":358},\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_position\":\"bottom right\",\"background_size_mobile\":\"cover\"},\"elements\":[{\"id\":\"08ba364\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"21ffef6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"75\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"3706e5d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"newsletter\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db867dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up for newsletter and get latest\\nnews and update\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\",\"title_color\":\"#FFFFFF\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07feb83\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\",\"placeholder\":\"your email\",\"width\":\"75\",\"_id\":\"ac22160\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"60\",\"width_mobile\":\"100\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"input_size\":\"md\",\"mark_required\":\"yes\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_width\":\"25\",\"button_width_mobile\":\"50\",\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"bold\",\"field_border_color\":\"#E5E5E5\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_hover_color\":\"#F5A44A\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true},{\"id\":\"af0ef10\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"70658ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/image-footer.png\",\"id\":361},\"image_size\":\"full\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_v\":\"end\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d61cd6b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"50\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#E3E3E3\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"73b31ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9dca91c\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"681b3ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>If you have any question, please<br \\/>contact us at <span style=\\\"color: #000000;\\\">support@example.com<\\/span><\\/p>\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5d7af8c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"stacked\",\"title_text\":\"+(844) 180-355-268\",\"description_text\":\"\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#F5A44A\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"bold\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"c4a9064\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":25,\"_inline_size_tablet\":50,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2180627\",\"elType\":\"widget\",\"settings\":{\"title\":\"location\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54c9341\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Box 565, Charlestown, Nevis, West\\nIndies, Caribbean\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b76979e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">Monday - Friday:<\\/span> 8am - 4pm<br \\/><span style=\\\"color: #000000;\\\">Saturday:<\\/span> 9am - 5pm<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"2cd7487\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":16,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"57f3b6d\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d196536\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Pricing Plans\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Our Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\" About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"},{\"text\":\"Contact Us \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8c81613\"},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f83533a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#6A6A6A\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"abbea0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":16,\"_inline_size_tablet\":33,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"722b979\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6613742\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Chicago\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Los Angeles\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Miami\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"},{\"text\":\"New York \",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8c81613\"},{\"text\":\"Las Vegas\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f83533a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#6A6A6A\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"fc0a602\",\"elType\":\"column\",\"settings\":{\"_column_size\":20,\"_inline_size\":16.47500000000000142108547152020037174224853515625,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"d18e8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Searches\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d5a361\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apartment\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"House\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Villa\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"},{\"text\":\"Offices\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8c81613\"},{\"text\":\"Residence\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"f83533a\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#6A6A6A\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73854b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F5A44A\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"f5e45b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"90720c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2020 <a href=\\\"#\\\">Rentex<\\/a>. All Rights Reserved.\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"710b342\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3bcd89b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Carefully crafted by <span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"#\\\">OpalThemes<\\/a><\\/span><\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(939,326,'stm_post_views','831'),(940,326,'stm_day_27','10'),(941,326,'stm_month_05','127'),(942,326,'stm_day_28','31'),(943,326,'stm_day_29','90'),(944,326,'stm_day_1','165'),(945,326,'stm_month_06','649'),(946,326,'stm_day_2','44'),(947,326,'stm_day_3','23'),(948,326,'stm_day_4','29'),(949,326,'stm_day_5','20'),(950,326,'stm_day_6','22'),(951,326,'stm_day_8','17'),(952,326,'stm_day_9','2'),(953,326,'stm_day_10','60'),(954,326,'stm_day_11','106'),(955,326,'stm_day_12','99'),(956,326,'stm_day_13','4'),(957,326,'stm_day_15','28'),(958,326,'stm_day_16','5'),(959,326,'stm_day_17','7'),(960,326,'stm_day_18','9'),(961,326,'stm_day_20','2'),(962,326,'stm_day_22','10'),(963,326,'stm_day_23','11'),(964,326,'stm_day_24','11'),(965,326,'stm_day_25','8'),(966,326,'stm_day_26','2'),(967,326,'stm_day_30','7'),(968,326,'stm_month_07','35'),(969,326,'stm_day_7','2'),(970,326,'_elementor_controls_usage','a:8:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{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:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:12:\"align_mobile\";i:5;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:12:\"align_mobile\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:6;s:22:\"typography_font_weight\";i:1;s:11:\"title_color\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_mobile\";i:1;s:25:\"typography_text_transform\";i:5;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:14:\"_margin_mobile\";i:6;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:4:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_width\";i:1;s:19:\"button_width_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:1:{s:13:\"label_spacing\";i:1;}s:19:\"section_field_style\";a:7:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:3:{s:23:\"button_background_color\";i:1;s:20:\"button_border_radius\";i:1;s:18:\"button_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:10;s:21:\"space_between_widgets\";i:10;s:19:\"_inline_size_tablet\";i:7;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:3;s:13:\"margin_tablet\";i:2;s:13:\"margin_mobile\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:19:\"background_position\";i:1;s:22:\"background_size_mobile\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_radius\";i:1;s:20:\"border_radius_mobile\";i:1;s:20:\"border_radius_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;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:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:4:{s:21:\"_element_width_mobile\";i:1;s:28:\"_element_custom_width_mobile\";i:1;s:9:\"_position\";i:1;s:21:\"_offset_orientation_v\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:4;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:17:\"background_repeat\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:26:\"background_overlay_color_b\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"z_index\";i:2;s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:1;s:7:\"padding\";i:2;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:5:{s:13:\"selected_icon\";i:1;s:4:\"view\";i:1;s:10:\"title_text\";i:1;s:16:\"description_text\";i:1;s:8:\"position\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:4:{s:10:\"icon_space\";i:1;s:9:\"icon_size\";i:1;s:17:\"icon_space_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;}s:21:\"section_style_content\";a:6:{s:18:\"title_bottom_space\";i:1;s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:28:\"title_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;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:2:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:3;s:17:\"icon_align_mobile\";i:3;}s:18:\"section_text_style\";a:2:{s:10:\"text_color\";i:3;s:16:\"text_color_hover\";i:3;}}}}}'),(971,326,'stm_day_14','5'),(972,326,'stm_day_31','2'),(973,326,'stm_month_08','20'),(974,326,'_wxr_import_user_slug','admin'),(975,343,'inline_featured_image','0'),(976,343,'inline_featured_image','0'),(977,343,'_wp_page_template','template-homepage.php'),(978,343,'slide_template','default'),(979,343,'rs_page_bg_color','#ffffff'),(980,343,'_elementor_edit_mode','builder'),(981,343,'_elementor_template_type','wp-page'),(982,343,'_elementor_version','2.9.13'),(983,343,'_elementor_pro_version','2.10.2'),(984,343,'_elementor_data','[{\"id\":\"d84beb8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#292929\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ce8c75\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fbb63b5\",\"elType\":\"widget\",\"settings\":{\"listing_search_style\":\"style_2\",\"listing_search_color\":\"dark\"},\"elements\":[],\"widgetType\":\"rentext_listing_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b654ed4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":540,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_slideshow_gallery\":[{\"id\":391,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h2.jpg\"},{\"id\":442,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h3_bg-1.jpg\"}],\"background_slideshow_slide_duration\":90000000,\"background_slideshow_ken_burns\":\"yes\",\"background_slideshow_ken_burns_zoom_direction\":\"out\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c8b035c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"d427024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover a place\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"normal\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1884c\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"\",\"highlighted_text\":\"Find a property today\",\"rotating_text\":\"you\'ll love to live\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"words_color\":\"#FFFFFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_weight\":\"bold\",\"animation_type\":\"blinds\",\"marker\":\"strikethrough\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"words_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"opal-move-up\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"f6776ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you buy your dream house!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":400,\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1597c4a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our services\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":600,\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FF9933\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2e36225\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"760ed40\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"2cb0101\",\"elType\":\"widget\",\"settings\":{\"title\":\"new projects\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a3b476a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Listings\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8c2e864\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"latest\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"check_visible\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9df4d29\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8dace46\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"ebc2e9f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h2_img1.jpg\",\"id\":349},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"c500c14\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"90e2b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"012046a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our long-standing<br> experience\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ccd0f6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a630fe4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6418a26\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":440,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-160\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"08a032c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"45\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_mobile\":100,\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c0f9a40\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have over\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e87805\",\"elType\":\"widget\",\"settings\":{\"title\":\"75\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bd90934\",\"elType\":\"widget\",\"settings\":{\"title\":\"years\'\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b51743\",\"elType\":\"widget\",\"settings\":{\"title\":\"Expertise\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"52e4ca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h2_bg-video.jpg\",\"id\":383},\"background_position\":\"center center\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"3cb0760\",\"elType\":\"widget\",\"settings\":{\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"icon_font\":\"fa fa-play\",\"video_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"video_color\":\"#FFFFFF\",\"border_video_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"video_hover_color\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"rentex-video-popup\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"51bb7c6\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h2_bg-1.jpg\",\"id\":403},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2ae127d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"space-between\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":34,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8fc1f01\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"All in One Place \",\"description_text\":\"Your One-Stop Shop for Finding Your Dream Home\",\"primary_color\":\"#B1DC6F\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#B1DC6F\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-search-property\",\"library\":\"rentex-icon\"},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"0d97123\",\"elType\":\"widget\",\"settings\":{\"text\":\"Search For Home\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#E1E1D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FF9933\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8319b2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"space-between\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":33.3299999999999982946974341757595539093017578125,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99ee7fc\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Connect to an Agent \",\"description_text\":\"Schedule a Free, No-Obligation Appointment\",\"primary_color\":\"#F5A44A\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#F5A44A\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-agent\",\"library\":\"rentex-icon\"},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"83d70f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find an Agent \",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#E1E1D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FF9933\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1d6ea3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"space-between\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":32,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a25311\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Get a Home Valuation \",\"description_text\":\"Understand the Value of Your Property\",\"primary_color\":\"#6F7FDC\",\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_color\":\"#6F7FDC\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"description_typography_font_weight\":\"500\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-property\",\"library\":\"rentex-icon\"},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e8d2355\",\"elType\":\"widget\",\"settings\":{\"text\":\"Submit Info\",\"size\":\"md\",\"button_text_color\":\"#000000\",\"background_color\":\"#E1E1D8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FF9933\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"232ea1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"07255f6\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d5d716\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcd27d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bbd3667\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ff9d5b3\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8123a39\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h2_bg-2.jpg\",\"id\":421},\"background_position\":\"bottom left\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"c114941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ecc10c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a94a7d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our results speak for<br> themselves\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aa37913\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\"},\"elements\":[{\"id\":\"5ad1619\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8089096\",\"elType\":\"widget\",\"settings\":{\"ending_number\":18287,\"suffix\":\"+\",\"title\":\"Properties for Sale\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_title_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_text_transform\":\"uppercase\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_line_height_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_suffix_typography\":\"custom\",\"typography_number_suffix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_number_suffix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"d10a0bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"81af201\",\"elType\":\"widget\",\"settings\":{\"ending_number\":13586,\"suffix\":\"+\",\"title\":\"Properties for Rent\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_title_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_text_transform\":\"uppercase\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_line_height_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_suffix_typography\":\"custom\",\"typography_number_suffix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_number_suffix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5ecd5ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_mobile\":50,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"abd969f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1500,\"suffix\":\"+\",\"title\":\"New Projects a month\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_title_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_text_transform\":\"uppercase\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_line_height_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_suffix_typography\":\"custom\",\"typography_number_suffix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_number_suffix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6b17e17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_mobile\":50,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[{\"id\":\"5873efe\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1120,\"suffix\":\"+\",\"title\":\" agents all over the world\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_title_font_size_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_font_weight\":\"700\",\"typography_title_text_transform\":\"uppercase\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_line_height_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_suffix_typography\":\"custom\",\"typography_number_suffix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"typography_number_suffix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6767d64\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"648e02e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"5cc092b\",\"elType\":\"widget\",\"settings\":{\"title\":\"our Blog\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a34286\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips and advice\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b7219fc\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":3,\"column_tablet\":\"2\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-post-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(985,343,'_oembed_f551c374233ebbf8065a235e8708d379','<iframe title=\"Video Placeholder\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(986,343,'_oembed_time_f551c374233ebbf8065a235e8708d379','1590459756'),(987,343,'stm_post_views','264'),(988,343,'stm_day_27','7'),(989,343,'stm_month_05','10'),(990,343,'stm_day_28','4'),(991,343,'stm_day_1','10'),(992,343,'stm_month_06','82'),(993,343,'stm_day_2','47'),(994,343,'stm_day_4','3'),(995,343,'stm_day_5','2'),(996,343,'stm_day_6','30'),(997,343,'stm_day_8','13'),(998,343,'stm_day_9','1'),(999,343,'stm_day_10','2'),(1000,343,'stm_day_11','2'),(1001,343,'stm_day_12','6'),(1002,343,'stm_day_15','2'),(1003,343,'stm_day_16','3'),(1004,343,'stm_day_17','17'),(1005,343,'stm_day_18','2'),(1006,343,'stm_day_19','10'),(1007,343,'stm_day_20','12'),(1008,343,'stm_day_22','6'),(1009,343,'stm_day_23','29'),(1010,343,'stm_day_24','2'),(1011,343,'stm_day_30','2'),(1012,343,'stm_month_07','170'),(1013,343,'stm_day_3','1'),(1014,343,'stm_day_7','5'),(1015,343,'stm_day_13','6'),(1016,343,'stm_day_14','20'),(1017,343,'stm_day_21','17'),(1018,343,'_elementor_controls_usage','a:13:{s:22:\"rentext_listing_search\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:2:{s:20:\"listing_search_style\";i:1;s:20:\"listing_search_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:7:{s:12:\"_inline_size\";i:18;s:21:\"space_between_widgets\";i:18;s:5:\"align\";i:5;s:19:\"_inline_size_tablet\";i:6;s:19:\"_inline_size_mobile\";i:6;s:16:\"content_position\";i:4;s:12:\"align_mobile\";i:4;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:2:{s:11:\"hide_mobile\";i:2;s:11:\"hide_tablet\";i:1;}s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:10;s:14:\"padding_tablet\";i:1;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:8;s:13:\"margin_mobile\";i:4;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_radius\";i:2;s:20:\"border_radius_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:8;s:3:\"gap\";i:10;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:13:\"content_width\";i:1;s:15:\"column_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:11:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:7;s:28:\"background_slideshow_gallery\";i:1;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:45:\"background_slideshow_ken_burns_zoom_direction\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:22:\"background_size_mobile\";i:1;s:26:\"background_bg_width_mobile\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:9;s:14:\"padding_tablet\";i:6;s:6:\"margin\";i:7;s:13:\"margin_tablet\";i:6;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:15;s:5:\"align\";i:9;s:11:\"header_size\";i:9;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:9;s:21:\"typography_typography\";i:15;s:20:\"typography_font_size\";i:15;s:27:\"typography_font_size_mobile\";i:6;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:8;s:22:\"typography_line_height\";i:11;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:12;s:14:\"_margin_mobile\";i:2;s:8:\"_padding\";i:6;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:6;s:17:\"_background_color\";i:6;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:5;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:6;s:21:\"_element_custom_width\";i:3;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:6:{s:14:\"headline_style\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:13:\"rotating_text\";i:1;s:14:\"animation_type\";i:1;s:6:\"marker\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_text\";a:10:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_weight\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:28:\"title_typography_line_height\";i:1;s:28:\"words_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_mobile\";i:1;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:3;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:4;s:5:\"align\";i:1;s:13:\"selected_icon\";i:4;s:10:\"icon_align\";i:4;s:4:\"size\";i:3;s:12:\"align_mobile\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:17:\"button_text_color\";i:4;s:16:\"background_color\";i:4;s:13:\"border_radius\";i:4;s:12:\"text_padding\";i:1;s:11:\"hover_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:9:{s:23:\"listing_posts_type_list\";i:2;s:21:\"listing_posts_sort_by\";i:2;s:18:\"listing_posts_view\";i:2;s:22:\"listing_posts_per_page\";i:1;s:26:\"listing_posts_item_columns\";i:2;s:27:\"ulisting_posts_carousel_nav\";i:2;s:28:\"ulisting_posts_carousel_dots\";i:2;s:13:\"check_visible\";i:1;s:20:\"listing_posts_styles\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;}}}}s:18:\"rentex-video-popup\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_videos\";a:2:{s:10:\"video_link\";i:1;s:9:\"icon_font\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_video_style\";a:4:{s:10:\"video_size\";i:1;s:11:\"video_color\";i:1;s:18:\"border_video_width\";i:1;s:17:\"video_hover_color\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:3;}s:21:\"section_style_content\";a:13:{s:10:\"text_align\";i:3;s:18:\"title_bottom_space\";i:3;s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:31:\"title_typography_text_transform\";i:3;s:17:\"description_color\";i:3;s:33:\"description_typography_typography\";i:3;s:32:\"description_typography_font_size\";i:3;s:34:\"description_typography_font_weight\";i:3;s:34:\"description_typography_line_height\";i:3;s:17:\"text_align_mobile\";i:3;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:3;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:3:{s:13:\"ending_number\";i:4;s:6:\"suffix\";i:4;s:5:\"title\";i:4;}}s:5:\"style\";a:4:{s:14:\"section_number\";a:4:{s:28:\"typography_number_typography\";i:4;s:27:\"typography_number_font_size\";i:4;s:34:\"typography_number_font_size_tablet\";i:4;s:22:\"spacing_number_wrapper\";i:4;}s:13:\"section_title\";a:8:{s:11:\"title_color\";i:4;s:27:\"typography_title_typography\";i:4;s:26:\"typography_title_font_size\";i:4;s:33:\"typography_title_font_size_tablet\";i:4;s:28:\"typography_title_font_weight\";i:4;s:31:\"typography_title_text_transform\";i:4;s:28:\"typography_title_line_height\";i:4;s:35:\"typography_title_line_height_tablet\";i:4;}s:21:\"section_number_prefix\";a:1:{s:34:\"typography_number_prefix_font_size\";i:4;}s:21:\"section_number_suffix\";a:3:{s:35:\"typography_number_suffix_typography\";i:4;s:34:\"typography_number_suffix_font_size\";i:4;s:41:\"typography_number_suffix_font_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:1:{s:21:\"_element_width_mobile\";i:2;}}}}s:16:\"rentex-post-grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:13:\"section_query\";a:2:{s:14:\"posts_per_page\";i:1;s:13:\"column_tablet\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_prev_label\";i:1;s:21:\"pagination_next_label\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}}}}'),(1019,343,'stm_day_29','3'),(1020,343,'stm_month_08','2'),(1021,343,'_wxr_import_user_slug','admin'),(1022,395,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(1023,395,'_mail',''),(1024,395,'_mail_2',''),(1025,395,'_messages','a:8:{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.\";}'),(1026,395,'_additional_settings',''),(1027,395,'_locale','en_US'),(1028,395,'_wxr_import_user_slug','admin'),(1029,398,'inline_featured_image','0'),(1030,398,'inline_featured_image','0'),(1031,398,'_wp_page_template','template-homepage.php'),(1032,398,'slide_template','default'),(1033,398,'rs_page_bg_color','#ffffff'),(1034,398,'_elementor_edit_mode','builder'),(1035,398,'_elementor_template_type','wp-page'),(1036,398,'_elementor_version','2.9.13'),(1037,398,'_elementor_pro_version','2.10.2'),(1038,398,'_elementor_data','[{\"id\":\"82a6068\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":397,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h3.jpg\"},{\"id\":852,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/parallax-h8.jpg\"}],\"background_slideshow_slide_duration\":90000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_slideshow_ken_burns_zoom_direction\":\"out\",\"background_slideshow_transition_duration\":100},\"elements\":[{\"id\":\"70515e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"efe4b23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Luxury\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"135b7f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Villas\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23b48db\",\"elType\":\"widget\",\"settings\":{\"editor\":\"948 Simons Hollow road\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8ba32f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"81925e8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#292929\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"7d79bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"e6428a3\",\"elType\":\"widget\",\"settings\":{\"listing_search_style\":\"style_2\",\"listing_search_color\":\"dark\"},\"elements\":[],\"widgetType\":\"rentext_listing_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"741a5c4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"125\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"105\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d1fdc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fed8b43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rentex services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da48123\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With unrivaled reach, our divisions and affiliates offer industry-leading knowledge and expertise.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":510,\"sizes\":[]},\"text_color\":\"#6A6A6A\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"853f421\",\"elType\":\"widget\",\"settings\":{\"service_items\":[{\"title\":\"Buying or selling\",\"_id\":\"5a7f3dd\",\"label\":\"SERVICE\",\"description\":\"When it comes to buying and selling property, we advise across all residential, rural and commercial markets. Our services are designed to help <b style=\\\"color:#000;\\\">maximise the value<\\/b> of your asset, and to help you every step of the way of the transaction process.\",\"button_text\":\"Learn More\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/services-1.jpg\",\"id\":459}},{\"title\":\"Commercial\",\"label\":\"SERVICE\",\"description\":\"At Douglas Elliman Commercial, we strive to help you achieve your goals. By understanding your business and financial objectives, we will find the perfect property to suit your...\",\"button_text\":\"Learn More\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/services-2.jpg\",\"id\":476},\"_id\":\"c4c2540\"},{\"title\":\"Development Marketing\",\"label\":\"SERVICE\",\"description\":\"Drawing upon decades of experience and market-specific knowledge, we collaborate with leading developers, world-renowned architects and interior designers to create the most coveted...\",\"button_text\":\"Learn More\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/services-3.jpg\",\"id\":477},\"_id\":\"a297c14\"},{\"title\":\"Sports & Entertainment\",\"label\":\"SERVICE\",\"description\":\"We work with clients in the sports and entertainment industries and ultra-high net-worth parties to provide elite real estate brokerage services.\",\"button_text\":\"Learn More\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/services-4.jpg\",\"id\":478},\"_id\":\"d5bf9b6\"}],\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex-services\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9888a27\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"fe24d6d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"34fd654\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore properties\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"783a824\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With over 1 million+ homes for sale available on the website, we can match you with a house you will want to call home.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":580,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3cb697f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"animation\":\"opal-move-up\"},\"elements\":[{\"id\":\"65de8b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4be8caf\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-1.jpg\",\"id\":1888},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"},{\"id\":\"e25881b\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-2.jpg\",\"id\":1889},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"055a452\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"align_mobile\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b351bde\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"image_bg_normal\":\"rgba(0, 0, 0, 0)\",\"listing_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"rentex-region\"},{\"id\":\"bf3f2de\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-3.jpg\",\"id\":1890},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"a79163a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b3cf06d\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-4.jpg\",\"id\":1891},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"0c270a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"2ef3569\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"},{\"id\":\"3cff789\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-7..jpg\",\"id\":2373},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"image_bg_normal\":\"rgba(0, 0, 0, 0)\",\"listing_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"00c7d3c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e9adb83\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"2def73c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Listings\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"acd094a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Take a deep dive and browse new projects everyday.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":510,\"sizes\":[]},\"text_color\":\"#6A6A6A\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0132e4e\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"latest\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"},{\"id\":\"db7635e\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"View More\",\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4057aad\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":630,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h3_bg-1.jpg\",\"id\":442},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"animation_duration\":\"fast\",\"background_position_mobile\":\"center left\",\"background_position_tablet\":\"center left\"},\"elements\":[{\"id\":\"7feb9e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2a1849b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"primary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"3549b8f\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_icon\":\"fa fa-quote-left\",\"testimonial_title\":\"\",\"testimonial_content\":\"Rentex is worth much more than I paid. It\'s just amazing. I couldn\'t have asked for more than this. I am so pleased with this product.\",\"testimonial_name\":\"Erin Brock\",\"testimonial_job\":\"Corporate communications Executive\",\"_id\":\"8fe30f1\"}],\"icon_color\":\"#FFFFFF\",\"content_content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"name_text_color\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_text_transform\":\"capitalize\",\"job_text_color\":\"#FFFFFF\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"testimonial_image_size\":\"full\",\"testimonial_alignment\":\"center\",\"style\":\"2\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6088f0d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b64629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d068968\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips and advice\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3f1296\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Keeping our clients, employees, and partners informed is one of our top priorities.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":510,\"sizes\":[]},\"text_color\":\"#6A6A6A\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b4c1f5f\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":3,\"column_tablet\":\"2\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"enable_carousel\":\"yes\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex-post-grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3072856\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":630,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h3_bg-2.jpg\",\"id\":452},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"b4cfca5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"08bb935\",\"elType\":\"widget\",\"settings\":{\"title\":\"Market your property with us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35d9df4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With over 160 years of experience, more than 130 UK offices, and thousands of potential buyers and tenants on our database, we\'ll make sure your property gets in front of the right people.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea1873a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Arrange A Valuation\",\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1039,398,'stm_post_views','355'),(1040,398,'stm_day_28','66'),(1041,398,'stm_month_05','66'),(1042,398,'stm_day_1','2'),(1043,398,'stm_month_06','99'),(1044,398,'stm_day_2','14'),(1045,398,'stm_day_4','1'),(1046,398,'stm_day_6','19'),(1047,398,'stm_day_8','31'),(1048,398,'stm_day_10','1'),(1049,398,'stm_day_11','1'),(1050,398,'stm_day_12','1'),(1051,398,'stm_day_15','3'),(1052,398,'stm_day_16','23'),(1053,398,'stm_day_17','43'),(1054,398,'stm_day_19','3'),(1055,398,'stm_day_22','9'),(1056,398,'stm_day_23','15'),(1057,398,'stm_day_24','8'),(1058,398,'stm_day_25','2'),(1059,398,'stm_day_26','38'),(1060,398,'stm_day_30','3'),(1061,398,'stm_month_07','188'),(1062,398,'stm_day_7','1'),(1063,398,'stm_day_13','30'),(1064,398,'stm_day_14','16'),(1065,398,'stm_day_20','9'),(1066,398,'stm_day_21','11'),(1067,398,'_elementor_controls_usage','a:12:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:7;s:10:\"text_color\";i:6;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:7;s:15:\"_padding_mobile\";i:1;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:18:\"animation_duration\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:6;s:25:\"typography_text_transform\";i:1;s:25:\"typography_letter_spacing\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:6;s:32:\"typography_letter_spacing_tablet\";i:1;s:32:\"typography_letter_spacing_mobile\";i:1;s:22:\"typography_line_height\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:6;s:15:\"_padding_mobile\";i:1;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:1:{s:21:\"_element_custom_width\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:18:\"animation_duration\";i:5;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:3;s:10:\"icon_align\";i:3;s:4:\"link\";i:1;s:11:\"button_type\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:3;s:13:\"border_radius\";i:3;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:12:\"_inline_size\";i:12;s:21:\"space_between_widgets\";i:12;s:5:\"align\";i:4;s:19:\"_inline_size_tablet\";i:4;s:12:\"align_tablet\";i:2;s:12:\"align_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:8;s:3:\"gap\";i:9;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:1;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:13:{s:21:\"background_background\";i:8;s:16:\"background_image\";i:3;s:28:\"background_slideshow_gallery\";i:1;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:45:\"background_slideshow_ken_burns_zoom_direction\";i:1;s:40:\"background_slideshow_transition_duration\";i:1;s:16:\"background_color\";i:5;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:2;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;}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:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:7;s:14:\"padding_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:22:\"rentext_listing_search\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:2:{s:20:\"listing_search_style\";i:1;s:20:\"listing_search_color\";i:1;}}}}s:15:\"rentex-services\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:16:\"services_content\";a:1:{s:13:\"service_items\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:13:\"rentex-region\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_region\";a:4:{s:12:\"listing_type\";i:7;s:4:\"term\";i:7;s:5:\"image\";i:7;s:13:\"region_styles\";i:7;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:21:\"_element_width_mobile\";i:7;s:14:\"_element_width\";i:7;s:21:\"_element_custom_width\";i:7;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}s:5:\"style\";a:2:{s:12:\"rigion_image\";a:1:{s:15:\"image_bg_normal\";i:2;}s:14:\"rigion_listing\";a:1:{s:18:\"listing_text_color\";i:2;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:4:{s:23:\"listing_posts_type_list\";i:1;s:21:\"listing_posts_sort_by\";i:1;s:22:\"listing_posts_per_page\";i:1;s:26:\"listing_posts_item_columns\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:22:\"testimonial_image_size\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;}}s:5:\"style\";a:3:{s:31:\"section_style_testimonial_style\";a:5:{s:21:\"content_content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_line_height\";i:1;s:15:\"content_spacing\";i:1;}s:30:\"section_style_testimonial_name\";a:4:{s:15:\"name_text_color\";i:1;s:26:\"name_typography_typography\";i:1;s:25:\"name_typography_font_size\";i:1;s:30:\"name_typography_text_transform\";i:1;}s:29:\"section_style_testimonial_job\";a:3:{s:14:\"job_text_color\";i:1;s:25:\"job_typography_typography\";i:1;s:24:\"job_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:16:\"rentex-post-grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"section_query\";a:2:{s:14:\"posts_per_page\";i:1;s:13:\"column_tablet\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_prev_label\";i:1;s:21:\"pagination_next_label\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),(1068,398,'stm_day_27','1'),(1069,398,'stm_day_29','2'),(1070,398,'stm_day_5','2'),(1071,398,'stm_month_08','2'),(1072,398,'_wxr_import_user_slug','admin'),(1073,495,'_menu_item_type','custom'),(1074,495,'_menu_item_menu_item_parent','0'),(1075,495,'_menu_item_object_id','495'),(1076,495,'_menu_item_object','custom'),(1077,495,'_menu_item_target',''),(1078,495,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1079,495,'_menu_item_xfn',''),(1080,495,'_menu_item_url','https://demo2wpopal.b-cdn.net/rentex/social-housing/'),(1081,495,'_wxr_import_user_slug','admin'),(1082,496,'_menu_item_type','custom'),(1083,496,'_menu_item_menu_item_parent','0'),(1084,496,'_menu_item_object_id','496'),(1085,496,'_menu_item_object','custom'),(1086,496,'_menu_item_target',''),(1087,496,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1088,496,'_menu_item_xfn',''),(1089,496,'_menu_item_url','https://demo2wpopal.b-cdn.net/rentex/addlisting/'),(1090,496,'_wxr_import_user_slug','admin'),(1091,497,'_menu_item_type','custom'),(1092,497,'_menu_item_menu_item_parent','0'),(1093,497,'_menu_item_object_id','497'),(1094,497,'_menu_item_object','custom'),(1095,497,'_menu_item_target',''),(1096,497,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1097,497,'_menu_item_xfn',''),(1098,497,'_menu_item_url','https://demo2wpopal.b-cdn.net/rentex/pricing-plan/'),(1099,497,'_wxr_import_user_slug','admin'),(1100,503,'_menu_item_type','custom'),(1101,503,'_menu_item_menu_item_parent','0'),(1102,503,'_menu_item_object_id','503'),(1103,503,'_menu_item_object','custom'),(1104,503,'_menu_item_target',''),(1105,503,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1106,503,'_menu_item_xfn',''),(1107,503,'_menu_item_url','/'),(1108,503,'_wxr_import_user_slug','admin'),(1109,551,'inline_featured_image','0'),(1110,551,'inline_featured_image','0'),(1111,551,'slide_template','default'),(1112,551,'rs_page_bg_color','#ffffff'),(1113,551,'_elementor_edit_mode','builder'),(1114,551,'_elementor_template_type','wp-page'),(1115,551,'_elementor_version','2.9.14'),(1116,551,'_elementor_pro_version','2.10.3'),(1117,551,'stm_post_views','165'),(1118,551,'stm_day_1','31'),(1119,551,'stm_month_06','71'),(1120,551,'_wp_page_template','default'),(1121,551,'_elementor_data','[{\"id\":\"c5080d5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d92c36e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true}},\"elements\":[{\"id\":\"59a5dd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"686402e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":475,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"507121f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ded75ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.054000000000002046363078989088535308837890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_inline_size_tablet\":58,\"border_radius_mobile\":{\"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}},\"elements\":[{\"id\":\"038d2fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"-30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#F5A44A\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0377329\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Your email address will not be published. Required fields are market *<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e663c47\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"yourname\",\"field_type\":\"text\",\"field_label\":\"Your Name\",\"placeholder\":\"Your Name\",\"width\":\"50\",\"_id\":\"4d9c375\",\"required\":\"true\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}},{\"custom_id\":\"youremail\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"width\":\"50\",\"_id\":\"dc6e96e\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"Message\",\"placeholder\":\"Message\",\"width\":\"100\",\"_id\":\"d900e49\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":5,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}},{\"field_type\":\"checkbox\",\"field_label\":\"\",\"placeholder\":\"\",\"required\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"Save my name, email, and website in this browser for the next time I comment\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"custom_id\":\"field_2035acf\",\"_id\":\"2035acf\"}],\"show_labels\":\"\",\"button_text\":\"Submit\",\"button_size\":\"md\",\"button_align\":\"start\",\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"button_background_color\":\"#F5A44A\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"em\",\"size\":2.399999999999999911182158029987476766109466552734375,\"sizes\":[]},\"field_border_color\":\"#EBEBEB\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"8e8330e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.945999999999997953636921010911464691162109375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":40,\"border_radius_mobile\":{\"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}},\"elements\":[{\"id\":\"7cf16d1\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"b9d52b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"border_radius_mobile\":{\"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\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d1f3a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Office\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#F5A44A\",\"_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e13743f\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"London Office\",\"description\":\"<span style=\\\"color:#000;\\\">Add:<\\/span>  Box 565, Pinney\'s Beach, Nevis,  West Indies, Caribbean <br>\\n<span style=\\\"color:#000;\\\">Phone:&nbsp;<\\/span> +844 - 123 456 78 <br>\\n<span style=\\\"color:#000;\\\">Fax:<\\/span> &nbsp; &nbsp; &nbsp; +844 - 123 456 78 <br>\\n<span style=\\\"color:#000;\\\">Email:&nbsp; &nbsp;<\\/span>    contact@example.com\",\"button_text\":\"\",\"background_color\":\"\",\"_id\":\"c5f7b98\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"right\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"heading\":\"Paris Office\",\"description\":\"<span style=\\\"color:#000;\\\">Add:<\\/span>  Box 565, Pinney\'s Beach, Nevis,  West Indies, Caribbean <br>\\n<span style=\\\"color:#000;\\\">Phone:&nbsp;<\\/span> +844 - 123 456 78 <br>\\n<span style=\\\"color:#000;\\\">Fax:<\\/span> &nbsp; &nbsp; &nbsp; +844 - 123 456 78 <br>\\n<span style=\\\"color:#000;\\\">Email:&nbsp; &nbsp;<\\/span>    contact@example.com\",\"button_text\":\"Click Here\",\"background_color\":\"\",\"_id\":\"1f1a007\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"heading\":\"Canberra Office\",\"description\":\"<span style=\\\"color:#000;\\\">Add:<\\/span>  Box 565, Pinney\'s Beach, Nevis,  West Indies, Caribbean <br>\\n<span style=\\\"color:#000;\\\">Phone:&nbsp;<\\/span> +844 - 123 456 78 <br>\\n<span style=\\\"color:#000;\\\">Fax:<\\/span> &nbsp; &nbsp; &nbsp; +844 - 123 456 78 <br>\\n<span style=\\\"color:#000;\\\">Email:&nbsp; &nbsp;<\\/span>    contact@example.com\",\"button_text\":\"Click Here\",\"background_color\":\"\",\"_id\":\"076f13b\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"heading\":\"Washington Office\",\"description\":\"<span style=\\\"color:#000;\\\">Add:<\\/span>  Box 565, Pinney\'s Beach, Nevis,  West Indies, Caribbean <br>\\n<span style=\\\"color:#000;\\\">Phone:&nbsp;<\\/span> +844 - 123 456 78 <br>\\n<span style=\\\"color:#000;\\\">Fax:<\\/span> &nbsp; &nbsp; &nbsp; +844 - 123 456 78 <br>\\n<span style=\\\"color:#000;\\\">Email:&nbsp; &nbsp;<\\/span>    contact@example.com\",\"button_text\":\"Click Here\",\"background_color\":\"\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"_id\":\"efb9e1b\"}],\"navigation\":\"dots\",\"content_max_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"slides_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"slides_text_align\":\"left\",\"heading_color\":\"#000000\",\"description_color\":\"#6A6A6A\",\"slides_height\":{\"unit\":\"px\",\"size\":220,\"sizes\":[]},\"slides_height_tablet\":{\"unit\":\"px\",\"size\":250,\"sizes\":[]},\"slides_height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"content_animation\":\"fadeInRight\",\"slides_vertical_position\":\"top\",\"heading_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"heading_typography_typography\":\"custom\",\"heading_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"description_typography_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"dots_size\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"dots_color\":\"#F5A44A\",\"autoplay\":\"\",\"transition_speed\":300,\"infinite\":\"\",\"slides_horizontal_position\":\"left\"},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1122,551,'stm_day_2','30'),(1123,551,'stm_day_8','5'),(1124,551,'stm_day_12','2'),(1125,551,'stm_day_16','1'),(1126,551,'stm_day_18','1'),(1127,551,'stm_day_25','5'),(1128,551,'stm_month_07','93'),(1129,551,'stm_day_6','2'),(1130,551,'stm_day_7','12'),(1131,551,'stm_day_13','2'),(1132,551,'stm_day_14','8'),(1133,551,'stm_day_15','24'),(1134,551,'stm_day_17','5'),(1135,551,'stm_day_20','13'),(1136,551,'stm_day_23','2'),(1137,551,'stm_day_24','1'),(1138,551,'stm_day_27','1'),(1139,551,'stm_day_29','18'),(1140,551,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:2;}s:15:\"section_effects\";a:1:{s:18:\"animation_duration\";i:1;}s:15:\"_section_border\";a:4:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;s:20:\"_border_width_mobile\";i:2;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:2:{s:6:\"height\";i:1;s:13:\"height_tablet\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:21:\"space_between_widgets\";i:4;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:2:{s:13:\"border_radius\";i:4;s:20:\"border_radius_mobile\";i:3;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;s:13:\"margin_mobile\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:2;s:3:\"gap\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:2;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:28:\"field_typography_line_height\";i:1;s:18:\"field_border_color\";i:1;}s:20:\"section_button_style\";a:6:{s:23:\"button_background_color\";i:1;s:20:\"button_border_radius\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_background_hover_color\";i:1;s:19:\"button_text_padding\";i:1;}}}}s:6:\"slides\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:4:{s:6:\"slides\";i:1;s:13:\"slides_height\";i:1;s:20:\"slides_height_tablet\";i:1;s:20:\"slides_height_mobile\";i:1;}s:22:\"section_slider_options\";a:5:{s:10:\"navigation\";i:1;s:17:\"content_animation\";i:1;s:8:\"autoplay\";i:1;s:16:\"transition_speed\";i:1;s:8:\"infinite\";i:1;}}s:5:\"style\";a:4:{s:20:\"section_style_slides\";a:5:{s:17:\"content_max_width\";i:1;s:14:\"slides_padding\";i:1;s:17:\"slides_text_align\";i:1;s:24:\"slides_vertical_position\";i:1;s:26:\"slides_horizontal_position\";i:1;}s:19:\"section_style_title\";a:4:{s:13:\"heading_color\";i:1;s:15:\"heading_spacing\";i:1;s:29:\"heading_typography_typography\";i:1;s:28:\"heading_typography_font_size\";i:1;}s:25:\"section_style_description\";a:4:{s:17:\"description_color\";i:1;s:33:\"description_typography_typography\";i:1;s:32:\"description_typography_font_size\";i:1;s:34:\"description_typography_line_height\";i:1;}s:24:\"section_style_navigation\";a:2:{s:9:\"dots_size\";i:1;s:10:\"dots_color\";i:1;}}}}}'),(1141,551,'stm_day_5','1'),(1142,551,'stm_month_08','1'),(1143,551,'_wxr_import_user_slug','admin'),(1144,581,'inline_featured_image','0'),(1145,581,'inline_featured_image','0'),(1146,581,'slide_template','default'),(1147,581,'rs_page_bg_color','#ffffff'),(1148,581,'_elementor_edit_mode','builder'),(1149,581,'_elementor_template_type','wp-page'),(1150,581,'_elementor_version','2.9.9'),(1151,581,'_elementor_pro_version','2.10.3'),(1152,581,'stm_post_views','167'),(1153,581,'stm_day_2','28'),(1154,581,'stm_month_06','98'),(1155,581,'_wp_page_template','default'),(1156,581,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5437,3795,'_elementor_edit_mode','builder'),(5438,3795,'_elementor_template_type','wp-page'),(5439,3795,'_elementor_version','2.9.9'),(5440,3795,'_elementor_pro_version','2.10.3'),(5441,3795,'_wp_page_template','default'),(5442,3795,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6069,3890,'_elementor_edit_mode','builder'),(6070,3890,'_elementor_template_type','wp-page'),(6071,3890,'_elementor_version','2.9.9'),(6072,3890,'_elementor_pro_version','2.10.3'),(6073,3890,'_wp_page_template','default'),(6074,3890,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5445,3796,'_elementor_edit_mode','builder'),(5446,3796,'_elementor_template_type','section'),(5447,3796,'inline_featured_image','0'),(5448,3796,'_elementor_version','2.9.9'),(5449,3796,'_elementor_pro_version','2.10.3'),(5450,3797,'_elementor_edit_mode','builder'),(5451,3797,'_elementor_template_type','section'),(5452,3797,'_elementor_version','2.9.9'),(5453,3797,'_elementor_pro_version','2.10.3'),(5454,3796,'_wp_page_template','default'),(5455,3796,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5456,3796,'_elementor_data','[{\"id\":\"7f91fd55\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74277c96\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"619eca57\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"683648af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ff0f84b\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4788dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"101c0270\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5457,3798,'_elementor_edit_mode','builder'),(5458,3798,'_elementor_template_type','section'),(5459,3798,'_elementor_version','2.9.9'),(5460,3798,'_elementor_pro_version','2.10.3'),(5461,3798,'_wp_page_template','default'),(5462,3798,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5463,3798,'_elementor_data','[{\"id\":\"7f91fd55\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74277c96\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"619eca57\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"683648af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5ff0f84b\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"4788dd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"101c0270\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5464,3796,'_elementor_controls_usage','a:3:{s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;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:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(5465,3799,'_elementor_edit_mode','builder'),(5466,3799,'_elementor_template_type','section'),(5467,3799,'inline_featured_image','0'),(5468,3799,'_elementor_version','2.9.9'),(5469,3799,'_elementor_pro_version','2.10.3'),(5470,3800,'_elementor_edit_mode','builder'),(5471,3800,'_elementor_template_type','section'),(5472,3800,'_elementor_version','2.9.9'),(5473,3800,'_elementor_pro_version','2.10.3'),(5474,3799,'_wp_page_template','default'),(5475,3799,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5476,3799,'_elementor_data','[{\"id\":\"5606ac27\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"315ce42\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"42657dea\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"ab18bca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"11850f53\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"352b86fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27b20652\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5477,3801,'_elementor_edit_mode','builder'),(5478,3801,'_elementor_template_type','section'),(5479,3801,'_elementor_version','2.9.9'),(5480,3801,'_elementor_pro_version','2.10.3'),(5481,3801,'_wp_page_template','default'),(5482,3801,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5483,3801,'_elementor_data','[{\"id\":\"5606ac27\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"315ce42\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"42657dea\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"ab18bca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"11850f53\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"352b86fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"27b20652\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5484,3799,'_elementor_controls_usage','a:3:{s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;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:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(5485,3802,'_elementor_edit_mode','builder'),(5486,3802,'_elementor_template_type','section'),(5487,3802,'inline_featured_image','0'),(5488,3802,'_elementor_version','2.9.9'),(5489,3802,'_elementor_pro_version','2.10.3'),(5490,3803,'_elementor_edit_mode','builder'),(5491,3803,'_elementor_template_type','section'),(5492,3803,'_elementor_version','2.9.9'),(5493,3803,'_elementor_pro_version','2.10.3'),(5421,3792,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf7c8c8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c8be532\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f15c37b\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Guidance you need\",\"description_text\":\"We\'re here to strip the fear out of home buying and arm you with the confidence you need to make decisions\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-guidance\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"a3667fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2af9d1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Search that feels familiar\",\"description_text\":\"Our first-of-its-kind search experience enables you to plug in a monthly payment you\'re willing to make \",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-search-home\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"ca200a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"37db298\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Premium values\",\"description_text\":\"Luxury real estate is our passion and it demands our focus. We strive to provide a high level of personalised service\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-value\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ec65d2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-about.jpg\",\"id\":595},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e20115e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e43a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b397bbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"To help members\\nbecome more profitable\\nand successful\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fd9b7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Homey is America\'s largest trade association, representing 1.3 million members, including our institutes, societies, and councils, involved in all aspects of the residential and commercial real estate industries.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e97c0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Help sellers get the most for their properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Help sellers price their properties fairly\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Help buyers find the property that fits their needs\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Help buyers avoid over paying by strategically negotiating purchase\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#FF9933\",\"text_color\":\"#000000\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"3fb2936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"07a1772\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1070,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/parallax-about.jpg\",\"id\":605},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5ec34a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"83955a7\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1721,\"thousand_separator\":\"\",\"title\":\"Homes for sale\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"34fa6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb10dc3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":674,\"thousand_separator\":\"\",\"title\":\"Homes for rent\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"88e7d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"765c525\",\"elType\":\"widget\",\"settings\":{\"ending_number\":6599,\"thousand_separator\":\"\",\"title\":\"Recently sold\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"7f30c48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"bd956da\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5763,\"thousand_separator\":\"\",\"title\":\"Happy clients\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38c80d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c76a7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fbdaf84\",\"elType\":\"widget\",\"settings\":{\"title\":\"testimonials\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"661c7be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here\\u2019s what clients say<br>\\nabout us\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fcc4c16\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4d0eeb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"09a9b8c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"b2416f8\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"Corporate communications Executive\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true},{\"id\":\"eea7cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc1add0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b6dcce\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mrs. Emma Stone\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1157,581,'_oembed_f551c374233ebbf8065a235e8708d379','<iframe title=\"Video Placeholder\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(1158,581,'_oembed_time_f551c374233ebbf8065a235e8708d379','1591064352'),(1159,581,'stm_day_3','8'),(1160,581,'stm_day_4','1'),(1161,581,'stm_day_6','2'),(1162,581,'stm_day_8','13'),(1163,581,'stm_day_12','1'),(1164,581,'stm_day_18','1'),(1165,581,'stm_day_22','1'),(1166,581,'stm_day_24','4'),(1167,581,'stm_day_25','3'),(1168,581,'stm_day_30','15'),(1169,581,'stm_day_1','7'),(1170,581,'stm_month_07','67'),(1171,581,'stm_day_7','20'),(1172,581,'stm_day_9','2'),(1173,581,'stm_day_13','4'),(1174,581,'stm_day_14','8'),(1175,581,'stm_day_17','10'),(5403,3790,'_elementor_edit_mode','builder'),(5404,3790,'_elementor_template_type','wp-page'),(5405,3790,'_elementor_version','2.9.13'),(5406,3790,'_elementor_pro_version','2.10.2'),(5407,3790,'_wp_page_template','default'),(5408,3790,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/about-us.jpg\",\"id\":2478},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h2_img1.jpg\",\"id\":349},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our long-standing<br> experience\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f44fc54\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":440,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-160\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0af3bbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"45\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_mobile\":100,\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"96273ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have over\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28039d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"75\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8658e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"years\'\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d97901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Expertise\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"875cf54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h2_bg-video.jpg\",\"id\":383},\"background_position\":\"center center\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"6f8882e\",\"elType\":\"widget\",\"settings\":{\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"icon_font\":\"fa fa-play\",\"video_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"video_color\":\"#FFFFFF\",\"border_video_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"rentex-video-popup\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf7c8c8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c8be532\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f15c37b\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Guidance you need\",\"description_text\":\"We\'re here to strip the fear out of home buying and arm you with the confidence you need to make decisions\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-guidance\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"a3667fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2af9d1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Search that feels familiar\",\"description_text\":\"Our first-of-its-kind search experience enables you to plug in a monthly payment you\'re willing to make \",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-search-home\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"ca200a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"37db298\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Premium values\",\"description_text\":\"Luxury real estate is our passion and it demands our focus. We strive to provide a high level of personalised service\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-value\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ec65d2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-about.jpg\",\"id\":595},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e20115e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e43a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b397bbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"To help members\\nbecome more profitable\\nand successful\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fd9b7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Homey is America\'s largest trade association, representing 1.3 million members, including our institutes, societies, and councils, involved in all aspects of the residential and commercial real estate industries.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e97c0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Help sellers get the most for their properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Help sellers price their properties fairly\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Help buyers find the property that fits their needs\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Help buyers avoid over paying by strategically negotiating purchase\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#FF9933\",\"text_color\":\"#000000\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"3fb2936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"07a1772\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1070,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/parallax-about.jpg\",\"id\":605},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5ec34a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"83955a7\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1721,\"thousand_separator\":\"\",\"title\":\"Homes for sale\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"34fa6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb10dc3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":674,\"thousand_separator\":\"\",\"title\":\"Homes for rent\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"88e7d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"765c525\",\"elType\":\"widget\",\"settings\":{\"ending_number\":6599,\"thousand_separator\":\"\",\"title\":\"Recently sold\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"7f30c48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"bd956da\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5763,\"thousand_separator\":\"\",\"title\":\"Happy clients\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38c80d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c76a7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fbdaf84\",\"elType\":\"widget\",\"settings\":{\"title\":\"testimonials\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"661c7be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here\\u2019s what clients say<br>\\nabout us\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fcc4c16\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4d0eeb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"09a9b8c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"b2416f8\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"Corporate communications Executive\",\"testimonial_link\":\"#\",\"_id\":\"cc9e8c4\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true},{\"id\":\"eea7cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc1add0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b6dcce\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mrs. Emma Stone\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":\"#\",\"_id\":\"cc9e8c4\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1177,581,'stm_day_20','7'),(1178,581,'stm_day_21','1'),(1179,581,'stm_day_27','1'),(1180,581,'stm_day_29','1'),(1181,581,'stm_day_5','1'),(1182,581,'stm_month_08','1'),(1183,581,'_wxr_import_user_slug','admin'),(1184,612,'_menu_item_type','custom'),(1185,612,'_menu_item_menu_item_parent','0'),(1186,612,'_menu_item_object_id','612'),(1187,612,'_menu_item_object','custom'),(1188,612,'_menu_item_target',''),(1189,612,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1190,612,'_menu_item_xfn',''),(1191,612,'_menu_item_url','#'),(1192,612,'_wxr_import_user_slug','admin'),(1193,613,'_menu_item_type','post_type'),(1194,613,'_menu_item_menu_item_parent','612'),(1195,613,'_menu_item_object_id','581'),(1196,613,'_menu_item_object','page'),(1197,613,'_menu_item_target',''),(1198,613,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1199,613,'_menu_item_xfn',''),(1200,613,'_menu_item_url',''),(1201,613,'_wxr_import_user_slug','admin'),(1202,614,'_menu_item_type','post_type'),(1203,614,'_menu_item_menu_item_parent','612'),(1204,614,'_menu_item_object_id','551'),(1205,614,'_menu_item_object','page'),(1206,614,'_menu_item_target',''),(1207,614,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1208,614,'_menu_item_xfn',''),(1209,614,'_menu_item_url',''),(1210,614,'_wxr_import_user_slug','admin'),(1211,615,'_menu_item_type','post_type'),(1212,615,'_menu_item_menu_item_parent','612'),(1213,615,'_menu_item_object_id','192'),(1214,615,'_menu_item_object','page'),(1215,615,'_menu_item_target',''),(1216,615,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1217,615,'_menu_item_xfn',''),(1218,615,'_menu_item_url',''),(1219,615,'_wxr_import_user_slug','admin'),(1220,625,'inline_featured_image','0'),(1221,625,'inline_featured_image','0'),(1222,625,'slide_template','default'),(1223,625,'rs_page_bg_color','#ffffff'),(1224,625,'stm_post_views','101'),(1225,625,'stm_day_2','41'),(1226,625,'stm_month_06','42'),(1227,625,'_elementor_edit_mode','builder'),(1228,625,'_elementor_template_type','wp-page'),(1229,625,'_elementor_version','2.9.13'),(1230,625,'_elementor_pro_version','2.10.2'),(1231,625,'_wp_page_template','default'),(1232,625,'_elementor_data','[{\"id\":\"b2e6b76\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a16b2a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.054000000000002046363078989088535308837890625,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e507e5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Frequently asked questions\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f2180b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"f7207f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"8980381\",\"elType\":\"widget\",\"settings\":{\"title\":\"General questions\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"324f53e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E1E1E1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4da6b3a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can I manage my account online? \",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"07dffa2\"},{\"tab_title\":\"Is it possible to purchase a home in MO with no money down ?\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"4016fe1\"},{\"tab_title\":\"How do I list my rental home on your site. I used to have an account with you.\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"3ec86cd\"},{\"tab_title\":\"What are the benefits to paying off a mortgage early?\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"b8bca02\"},{\"tab_title\":\"What are the benefits to paying off a mortgage early?\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"b3437b0\"}],\"selected_icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-minus\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"icon_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"icon_active_color\":\"#F5A44A\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5905a3f\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"1d60176\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"b3a30fe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Membership questions\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b11fe43\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E1E1E1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"08bf8c1\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can I manage my account online? \",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"07dffa2\"},{\"tab_title\":\"Is it possible to purchase a home in MO with no money down ?\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"4016fe1\"},{\"tab_title\":\"How do I list my rental home on your site. I used to have an account with you.\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"3ec86cd\"},{\"tab_title\":\"What are the benefits to paying off a mortgage early?\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"b8bca02\"},{\"tab_title\":\"What are the benefits to paying off a mortgage early?\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"b3437b0\"}],\"selected_icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-minus\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"icon_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"icon_active_color\":\"#F5A44A\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9d5771d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ae495b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"b68a1b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Properties management questions\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d8d788\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"color\":\"#E1E1E1\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"991320e\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Can I manage my account online? \",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"07dffa2\"},{\"tab_title\":\"Is it possible to purchase a home in MO with no money down ?\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"4016fe1\"},{\"tab_title\":\"How do I list my rental home on your site. I used to have an account with you.\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"3ec86cd\"},{\"tab_title\":\"What are the benefits to paying off a mortgage early?\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"b8bca02\"},{\"tab_title\":\"What are the benefits to paying off a mortgage early?\",\"tab_content\":\"<p>Yes, with an online account you can arrange a service visit, find out what\\u2019s happening with your appointment, submit a meter reading and book an engineer. We\\u2019ve even got a free smartphone app.<\\/p>\",\"_id\":\"b3437b0\"}],\"selected_icon\":{\"value\":\"fas fa-plus\",\"library\":\"fa-solid\"},\"selected_active_icon\":{\"value\":\"fas fa-minus\",\"library\":\"fa-solid\"},\"border_width\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"icon_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"32\",\"isLinked\":false},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"title_typography_font_weight\":\"400\",\"icon_active_color\":\"#F5A44A\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e6ecec9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.945999999999997953636921010911464691162109375,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5500316\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a722df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"6078f38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Got any question?\",\"header_size\":\"h5\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#F5A44A\",\"typography_font_weight\":\"500\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"-15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"-30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75e4185\",\"elType\":\"widget\",\"settings\":{\"editor\":\"If you are having any questions, please feel free to ask.\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"05de78a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Drop Us a Line\",\"align\":\"justify\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"dd2baba\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"734c6b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"f298b4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest post\",\"header_size\":\"h5\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#F5A44A\",\"typography_font_weight\":\"500\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"-15\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"-30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"27\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fb6c2\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"1\",\"classic_columns_tablet\":\"1\",\"classic_posts_per_page\":3,\"classic_thumbnail\":\"left\",\"classic_image_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"classic_image_width_tablet\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"classic_image_width_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"classic_title_tag\":\"h5\",\"classic_show_excerpt\":\"\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_show_read_more\":\"\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_columns\":\"1\",\"cards_meta_separator\":\"\\u2022\",\"cards_show_read_more\":\"\",\"cards_read_more_text\":\"Read More \\u00bb\",\"cards_show_badge\":\"\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"classic_meta_data\":[\"date\"],\"classic_row_gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"classic_img_border_radius\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"classic_image_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"classic_title_color\":\"#000000\",\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"classic_title_typography_font_weight\":\"500\",\"classic_title_typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"classic_title_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"classic_meta_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1233,625,'stm_day_3','20'),(1234,625,'stm_day_4','8'),(1235,625,'stm_day_5','4'),(1236,625,'stm_day_1','7'),(1237,625,'stm_month_07','56'),(1238,625,'stm_day_7','1'),(1239,625,'stm_day_8','13'),(1240,625,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:11:\"header_size\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:6;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_font_weight\";i:5;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:6;s:14:\"_margin_mobile\";i:3;s:15:\"_padding_mobile\";i:3;s:8:\"_padding\";i:2;s:14:\"_margin_tablet\";i:2;s:15:\"_padding_tablet\";i:2;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:2;s:13:\"_border_width\";i:2;s:13:\"_border_color\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:5:\"color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"toggle\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_toggle\";a:3:{s:4:\"tabs\";i:3;s:13:\"selected_icon\";i:3;s:20:\"selected_active_icon\";i:3;}}s:5:\"style\";a:4:{s:20:\"section_toggle_style\";a:1:{s:12:\"border_width\";i:3;}s:26:\"section_toggle_style_title\";a:6:{s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:13:\"title_padding\";i:3;s:33:\"title_typography_font_size_tablet\";i:3;s:28:\"title_typography_font_weight\";i:3;}s:25:\"section_toggle_style_icon\";a:2:{s:10:\"icon_space\";i:3;s:17:\"icon_active_color\";i:3;}s:28:\"section_toggle_style_content\";a:6:{s:29:\"content_typography_typography\";i:3;s:28:\"content_typography_font_size\";i:3;s:30:\"content_typography_line_height\";i:3;s:15:\"content_padding\";i:3;s:35:\"content_typography_font_size_tablet\";i:3;s:22:\"content_padding_tablet\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:7;s:21:\"space_between_widgets\";i:7;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:2;s:14:\"padding_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:6:\"layout\";i:5;s:3:\"gap\";i:6;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:5;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:5;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:5;s:7:\"padding\";i:6;s:13:\"margin_mobile\";i:3;s:14:\"padding_tablet\";i:5;s:14:\"padding_mobile\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:13:\"border_radius\";i:1;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:14:{s:15:\"classic_columns\";i:1;s:22:\"classic_columns_tablet\";i:1;s:22:\"classic_posts_per_page\";i:1;s:17:\"classic_thumbnail\";i:1;s:19:\"classic_image_width\";i:1;s:26:\"classic_image_width_tablet\";i:1;s:26:\"classic_image_width_mobile\";i:1;s:17:\"classic_title_tag\";i:1;s:20:\"classic_show_excerpt\";i:1;s:22:\"classic_show_read_more\";i:1;s:13:\"cards_columns\";i:1;s:20:\"cards_show_read_more\";i:1;s:16:\"cards_show_badge\";i:1;s:17:\"classic_meta_data\";i:1;}}s:5:\"style\";a:3:{s:29:\"classic_section_design_layout\";a:1:{s:15:\"classic_row_gap\";i:1;}s:28:\"classic_section_design_image\";a:2:{s:25:\"classic_img_border_radius\";i:1;s:21:\"classic_image_spacing\";i:1;}s:30:\"classic_section_design_content\";a:7:{s:19:\"classic_title_color\";i:1;s:35:\"classic_title_typography_typography\";i:1;s:34:\"classic_title_typography_font_size\";i:1;s:36:\"classic_title_typography_font_weight\";i:1;s:36:\"classic_title_typography_line_height\";i:1;s:21:\"classic_title_spacing\";i:1;s:20:\"classic_meta_spacing\";i:1;}}}}}'),(1241,625,'stm_day_13','1'),(1242,625,'stm_day_14','1'),(1243,625,'stm_day_15','1'),(1244,625,'stm_day_17','1'),(1245,625,'stm_day_24','1'),(1246,625,'stm_day_26','1'),(1247,625,'stm_month_08','3'),(1248,625,'stm_day_6','1'),(1249,625,'_wxr_import_user_slug','admin'),(1250,650,'inline_featured_image','0'),(1251,650,'inline_featured_image','0'),(1252,650,'slide_template',''),(1253,650,'rs_page_bg_color',''),(1254,650,'payment_type','one_time'),(1255,650,'type','limit_count'),(1256,650,'price','19'),(1257,650,'listing_limit','2'),(1258,650,'duration','1'),(1259,650,'duration_type','month'),(1260,650,'status','active'),(1261,650,'stm_post_views','1'),(1262,650,'stm_day_2','1'),(1263,650,'stm_month_06','1'),(1264,650,'_wxr_import_user_slug','admin'),(1265,651,'inline_featured_image','0'),(1266,651,'inline_featured_image','0'),(1267,651,'slide_template',''),(1268,651,'rs_page_bg_color',''),(1269,651,'payment_type','one_time'),(1270,651,'type','limit_count'),(1271,651,'price','29'),(1272,651,'listing_limit','6'),(1273,651,'duration','1'),(1274,651,'duration_type','year'),(1275,651,'status','active'),(1276,651,'stm_post_views','1'),(1277,651,'stm_day_2','1'),(1278,651,'stm_month_06','1'),(1279,651,'_wxr_import_user_slug','admin'),(1280,652,'inline_featured_image','0'),(1281,652,'inline_featured_image','0'),(1282,652,'slide_template',''),(1283,652,'rs_page_bg_color',''),(1284,652,'payment_type','one_time'),(1285,652,'type','limit_count'),(1286,652,'price','39'),(1287,652,'listing_limit','12'),(1288,652,'duration','1'),(1289,652,'duration_type','month'),(1290,652,'status','active'),(1291,652,'stm_post_views','15'),(1292,652,'stm_day_2','2'),(1293,652,'stm_month_06','9'),(1294,652,'stm_day_3','3'),(1295,652,'stm_day_8','2'),(1296,652,'stm_day_12','1'),(1297,652,'stm_day_16','2'),(1298,652,'stm_day_25','1'),(1299,652,'stm_day_17','2'),(1300,652,'stm_month_07','2'),(1301,652,'stm_month_08','2'),(1302,652,'_wxr_import_user_slug','admin'),(1303,698,'_menu_item_type','custom'),(1304,698,'_menu_item_menu_item_parent','612'),(1305,698,'_menu_item_object_id','698'),(1306,698,'_menu_item_object','custom'),(1307,698,'_menu_item_target',''),(1308,698,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1309,698,'_menu_item_xfn',''),(1310,698,'_menu_item_url','https://demo2wpopal.b-cdn.net/rentex/404.php'),(1311,698,'_wxr_import_user_slug','admin'),(1312,699,'_menu_item_type','post_type'),(1313,699,'_menu_item_menu_item_parent','0'),(1314,699,'_menu_item_object_id','64'),(1315,699,'_menu_item_object','page'),(1316,699,'_menu_item_target',''),(1317,699,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1318,699,'_menu_item_xfn',''),(1319,699,'_menu_item_url',''),(1320,699,'_wxr_import_user_slug','admin'),(1321,739,'inline_featured_image','0'),(1322,739,'inline_featured_image','0'),(1323,739,'_wp_page_template','template-homepage.php'),(1324,739,'slide_template','default'),(1325,739,'rs_page_bg_color','#ffffff'),(1326,739,'_elementor_edit_mode','builder'),(1327,739,'_elementor_template_type','wp-page'),(1328,739,'_elementor_version','2.9.13'),(1329,739,'_elementor_pro_version','2.10.2'),(1330,739,'stm_post_views','294'),(1331,739,'stm_day_4','47'),(1332,739,'stm_month_06','138'),(1333,739,'_elementor_data','[{\"id\":\"a4759ee\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":720,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h1.jpg\",\"id\":317},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":620,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=gjYpGIw9adQ&feature=youtu.be\",\"background_video_fallback\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/bg-videoh7.jpg\",\"id\":2366},\"background_video_start\":12,\"background_play_on_mobile\":\"yes\"},\"elements\":[{\"id\":\"41b27b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"19d8123\",\"elType\":\"widget\",\"settings\":{\"title\":\"Discover a place\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"normal\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9aba664\",\"elType\":\"widget\",\"settings\":{\"headline_style\":\"rotate\",\"before_text\":\"\",\"highlighted_text\":\"Find a property today\",\"rotating_text\":\"you\'ll love to live\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"title_typography_font_weight\":\"normal\",\"words_color\":\"#FFFFFF\",\"words_typography_typography\":\"custom\",\"words_typography_font_weight\":\"bold\",\"animation_type\":\"blinds\",\"marker\":\"strikethrough\",\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"words_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_animation\":\"opal-move-up\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"animated-headline\"},{\"id\":\"ec05f40\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you buy your dream house!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":400},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c764063\",\"elType\":\"widget\",\"settings\":{\"text\":\"Our services\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":600,\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FF9933\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2381baf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"fd7a7c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"dbc2100\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Listing\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"457140c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Explore our selection of the best places around the world\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f6ed40\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-1\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b2ac6d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"9d2fc4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3b4a779\",\"elType\":\"widget\",\"settings\":{\"title\":\"Properties For Sale\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab5f061\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Check out latest properties for sale.\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a19db03\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_category_list\":\"sold\",\"listing_posts_per_page\":\"5\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"check_visible\":\"\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"listing_posts_styles\":\"grid-style-3\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"eeb6486\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/bg1-h7.jpg\",\"id\":1333},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"6a4fe9d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"79ffa97\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Your Perfect Home\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"352920d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Let us help you choose your property<\\/p>\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f1790fd\",\"elType\":\"widget\",\"settings\":{\"listing_search_style\":\"style_3\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentext_listing_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9efa516\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4be191a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a9c7f4f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Properties For Rent\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b0bc28a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Check out latest properties for rent.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1013e52\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_category_list\":\"rent\",\"listing_posts_per_page\":\"5\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"check_visible\":\"\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"listing_posts_styles\":\"grid-style-3\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c162aa5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image1-h7.jpg\",\"id\":795},\"background_repeat\":\"no-repeat\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"380191b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"61b92b7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Buy or Sell<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ecd230\",\"elType\":\"widget\",\"settings\":{\"title\":\"Now more than ever, we understand<br>\\nthe real value of home\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2be0b0b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Submit Property\",\"hover_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":30,\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"024be9a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Browse Properties\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":400,\"_element_width\":\"auto\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5c24196\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/bg1-h7.png\",\"id\":818},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"15\",\"bottom\":\"90\",\"left\":\"15\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"15\",\"bottom\":\"70\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce3dc50\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"c748054\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c4219a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Now more than ever, we understand the real<br> value of home\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e414af1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\"},\"elements\":[{\"id\":\"0c3eb05\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"9e3208e\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1,\"title\":\"Agent\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_title_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"500\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_line_height_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_suffix_typography\":\"custom\",\"typography_number_suffix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"prefix\":\"#\",\"description\":\"Tracy Campion\'s Sales Rank among All Agents in Boston \",\"position\":\"center\",\"typography_number_prefix_typography\":\"custom\",\"typography_number_prefix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"spacing_title\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"typography_number_suffix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"spacing_title_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"a3bfbc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":150},\"elements\":[{\"id\":\"c6aaabf\",\"elType\":\"widget\",\"settings\":{\"ending_number\":9.4000000000000003552713678800500929355621337890625,\"title\":\"Billion\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_title_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"500\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_line_height_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_suffix_typography\":\"custom\",\"typography_number_suffix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"prefix\":\"$\",\"description\":\"Amount of Real Estate Sold by Campion and Company\",\"position\":\"center\",\"typography_number_prefix_typography\":\"custom\",\"typography_number_prefix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"spacing_title\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"typography_number_suffix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_title_typography\":\"custom\",\"spacing_title_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"bccf77b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":300},\"elements\":[{\"id\":\"2f3bcaa\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1500,\"suffix\":\"+\",\"title\":\"Residences\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_title_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"500\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_line_height_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_suffix_typography\":\"custom\",\"typography_number_suffix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"thousand_separator\":\"\",\"description\":\"New Development Units Exclusively Marketed by Campion and Company\",\"position\":\"center\",\"typography_number_prefix_typography\":\"custom\",\"typography_number_prefix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_number_suffix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"spacing_title\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"typography_title_typography\":\"custom\",\"spacing_title_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"ed1f4ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":450},\"elements\":[{\"id\":\"aae802d\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"Years\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_title_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_title_font_weight\":\"500\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_title_line_height_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_number_suffix_typography\":\"custom\",\"typography_number_suffix_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"thousand_separator\":\"\",\"description\":\"Campion and Company is Celebrating over a Decade of Excellence as Boston\\u2019s Premier\",\"position\":\"center\",\"typography_number_prefix_typography\":\"custom\",\"typography_number_prefix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_number_suffix_font_size_tablet\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"spacing_title\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"35\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"typography_title_typography\":\"custom\",\"spacing_title_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2728c4d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"f5c1926\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"5affa0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips and advice\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1faa631\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":3,\"column_tablet\":\"2\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"enable_carousel\":\"yes\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex-post-grid\"}],\"isInner\":false}],\"isInner\":false}]'),(1334,739,'stm_day_5','2'),(1335,739,'stm_day_6','23'),(1336,739,'stm_day_8','40'),(1337,739,'stm_day_10','1'),(1338,739,'stm_day_11','1'),(1339,739,'stm_day_12','3'),(1340,739,'stm_day_15','19'),(1341,739,'stm_day_16','3'),(1342,739,'stm_day_17','31'),(1343,739,'stm_day_18','1'),(1344,739,'stm_day_19','7'),(1345,739,'stm_day_23','9'),(1346,739,'stm_day_24','8'),(1347,739,'stm_day_25','1'),(1348,739,'stm_day_29','8'),(1349,739,'stm_day_30','16'),(1350,739,'stm_day_2','4'),(1351,739,'stm_month_07','155'),(1352,739,'stm_day_13','56'),(1353,739,'stm_day_14','5'),(1354,739,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:8;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:8;s:5:\"align\";i:4;s:12:\"align_mobile\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:27:\"typography_font_size_mobile\";i:8;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:8;s:14:\"_margin_mobile\";i:1;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:7;s:18:\"animation_duration\";i:5;s:16:\"_animation_delay\";i:1;}s:17:\"_section_position\";a:1:{s:21:\"_element_custom_width\";i:2;}}}}s:17:\"animated-headline\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"text_elements\";a:6:{s:14:\"headline_style\";i:1;s:11:\"before_text\";i:1;s:16:\"highlighted_text\";i:1;s:13:\"rotating_text\";i:1;s:14:\"animation_type\";i:1;s:6:\"marker\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_text\";a:10:{s:11:\"title_color\";i:1;s:27:\"title_typography_typography\";i:1;s:26:\"title_typography_font_size\";i:1;s:28:\"title_typography_font_weight\";i:1;s:11:\"words_color\";i:1;s:27:\"words_typography_typography\";i:1;s:28:\"words_typography_font_weight\";i:1;s:33:\"title_typography_font_size_mobile\";i:1;s:28:\"title_typography_line_height\";i:1;s:28:\"words_typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:16:\"_animation_delay\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:3;s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:3;s:12:\"align_mobile\";i:4;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:7;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:6;s:16:\"_animation_delay\";i:1;s:18:\"animation_duration\";i:4;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:3;s:5:\"align\";i:1;s:13:\"selected_icon\";i:1;s:10:\"icon_align\";i:1;s:11:\"button_type\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_radius\";i:3;s:12:\"text_padding\";i:3;s:11:\"hover_color\";i:3;s:29:\"button_background_hover_color\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:16:\"_animation_delay\";i:3;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_mobile\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:12;s:21:\"space_between_widgets\";i:12;s:5:\"align\";i:3;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:9:\"animation\";i:4;s:18:\"animation_duration\";i:4;s:15:\"animation_delay\";i:3;}s:16:\"section_advanced\";a:1:{s:13:\"margin_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:8;s:6:\"layout\";i:2;s:3:\"gap\";i:9;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:13:\"content_width\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:13:{s:21:\"background_background\";i:8;s:16:\"background_image\";i:4;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:21:\"background_video_link\";i:1;s:25:\"background_video_fallback\";i:1;s:22:\"background_video_start\";i:1;s:25:\"background_play_on_mobile\";i:1;s:16:\"background_color\";i:5;s:17:\"background_repeat\";i:3;s:40:\"background_motion_fx_motion_fx_scrolling\";i:2;s:38:\"background_motion_fx_translateY_effect\";i:2;s:19:\"background_position\";i:1;}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:2;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:22:\"motion_fx_scale_effect\";i:1;}s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:8;s:6:\"margin\";i:2;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";i:3;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:11:{s:23:\"listing_posts_type_list\";i:3;s:21:\"listing_posts_sort_by\";i:1;s:20:\"listing_posts_styles\";i:3;s:27:\"listing_posts_styles_layout\";i:1;s:22:\"listing_posts_per_page\";i:3;s:26:\"listing_posts_item_columns\";i:3;s:21:\"listing_category_list\";i:2;s:18:\"listing_posts_view\";i:2;s:27:\"ulisting_posts_carousel_nav\";i:2;s:28:\"ulisting_posts_carousel_dots\";i:2;s:13:\"check_visible\";i:2;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:18:\"animation_duration\";i:3;}}}}s:22:\"rentext_listing_search\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:1:{s:20:\"listing_search_style\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:4;s:5:\"title\";i:4;s:6:\"prefix\";i:2;s:11:\"description\";i:4;s:6:\"suffix\";i:2;s:18:\"thousand_separator\";i:2;}}s:5:\"style\";a:5:{s:14:\"section_number\";a:4:{s:28:\"typography_number_typography\";i:4;s:27:\"typography_number_font_size\";i:4;s:34:\"typography_number_font_size_tablet\";i:4;s:22:\"spacing_number_wrapper\";i:4;}s:13:\"section_title\";a:9:{s:11:\"title_color\";i:4;s:26:\"typography_title_font_size\";i:4;s:33:\"typography_title_font_size_tablet\";i:4;s:28:\"typography_title_font_weight\";i:4;s:28:\"typography_title_line_height\";i:4;s:35:\"typography_title_line_height_tablet\";i:4;s:13:\"spacing_title\";i:4;s:27:\"typography_title_typography\";i:4;s:20:\"spacing_title_tablet\";i:4;}s:21:\"section_number_prefix\";a:3:{s:34:\"typography_number_prefix_font_size\";i:4;s:35:\"typography_number_prefix_typography\";i:4;s:41:\"typography_number_prefix_font_size_tablet\";i:4;}s:21:\"section_number_suffix\";a:3:{s:35:\"typography_number_suffix_typography\";i:4;s:34:\"typography_number_suffix_font_size\";i:4;s:41:\"typography_number_suffix_font_size_tablet\";i:4;}s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:4;s:15:\"_padding_tablet\";i:4;}}}}s:16:\"rentex-post-grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"section_query\";a:2:{s:14:\"posts_per_page\";i:1;s:13:\"column_tablet\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_prev_label\";i:1;s:21:\"pagination_next_label\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),(1355,739,'stm_day_20','6'),(1356,739,'stm_day_21','2'),(1357,739,'stm_day_27','1'),(1358,739,'stm_month_08','1'),(1359,739,'_wxr_import_user_slug','admin'),(1360,754,'inline_featured_image','0'),(1361,754,'inline_featured_image','0'),(1362,754,'slide_template','default'),(1363,754,'rs_page_bg_color','#ffffff'),(1364,754,'_wp_page_template','template-homepage.php'),(1365,754,'_elementor_edit_mode','builder'),(1366,754,'_elementor_template_type','wp-page'),(1367,754,'_elementor_version','2.9.13'),(1368,754,'_elementor_pro_version','2.10.2'),(1369,754,'stm_post_views','158'),(1370,754,'stm_day_4','49'),(1371,754,'stm_month_06','108'),(1372,754,'_elementor_data','[{\"id\":\"e83e389\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":530,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h4_bg-1.jpg\",\"id\":756},\"background_position\":\"center center\",\"background_slideshow_gallery\":[{\"id\":756,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h4_bg-1.jpg\"},{\"id\":605,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/parallax-about.jpg\"},{\"id\":317,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_slideshow_ken_burns_zoom_direction\":\"out\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ced3487\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a3d928f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The #1 Beverly Hills<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"41d4255\",\"elType\":\"widget\",\"settings\":{\"title\":\"Realtor \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d446ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Coldwell Banker Residential Brokerage\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f45d23\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"My Properties\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"fas fa-long-arrow-alt-right\",\"library\":\"fa-solid\"},\"icon_align\":\"right\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b694cd\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e3310d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"b0542fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"about me\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df05d2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Top beverly hills real<br> estate agent\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":390,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2174fe9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5a872fe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e7e51a4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-90\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0ecef84\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.96000000000000085265128291212022304534912109375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":70,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"2fb4fad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hi, I\\u2019m Christian Mills\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3fdc1f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<span style=\\\"color:#f5a44a\\\">Call me:<\\/span> +93 617-251-1149\\nchristianmills@example.com\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_border_color\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2087a52\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"\",\"selected_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"1c356fc\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\",\"selected_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4e168e4\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\",\"selected_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"3706a4c\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"\",\"selected_icon\":{\"value\":\"fab fa-pinterest\",\"library\":\"fa-brands\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"46921fc\"}],\"space_between\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"icon_color\":\"#FFFFFF\",\"icon_color_hover\":\"#FF9933\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4c8bb34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.03999999999999914734871708787977695465087890625,\"space_between_widgets\":0,\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"0efebb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\",\"content_position\":\"bottom\"},\"elements\":[{\"id\":\"2d5d0d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"the<br> <span style=\\\"color:#f5a44a;\\\">$5 billion<\\/span><br> man\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-93\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"65\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":2},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d3c00d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h4_img-1.jpg\",\"id\":792},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18646ed\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"98d9305\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"99947c3\",\"elType\":\"widget\",\"settings\":{\"title\":\"explore\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4082188\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Listings\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d35be6\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-3\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"2\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0242a1f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"00acc2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2529858\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6034fa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc1bfe2\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"69d2537\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"eb4f45c\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":\"#\",\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":\"#\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"style_mobile\":\"1\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e305ab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\"},\"elements\":[{\"id\":\"cd95454\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0, 0, 0, 0.1)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"768f94e\",\"elType\":\"widget\",\"settings\":{\"brands\":[{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-1.png\",\"id\":245},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"a8764fd\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-2.png\",\"id\":246},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"5e2b350\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-3.png\",\"id\":247},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"9f2cbed\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-4.png\",\"id\":248},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"c2c9587\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-5.png\",\"id\":249},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"08552e6\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-6.png\",\"id\":250},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"cccb448\"}],\"column\":\"6\",\"image_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"column_tablet\":\"4\",\"enable_carousel\":\"yes\",\"navigation\":\"none\"},\"elements\":[],\"widgetType\":\"rentex-brand\"}],\"isInner\":false}],\"isInner\":false}]'),(1373,754,'stm_day_5','4'),(1374,754,'stm_day_6','16'),(1375,754,'stm_day_8','14'),(1376,754,'stm_day_10','1'),(1377,754,'stm_day_12','2'),(1378,754,'stm_day_15','2'),(1379,754,'stm_day_16','2'),(1380,754,'stm_day_17','3'),(1381,754,'stm_day_19','3'),(1382,754,'stm_day_22','2'),(1383,754,'stm_day_23','1'),(1384,754,'stm_day_24','8'),(1385,754,'stm_day_25','2'),(1386,754,'stm_day_26','3'),(1387,754,'stm_day_29','3'),(1388,754,'stm_day_30','22'),(1389,754,'stm_day_1','1'),(1390,754,'stm_month_07','49'),(1391,754,'stm_day_2','4'),(1392,754,'stm_day_7','1'),(1393,754,'_elementor_controls_usage','a:11:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:2;s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:25:\"typography_text_transform\";i:1;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:5;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:1;}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:7:\"heading\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:9;s:5:\"align\";i:3;s:11:\"header_size\";i:4;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:9;s:20:\"typography_font_size\";i:9;s:27:\"typography_font_size_tablet\";i:2;s:27:\"typography_font_size_mobile\";i:4;s:25:\"typography_text_transform\";i:5;s:25:\"typography_letter_spacing\";i:1;s:32:\"typography_letter_spacing_tablet\";i:1;s:32:\"typography_letter_spacing_mobile\";i:1;s:22:\"typography_line_height\";i:6;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:9;s:8:\"_padding\";i:4;s:14:\"_margin_tablet\";i:1;s:15:\"_padding_tablet\";i:1;s:8:\"_z_index\";i:1;s:14:\"_margin_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:3;s:17:\"_background_color\";i:3;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:3;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:3;s:21:\"_element_custom_width\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:13:\"selected_icon\";i:1;s:10:\"icon_align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:13:\"border_radius\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:12:\"_inline_size\";i:9;s:21:\"space_between_widgets\";i:9;s:19:\"_inline_size_tablet\";i:6;s:12:\"align_mobile\";i:2;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:5:{s:13:\"border_radius\";i:2;s:20:\"border_radius_mobile\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:5;s:6:\"layout\";i:1;s:3:\"gap\";i:6;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:15:\"column_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:28:\"background_slideshow_gallery\";i:1;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:45:\"background_slideshow_ken_burns_zoom_direction\";i:1;s:16:\"background_color\";i:3;}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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:4;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:2;s:14:\"padding_tablet\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:4:\"view\";i:1;s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:5:{s:23:\"listing_posts_type_list\";i:1;s:21:\"listing_posts_sort_by\";i:1;s:20:\"listing_posts_styles\";i:1;s:22:\"listing_posts_per_page\";i:1;s:26:\"listing_posts_item_columns\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:13:\"ending_number\";i:1;s:5:\"title\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_number\";a:4:{s:12:\"number_color\";i:1;s:28:\"typography_number_typography\";i:1;s:27:\"typography_number_font_size\";i:1;s:29:\"typography_number_line_height\";i:1;}s:13:\"section_title\";a:6:{s:11:\"title_color\";i:1;s:27:\"typography_title_typography\";i:1;s:26:\"typography_title_font_size\";i:1;s:28:\"typography_title_line_height\";i:1;s:31:\"typography_title_text_transform\";i:1;s:28:\"typography_title_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:4:{s:14:\"_element_width\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:6:{s:12:\"testimonials\";i:1;s:22:\"testimonial_image_size\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;s:13:\"column_tablet\";i:1;s:28:\"testimonial_alignment_mobile\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:1:{s:31:\"section_style_testimonial_image\";a:1:{s:19:\"image_margin_tablet\";i:1;}}}}s:12:\"rentex-brand\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:14:\"section_brands\";a:3:{s:6:\"brands\";i:1;s:6:\"column\";i:1;s:13:\"column_tablet\";i:1;}s:24:\"section_carousel_options\";a:2:{s:15:\"enable_carousel\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:1:{s:19:\"style_brand_wrapper\";a:1:{s:13:\"image_opacity\";i:1;}}}}}'),(1394,754,'stm_day_13','3'),(1395,754,'stm_day_14','2'),(1396,754,'stm_day_20','6'),(1397,754,'stm_day_21','3'),(1398,754,'stm_day_27','1'),(1399,754,'stm_month_08','1'),(1400,754,'_wxr_import_user_slug','admin'),(1401,848,'inline_featured_image','0'),(1402,848,'inline_featured_image','0'),(1403,848,'_wp_page_template','template-homepage.php'),(1404,848,'slide_template','default'),(1405,848,'rs_page_bg_color','#ffffff'),(1406,848,'_elementor_edit_mode','builder'),(1407,848,'_elementor_template_type','wp-page'),(1408,848,'_elementor_version','2.9.14'),(1409,848,'_elementor_pro_version','2.10.3'),(1410,848,'stm_post_views','208'),(1411,848,'stm_day_4','1'),(1412,848,'stm_month_06','142'),(1413,848,'stm_day_5','40'),(1414,848,'_elementor_data','[{\"id\":\"fe43aa3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":9},\"elements\":[{\"id\":\"6f8e8f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"af5bd60\",\"elType\":\"widget\",\"settings\":{\"listing_type_list\":\"9\",\"listing_type_layout\":\"ulisting_type_page_layout_10\"},\"elements\":[],\"widgetType\":\"rentex_listing_inventory\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"44f5cb6\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"55\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"z_index\":11,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c92251\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"4a597f7\",\"elType\":\"widget\",\"settings\":{\"listing_search_style\":\"style_2\"},\"elements\":[],\"widgetType\":\"rentext_listing_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ad21355\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"83e014d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"169f9f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Listings\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31119b4\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_category_list\":\"rent\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false},{\"id\":\"fdf2762\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a6c67be\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"12b5928\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"841a17a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured agents\",\"per_page\":\"4\"},\"elements\":[],\"widgetType\":\"rentex_feature_agents\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"0fa7410\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]},\"content_position\":\"bottom\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"fc7dbad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner1-h8.jpg\",\"id\":1405},\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ae8cb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join our<br>\\nreal estate network?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8abb2d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Become an Agent\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"303949c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/parallax-h8.jpg\",\"id\":852},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac5e956\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21b0767\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65034d9\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"61366c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"space-between\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"da51e46\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-search-property\",\"library\":\"rentex-icon\"},\"title_text\":\"Property Finder\",\"description_text\":\"Find your place with our local lifestyle, demographics and market info.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"description_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"9604b3b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Search For Home\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"30\",\"bottom\":\"18\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ce7b0e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"space-between\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":150},\"elements\":[{\"id\":\"0cb6cb1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-agent\",\"library\":\"rentex-icon\"},\"title_text\":\"Property Management\",\"description_text\":\"We\\u2019ll help you find the right home loan at a great rate.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"description_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"49fa5fd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find an Agent\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"30\",\"bottom\":\"18\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"a87f1f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"space-between\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":300},\"elements\":[{\"id\":\"aafe593\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-property\",\"library\":\"rentex-icon\"},\"title_text\":\"Home Valuation \",\"description_text\":\"Track the estimated value of your home and stay in touch with your local market.\",\"position\":\"left\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"description_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"ef91811\",\"elType\":\"widget\",\"settings\":{\"text\":\"Submit Info \",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"30\",\"bottom\":\"18\",\"left\":\"30\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d62cb63\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6094689\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"9ca9098\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dfbef95\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0009b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4175f8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5379238\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"72db92c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"f2b5b9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"381299e\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"#\"},\"_id\":\"5ef4806\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. Ron Perman\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"#\"},\"_id\":\"22a8388\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mrs. Emma Stone\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"#\"},\"_id\":\"934e1dd\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-10.jpg\",\"id\":858}}],\"style\":\"1\",\"column\":\"3\",\"testimonial_alignment\":\"center\",\"enable_carousel\":\"yes\",\"navigation\":\"none\",\"content_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"content_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"name_text_color\":\"#000000\",\"name_text_color_hover\":\"#F5A44A\",\"content_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c8f931\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"5d40fad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#DCDCD7\"},\"elements\":[{\"id\":\"c63617c\",\"elType\":\"widget\",\"settings\":{\"brands\":[{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-1.png\",\"id\":245},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"3bba094\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-2.png\",\"id\":246},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"4ff5422\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-3.png\",\"id\":247},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"a09a7c9\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-4.png\",\"id\":248},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"1ea2efe\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-5.png\",\"id\":249},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"c77fb6f\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-6.png\",\"id\":250},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\"},\"_id\":\"b12f6cd\"}],\"column\":\"6\",\"image_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_tablet\":\"4\",\"enable_carousel\":\"yes\",\"navigation\":\"none\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"rentex-brand\"}],\"isInner\":false}],\"isInner\":false}]'),(1415,848,'stm_day_6','25'),(1416,848,'stm_day_10','1'),(1417,848,'stm_day_11','8'),(1418,848,'stm_day_12','1'),(1419,848,'stm_day_15','9'),(1420,848,'stm_day_16','8'),(1421,848,'stm_day_17','18'),(1422,848,'stm_day_18','1'),(1423,848,'stm_day_19','3'),(1424,848,'stm_day_20','5'),(1425,848,'stm_day_23','13'),(1426,848,'stm_day_24','7'),(1427,848,'stm_day_25','25'),(1428,848,'stm_day_26','2'),(1429,848,'stm_day_29','11'),(1430,848,'stm_day_30','10'),(1431,848,'stm_day_1','2'),(1432,848,'stm_month_07','57'),(1433,848,'stm_day_2','1'),(1434,848,'stm_day_8','5'),(1435,848,'stm_day_13','6'),(1436,848,'stm_day_14','3'),(1437,848,'stm_day_21','2'),(1438,848,'_elementor_controls_usage','a:11:{s:24:\"rentex_listing_inventory\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"inventory_setting\";a:2:{s:17:\"listing_type_list\";i:1;s:19:\"listing_type_layout\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:14;s:21:\"space_between_widgets\";i:14;s:19:\"_inline_size_tablet\";i:2;s:16:\"content_position\";i:3;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:2;s:13:\"margin_mobile\";i:2;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:3;s:18:\"animation_duration\";i:3;s:15:\"animation_delay\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:15:\"stretch_section\";i:7;s:6:\"layout\";i:1;s:3:\"gap\";i:11;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:7;s:7:\"z_index\";i:2;s:7:\"padding\";i:5;s:14:\"padding_mobile\";i:1;s:14:\"padding_tablet\";i:1;}s:19:\"_section_responsive\";a:2:{s:11:\"hide_tablet\";i:1;s:11:\"hide_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:16:\"background_color\";i:1;s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:38:\"background_motion_fx_translateY_effect\";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:22:\"rentext_listing_search\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:1:{s:20:\"listing_search_style\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:5;s:12:\"align_mobile\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:27:\"typography_font_size_mobile\";i:5;s:11:\"title_color\";i:2;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:5;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:8:{s:23:\"listing_posts_type_list\";i:2;s:21:\"listing_category_list\";i:1;s:26:\"listing_posts_item_columns\";i:2;s:21:\"listing_posts_sort_by\";i:1;s:20:\"listing_posts_styles\";i:1;s:18:\"listing_posts_view\";i:1;s:27:\"ulisting_posts_carousel_nav\";i:1;s:28:\"ulisting_posts_carousel_dots\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:21:\"rentex_feature_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:1:{s:8:\"per_page\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:4;s:13:\"selected_icon\";i:3;s:10:\"icon_align\";i:3;s:12:\"align_mobile\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:17:\"button_text_color\";i:4;s:16:\"background_color\";i:4;s:11:\"hover_color\";i:4;s:29:\"button_background_hover_color\";i:4;s:13:\"border_radius\";i:4;s:12:\"text_padding\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_tablet\";i:3;s:14:\"_margin_mobile\";i:3;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:4:{s:13:\"selected_icon\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:8:\"position\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:2:{s:10:\"icon_space\";i:3;s:9:\"icon_size\";i:3;}s:21:\"section_style_content\";a:5:{s:11:\"title_color\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:17:\"description_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;s:21:\"testimonial_alignment\";i:1;}s:24:\"section_carousel_options\";a:2:{s:15:\"enable_carousel\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:3:{s:15:\"content_padding\";i:1;s:22:\"content_padding_tablet\";i:1;s:22:\"content_padding_mobile\";i:1;}s:30:\"section_style_testimonial_name\";a:2:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:12:\"rentex-brand\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_brands\";a:3:{s:6:\"brands\";i:1;s:6:\"column\";i:1;s:13:\"column_tablet\";i:1;}s:24:\"section_carousel_options\";a:2:{s:15:\"enable_carousel\";i:1;s:10:\"navigation\";i:1;}}s:5:\"style\";a:1:{s:19:\"style_brand_wrapper\";a:1:{s:13:\"image_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:1;s:7:\"_margin\";i:1;}}}}}'),(1439,848,'stm_month_08','8'),(1440,848,'_wxr_import_user_slug','admin'),(1441,875,'inline_featured_image','0'),(1442,875,'inline_featured_image','0'),(1443,875,'_wp_page_template','template-homepage.php'),(1444,875,'slide_template','default'),(1445,875,'rs_page_bg_color','#ffffff'),(1446,875,'_elementor_edit_mode','builder'),(1447,875,'_elementor_template_type','wp-page'),(1448,875,'_elementor_version','2.9.13'),(1449,875,'_elementor_pro_version','2.10.2'),(1450,875,'stm_post_views','200'),(1451,875,'stm_day_5','3'),(1452,875,'stm_month_06','124'),(1453,875,'stm_day_6','30'),(1454,875,'_elementor_data','[{\"id\":\"af6ec31\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":620,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h1.jpg\",\"id\":317},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":930,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/slider1-h9.jpg\"},{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":620,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":980,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"75\",\"left\":0,\"isLinked\":false},\"structure\":\"30\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\",\"column_position\":\"bottom\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb4f51c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":34.9609999999999985220711096189916133880615234375,\"space_between_widgets\":0,\"_inline_size_tablet\":45,\"content_position\":\"center\"},\"elements\":[{\"id\":\"52abab7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Search <strong><span style=\\\"color: #f5a44a;\\\">354,128 listings<\\/span><\\/strong><br \\/>from trusted community<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-right\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52a4fdb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For over 20 years we has consistently delivered an unrivalled portfolio of properties to people who want a hassle free moving experience\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-right\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"60a06b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":31.346000000000000085265128291212022304534912109375,\"space_between_widgets\":0,\"_inline_size_tablet\":5},\"elements\":[],\"isInner\":false},{\"id\":\"3ffcbbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"49f3089\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aa3453b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out this form and one of our agents will be in touch with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7b6797b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"yourname\",\"field_type\":\"text\",\"field_label\":\"\",\"placeholder\":\"Your Name\",\"width\":\"100\",\"_id\":\"09523cf\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}},{\"custom_id\":\"youremail\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"a60085a\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}},{\"custom_id\":\"field_a6c298c\",\"field_type\":\"number\",\"required\":\"true\",\"field_label\":\"\",\"placeholder\":\"Your Phone\",\"width\":\"100\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"_id\":\"a6c298c\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_min\":0,\"field_max\":15},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\",\"placeholder\":\"Type message..\",\"width\":\"100\",\"_id\":\"605c3b9\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"mark_required\":\"yes\",\"button_text\":\"Send Message\",\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_text_color\":\"#6A6A6A\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"field_background_color\":\"#FAFAFA\",\"field_border_color\":\"#EBEBEB\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"button_background_color\":\"#F5A44A\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"button_background_hover_color\":\"#FF8000\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df63c0b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"9596fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"149752f\",\"elType\":\"widget\",\"settings\":{\"title\":\"explore properties\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b2e76d8\",\"elType\":\"widget\",\"settings\":{\"title\":\"List by Category\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dee06da\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"b75d5eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6796\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/region1-h9.jpg\",\"id\":1349},\"region_styles\":\"3\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"name_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":false},{\"id\":\"88ec043\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"fdc7a5f\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/region6-h9.jpg\",\"id\":2378},\"region_styles\":\"3\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"name_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"image_bg_normal\":\"rgba(0, 0, 0, 0)\",\"listing_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":false},{\"id\":\"a45008a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"037faae\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/region3-h9.jpg\",\"id\":1353},\"region_styles\":\"3\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"name_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96fe867\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"97dbcfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.5499999999999971578290569595992565155029296875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":66.219999999999998863131622783839702606201171875},\"elements\":[{\"id\":\"c006c9e\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/region4-h9.jpg\",\"id\":1354},\"region_styles\":\"3\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"name_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":false},{\"id\":\"f33a42b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.2999999999999971578290569595992565155029296875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":33.77000000000000312638803734444081783294677734375},\"elements\":[{\"id\":\"32f98b4\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/region7-h9.jpg\",\"id\":2379},\"region_styles\":\"3\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"name_typography_font_weight\":\"500\",\"name_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"image_bg_normal\":\"rgba(0, 0, 0, 0)\",\"listing_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c72e9cd\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image1-h9.jpg\",\"id\":948},\"background_position\":\"top right\",\"background_repeat\":\"no-repeat\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"background_size_mobile\":\"initial\",\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_xpos_tablet\":{\"unit\":\"vw\",\"size\":54,\"sizes\":[]},\"background_size_tablet\":\"initial\",\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f6b95ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.340000000000003410605131648480892181396484375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bd560db\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"100\",\"bottom\":\"75\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"23a261d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"abe95ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c6d25a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our long-standing<br> experience\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"292c7d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c2b233\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"246da09\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\"},\"elements\":[{\"id\":\"2b9e7c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"0e15f0f\",\"elType\":\"widget\",\"settings\":{\"ending_number\":9.4000000000000003552713678800500929355621337890625,\"thousand_separator\":\"\",\"title\":\"\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"prefix\":\"$\",\"description\":\"Billion amount of Real Estate Sold by Rentex Company\",\"typography_number_prefix_typography\":\"custom\",\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"description_color\":\"#000000\",\"typography_description_typography\":\"custom\",\"typography_description_font_weight\":\"500\",\"typography_number_prefix_font_size_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"ba0e756\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":150},\"elements\":[{\"id\":\"6d64b67\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1500,\"thousand_separator\":\"\",\"title\":\"\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"suffix\":\"+\",\"description\":\"New Development Units<br> Exclusively Marketed\",\"typography_number_prefix_typography\":\"custom\",\"typography_number_prefix_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_suffix_typography\":\"custom\",\"typography_number_suffix_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"description_color\":\"#000000\",\"typography_description_typography\":\"custom\",\"typography_description_font_weight\":\"500\",\"typography_number_suffix_font_size_tablet\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e50f274\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.659999999999996589394868351519107818603515625,\"space_between_widgets\":0},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"5449bcc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"1482a3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"b23ec3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"our team\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1315996\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86ddc16\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\"},\"elements\":[{\"id\":\"85a4a3f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"98a2ff1\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"5\",\"show_paginate\":\"\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"2\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1211dfe\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"855f959\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"b4254c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"our package\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"322671f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choose your plans\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0fc5508\",\"elType\":\"widget\",\"settings\":{\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex_pricing_plans\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9a36d40\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/bg1-h7.jpg\",\"id\":1333},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\"},\"elements\":[{\"id\":\"c963848\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39a536d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find Your Perfect Home\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8312a7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Let us help you choose your property<\\/p>\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7a6bb5f\",\"elType\":\"widget\",\"settings\":{\"listing_search_style\":\"style_4\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentext_listing_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41fb48d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2550a14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3914ebd\",\"elType\":\"widget\",\"settings\":{\"title\":\"our blog\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc81bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips and advice\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a3307a9\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":3,\"column_tablet\":\"2\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"enable_carousel\":\"yes\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex-post-grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c079a39\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image1-h7.jpg\",\"id\":795},\"background_repeat\":\"no-repeat\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c1c715\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"2640fd5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Buy or Sell<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f2cc5f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Now more than ever, we understand<br>\\nthe real value of home\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"bold\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"08d84bb\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Submit Property\",\"hover_color\":\"#000000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":30,\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"6ff3652\",\"elType\":\"widget\",\"settings\":{\"text\":\"Browse Properties\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"_animation_delay\":400,\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1455,875,'stm_day_8','24'),(1456,875,'stm_day_10','7'),(1457,875,'stm_day_11','2'),(1458,875,'stm_day_12','1'),(1459,875,'stm_day_15','41'),(1460,875,'stm_day_16','7'),(1461,875,'stm_day_17','9'),(1462,875,'stm_day_19','1'),(1463,875,'stm_day_23','5'),(1464,875,'stm_day_24','13'),(1465,875,'stm_day_25','1'),(1466,875,'stm_day_29','15'),(1467,875,'stm_day_30','4'),(1468,875,'stm_day_1','3'),(1469,875,'stm_month_07','73'),(1470,875,'stm_day_2','1'),(1471,875,'stm_day_3','2'),(1472,875,'stm_day_7','4'),(1473,875,'stm_day_13','11'),(1474,875,'stm_day_14','7'),(1475,875,'_elementor_controls_usage','a:12:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:29:\"typography_line_height_mobile\";i:1;s:5:\"align\";i:2;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:6;s:14:\"_margin_mobile\";i:2;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:4;s:16:\"_animation_delay\";i:1;s:18:\"animation_duration\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:20;s:21:\"space_between_widgets\";i:19;s:19:\"_inline_size_tablet\";i:6;s:16:\"content_position\";i:1;s:5:\"align\";i:4;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:7;s:14:\"padding_mobile\";i:4;s:14:\"padding_tablet\";i:1;s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:3;s:18:\"animation_duration\";i:3;s:15:\"animation_delay\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:13;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:13;s:11:\"header_size\";i:5;s:5:\"align\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:13;s:20:\"typography_font_size\";i:13;s:11:\"title_color\";i:7;s:25:\"typography_text_transform\";i:5;s:22:\"typography_line_height\";i:10;s:27:\"typography_font_size_mobile\";i:7;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:13;s:8:\"_padding\";i:5;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:5;s:17:\"_background_color\";i:5;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:5;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:5;s:21:\"_element_custom_width\";i:3;}s:15:\"section_effects\";a:3:{s:10:\"_animation\";i:6;s:18:\"animation_duration\";i:7;s:16:\"_animation_delay\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_text\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_field_style\";a:7:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_line_height\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:4:{s:23:\"button_background_color\";i:1;s:20:\"button_border_radius\";i:1;s:19:\"button_text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:3:\"gap\";i:13;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:15:\"column_position\";i:1;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:15:{s:21:\"background_background\";i:7;s:16:\"background_image\";i:4;s:28:\"background_slideshow_gallery\";i:1;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:16:\"background_color\";i:2;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:3;s:22:\"background_size_mobile\";i:1;s:26:\"background_bg_width_mobile\";i:1;s:22:\"background_xpos_tablet\";i:1;s:22:\"background_size_tablet\";i:1;s:26:\"background_bg_width_tablet\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:2;s:38:\"background_motion_fx_translateY_effect\";i:2;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_color_b\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:32:\"background_overlay_gradient_type\";i:1;s:26:\"background_overlay_opacity\";i:3;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:3:{s:22:\"motion_fx_scale_effect\";i:1;s:9:\"animation\";i:4;s:18:\"animation_duration\";i:4;}s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:11;s:6:\"margin\";i:7;s:14:\"padding_mobile\";i:3;s:14:\"padding_tablet\";i:5;s:13:\"margin_tablet\";i:3;}}}}s:13:\"rentex-region\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_region\";a:4:{s:12:\"listing_type\";i:5;s:4:\"term\";i:5;s:5:\"image\";i:5;s:13:\"region_styles\";i:5;}}s:5:\"style\";a:3:{s:11:\"rigion_name\";a:4:{s:26:\"name_typography_typography\";i:5;s:25:\"name_typography_font_size\";i:5;s:27:\"name_typography_font_weight\";i:5;s:32:\"name_typography_font_size_tablet\";i:5;}s:12:\"rigion_image\";a:1:{s:15:\"image_bg_normal\";i:2;}s:14:\"rigion_listing\";a:1:{s:18:\"listing_text_color\";i:2;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:6:{s:13:\"ending_number\";i:2;s:18:\"thousand_separator\";i:2;s:5:\"title\";i:2;s:6:\"prefix\";i:1;s:11:\"description\";i:2;s:6:\"suffix\";i:1;}}s:5:\"style\";a:5:{s:14:\"section_number\";a:4:{s:28:\"typography_number_typography\";i:2;s:27:\"typography_number_font_size\";i:2;s:34:\"typography_number_font_size_tablet\";i:2;s:22:\"spacing_number_wrapper\";i:2;}s:13:\"section_title\";a:3:{s:11:\"title_color\";i:2;s:27:\"typography_title_typography\";i:2;s:26:\"typography_title_font_size\";i:2;}s:21:\"section_number_prefix\";a:3:{s:35:\"typography_number_prefix_typography\";i:2;s:34:\"typography_number_prefix_font_size\";i:2;s:41:\"typography_number_prefix_font_size_tablet\";i:1;}s:19:\"section_description\";a:3:{s:17:\"description_color\";i:2;s:33:\"typography_description_typography\";i:2;s:34:\"typography_description_font_weight\";i:2;}s:21:\"section_number_suffix\";a:3:{s:35:\"typography_number_suffix_typography\";i:1;s:34:\"typography_number_suffix_font_size\";i:1;s:41:\"typography_number_suffix_font_size_tablet\";i:1;}}}}s:12:\"rentex_users\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"man_offices_content\";a:3:{s:8:\"per_page\";i:1;s:13:\"show_paginate\";i:1;s:14:\"columns_tablet\";i:1;}s:24:\"section_carousel_options\";a:2:{s:15:\"enable_carousel\";i:1;s:13:\"check_visible\";i:1;}}s:5:\"style\";a:1:{s:20:\"user_content_wrapper\";a:1:{s:21:\"content_border_radius\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:20:\"rentex_pricing_plans\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:13:\"pricing_title\";a:2:{s:26:\"name_typography_typography\";i:1;s:25:\"name_typography_font_size\";i:1;}}}}s:22:\"rentext_listing_search\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:1:{s:20:\"listing_search_style\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:16:\"rentex-post-grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"section_query\";a:2:{s:14:\"posts_per_page\";i:1;s:13:\"column_tablet\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_prev_label\";i:1;s:21:\"pagination_next_label\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:11:\"button_type\";i:1;s:4:\"text\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:11:\"hover_color\";i:2;s:13:\"border_radius\";i:2;s:12:\"text_padding\";i:2;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:16:\"_animation_delay\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:2;}}}}}'),(1476,875,'stm_day_20','4'),(1477,875,'stm_day_21','3'),(1478,875,'stm_day_27','1'),(1479,875,'stm_day_28','1'),(1480,875,'stm_month_08','3'),(1481,875,'_wxr_import_user_slug','admin'),(1482,881,'inline_featured_image','0'),(1483,881,'inline_featured_image','0'),(1484,881,'_wp_page_template','elementor_header_footer'),(1485,881,'slide_template','default'),(1486,881,'rs_page_bg_color','#ffffff'),(1487,881,'_elementor_edit_mode','builder'),(1488,881,'_elementor_template_type','wp-page'),(1489,881,'_elementor_version','2.9.9'),(1490,881,'_elementor_pro_version','2.10.3'),(1491,881,'stm_post_views','942'),(1492,881,'stm_day_5','36'),(1493,881,'stm_month_06','415'),(1494,881,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_play_on_mobile\":\"yes\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Inclusive Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99ccca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class.\\u00a0<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Valued Client\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3974,3209,'_wp_page_template','default'),(3975,3209,'_elementor_edit_mode','builder'),(3976,3209,'_elementor_template_type','wp-page'),(3977,3209,'_elementor_version','2.9.9'),(3978,3209,'_elementor_pro_version','2.10.3'),(3979,3209,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases California\'s Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(3229,2910,'_elementor_pro_version','2.10.3'),(3230,2910,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"latest\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2486,2696,'_wp_page_template','template-homepage.php'),(2479,2695,'_elementor_edit_mode','builder'),(2480,2695,'_elementor_template_type','wp-page'),(2481,2695,'_elementor_version','2.9.9'),(2482,2695,'_elementor_pro_version','2.10.3'),(2483,2695,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/woman-in-infinity-pool-WUKFP3J.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2377,2681,'_wp_page_template','template-homepage.php'),(2378,2681,'_elementor_edit_mode','builder'),(2379,2681,'_elementor_template_type','wp-page'),(2380,2681,'_elementor_version','2.9.9'),(2381,2681,'_elementor_pro_version','2.10.3'),(2382,2681,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2363,2679,'_wp_page_template','template-homepage.php'),(2364,2679,'_elementor_edit_mode','builder'),(2365,2679,'_elementor_template_type','wp-page'),(2366,2679,'_elementor_version','2.9.9'),(2367,2679,'_elementor_pro_version','2.10.3'),(2355,2678,'_wp_page_template','template-homepage.php'),(2356,2678,'_elementor_edit_mode','builder'),(2357,2678,'_elementor_template_type','wp-page'),(2358,2678,'_elementor_version','2.9.9'),(2359,2678,'_elementor_pro_version','2.10.3'),(2360,2678,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"25bc10c\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2327,2673,'_wp_page_template','template-homepage.php'),(2328,2673,'_elementor_edit_mode','builder'),(2329,2673,'_elementor_template_type','wp-page'),(2330,2673,'_elementor_version','2.9.9'),(2331,2673,'_elementor_pro_version','2.10.3');
INSERT INTO `wpew_postmeta` VALUES (2332,2673,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/golden-badge-shield-with-gold-leaves_1017-30512.jpeg\",\"id\":2672}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/golden-badge-shield-with-gold-leaves_1017-30512.jpeg\",\"id\":2672},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/golden-badge-shield-with-gold-leaves_1017-30512.jpeg\",\"id\":2672},\"_id\":\"25bc10c\"},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/golden-badge-shield-with-gold-leaves_1017-30512.jpeg\",\"id\":2672},\"_id\":\"7b779e4\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2320,2671,'_elementor_template_type','wp-page'),(2321,2671,'_elementor_version','2.9.9'),(2255,2663,'_wp_page_template','template-homepage.php'),(2256,2663,'_elementor_edit_mode','builder'),(2257,2663,'_elementor_template_type','wp-page'),(2258,2663,'_elementor_version','2.9.9'),(2259,2663,'_elementor_pro_version','2.10.3'),(2260,2663,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"80b4ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2245,2661,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7464b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-17.jpeg\",\"id\":2652},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"8d27bfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(0, 0, 0, 0.8)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"100\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d49997e\",\"elType\":\"widget\",\"settings\":{\"title\":\"career opportunities\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ed2f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work with us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a3464d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a18beed\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Contact Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"align\":\"center\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"759b97b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbfe81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8645ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a46ae5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(1495,881,'stm_day_6','79'),(1496,881,'stm_day_8','16'),(1497,881,'stm_day_10','2'),(1498,881,'stm_day_12','13'),(1499,881,'stm_day_15','26'),(1500,881,'stm_day_16','13'),(1501,881,'stm_day_17','43'),(1502,881,'stm_day_19','19'),(1503,881,'stm_day_23','74'),(1504,881,'stm_day_24','59'),(1505,881,'stm_day_25','33'),(1506,881,'stm_day_30','41'),(1507,881,'stm_day_1','6'),(1508,881,'stm_month_07','249'),(1509,881,'stm_day_2','17'),(1510,881,'stm_day_7','5'),(1511,881,'stm_day_13','35'),(1512,881,'stm_day_14','204'),(1513,881,'stm_day_20','22'),(1514,881,'stm_day_21','14'),(1515,881,'stm_day_22','23'),(2203,2655,'_wp_page_template','template-homepage.php'),(2204,2655,'_elementor_edit_mode','builder'),(2205,2655,'_elementor_template_type','wp-page'),(2206,2655,'_elementor_version','2.9.13'),(2207,2655,'_elementor_pro_version','2.10.2'),(2208,2655,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"welcome\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experts international property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3b620cf\",\"elType\":\"widget\",\"settings\":{\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"title\":\"Watch Video\",\"icon_font\":\"fa fa-play\",\"video_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"video_width\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_color\":\"#000000\",\"border_video_border\":\"solid\",\"border_video_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"video_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"video_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"7\",\"isLinked\":false},\"video_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_element_width\":\"auto\",\"video_hover_color\":\"#FF9933\",\"title_hover_color\":\"#FF9933\"},\"elements\":[],\"widgetType\":\"rentex-video-popup\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\",\"id\":894},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_shape-1.jpg\",\"id\":901},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7464b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-2.jpg\",\"id\":895},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-3.jpg\",\"id\":896},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_shape-2.jpg\",\"id\":902},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-4.jpg\",\"id\":972},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8d27bfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(0, 0, 0, 0.8)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"100\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d49997e\",\"elType\":\"widget\",\"settings\":{\"title\":\"career opportunities\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ed2f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work with us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a3464d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a18beed\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Contact Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"align\":\"center\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"759b97b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbfe81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8645ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a46ae5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":\"#\",\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":\"#\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f3809d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\"},\"elements\":[{\"id\":\"37a0469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0, 0, 0, 0.1)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dde80e\",\"elType\":\"widget\",\"settings\":{\"brands\":[{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-1.png\",\"id\":245},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"a8764fd\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-2.png\",\"id\":246},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"5e2b350\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-3.png\",\"id\":247},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"9f2cbed\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-4.png\",\"id\":248},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"c2c9587\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-5.png\",\"id\":249},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"08552e6\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-6.png\",\"id\":250},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"cccb448\"}],\"column\":\"6\",\"image_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"column_tablet\":\"4\",\"enable_carousel\":\"yes\",\"navigation\":\"none\"},\"elements\":[],\"widgetType\":\"rentex-brand\"}],\"isInner\":false}],\"isInner\":false}]'),(1517,881,'stm_day_27','13'),(1518,881,'stm_day_29','8'),(1519,881,'stm_month_08','8'),(1520,881,'_wxr_import_user_slug','admin'),(1521,883,'inline_featured_image','0'),(1522,883,'inline_featured_image','0'),(1523,883,'_wp_page_template','template-homepage.php'),(1524,883,'slide_template','default'),(1525,883,'rs_page_bg_color','#ffffff'),(1526,883,'_elementor_edit_mode','builder'),(1527,883,'_elementor_template_type','wp-page'),(1528,883,'_elementor_version','2.9.13'),(1529,883,'_elementor_pro_version','2.10.2'),(1530,883,'stm_post_views','269'),(1531,883,'stm_day_6','143'),(1532,883,'stm_month_06','147'),(1533,883,'_elementor_data','[{\"id\":\"970cfc4\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":510,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h6_bg1.jpg\",\"id\":999},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":999,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h6_bg1.jpg\"},{\"id\":317,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h1.jpg\"}],\"background_slideshow_slide_duration\":700000,\"background_slideshow_ken_burns\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":120,\"spread\":0,\"color\":\"#000000\"},\"box_shadow_box_shadow_position\":\"inset\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"b242f31\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a596b8\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:300;\\\">Discover thousands of <\\/span>real estate listings\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":385,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d722f8\",\"elType\":\"widget\",\"settings\":{\"listing_search_style\":\"style_3\"},\"elements\":[],\"widgetType\":\"rentext_listing_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"945a5e5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]}},\"elements\":[{\"id\":\"c46f68c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"7416e2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Find your city\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dee5038\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Explore our selection of the best places around the world<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"dd91065\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c57ca9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fecfe8d\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-1.jpg\",\"id\":272},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\",\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"92efdc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eea582\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-2.jpg\",\"id\":273},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"abbf1a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"07f6f3a\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-3.jpg\",\"id\":274},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\",\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"f421353\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"align_mobile\":\"center\",\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f785c3\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/h6_find-7.jpg\",\"id\":2041},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"fa96e96\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fe7f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be6e0e1\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-4.jpg\",\"id\":275},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\",\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"63af9b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6b36a3\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-5.jpg\",\"id\":276},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"9228e86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ef38a37\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h1_find-6.jpg\",\"id\":277},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\",\"_element_width_tablet\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"8f8202e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"align_mobile\":\"center\",\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42b5e0b\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/h6_find-8.jpg\",\"id\":2039},\"image_bg_hover\":\"rgba(2, 1, 1, 0.84)\",\"show_region\":\"yes\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2c8d63\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"345cada\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"bd8b9c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7afab1e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Now more than ever, we understand the real value of home\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c4fb86\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b5d88e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"animation_duration\":\"fast\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"096d581\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/wide_range.svg\",\"id\":1042},\"title_text\":\"Wide range of properties\",\"description_text\":\"With over 1 million+ homes for sale available on the website, we can match you with a house you will want to call home.\",\"image_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"2ef60b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find A Home\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"e0b9175\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"animation_duration\":\"fast\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b0dac08\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/financing.svg\",\"id\":1047},\"title_text\":\"Financing made easy\",\"description_text\":\"With 35+ filters and custom keyword search, we can help you easily find a home or apartment for rent that you\'ll love.\",\"image_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1c1704d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find A Rental\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"65d1bd4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"animation_duration\":\"fast\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c06ea03\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/trust.svg\",\"id\":1048},\"title_text\":\"Trust by thousands\",\"description_text\":\"With more neighborhood insights than any other real estate website, we\'ve captured the color and diversity of communities.\",\"image_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":37.39999999999999857891452847979962825775146484375,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"aba2adf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c11721\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7b039d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"7cff00d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"beed977\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Now more than ever, we understand the real value of home\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"378f03d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"1\",\"listing_posts_type_list\":2642,\"listing_category_list\":\"buy\",\"listing_posts_styles\":\"grid-style-7\",\"listing_posts_styles_layout\":\"layout-metro-1\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_item_columns_tablet\":\"1\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"},{\"id\":\"9445272\",\"elType\":\"widget\",\"settings\":{\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\",\"listing_posts_type_list\":2642,\"listing_category_list\":\"buy\",\"ulisting_posts_carousel_nav\":\"false\",\"listing_posts_styles_layout\":\"layout-metro-1\",\"listing_posts_sort_by\":\"popular\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b077553\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":690,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h6_bg2.jpg\",\"id\":1064},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5e0f8ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"5df0d19\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy or Sell\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d26021e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Now more than ever, we understand the real value of home\",\"align\":\"center\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb6bc0d\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Submit Property\",\"align\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"e7ccebc\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Browse Properties\",\"align\":\"justify\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":185,\"sizes\":[]},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0a966e6\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"404cbe0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"bd45a1e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f31d7e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get in touch with our real estate experts.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"863ecbc\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"4\",\"columns_tablet\":\"2\",\"gutter\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_content_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_content_color\":\"#EBEBEB\",\"content_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"show_paginate\":\"\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"553a173\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":630,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"634516d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"334d3d2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"primary_color\":\"#F5A44A\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"b66f4f7\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_icon\":\"fa fa-quote-left\",\"testimonial_title\":\"\",\"testimonial_content\":\"Rentex is worth much more than I paid. It\'s just amazing. I couldn\'t have asked for more than this. I am so pleased with this product.\",\"testimonial_name\":\"Erin Brock\",\"testimonial_job\":\"Corporate communications Executive\",\"_id\":\"8fe30f1\"},{\"testimonial_icon\":\"fa fa-quote-left\",\"testimonial_title\":\"\",\"testimonial_content\":\"I will let my mum know about this, she could really make use of real estate! I wish I would have thought of it first. It fits our needs perfectly. I love real estate.\",\"testimonial_name\":\"Robby O.\",\"testimonial_job\":\"Corporate communications Executive\",\"_id\":\"42833f9\"},{\"testimonial_icon\":\"fa fa-quote-left\",\"testimonial_title\":\"\",\"testimonial_content\":\"Real estate is the most valuable business resource we have EVER purchased. Very easy to use. Real estate has got everything I need.\",\"testimonial_name\":\"Modesty F.\",\"testimonial_job\":\"Corporate communications Executive\",\"_id\":\"f2edbd9\"},{\"testimonial_icon\":\"fa fa-quote-left\",\"testimonial_title\":\"\",\"testimonial_content\":\"I wish I would have thought of it first. Real estate is both attractive and highly adaptable. Nice work on your real estate. Real estate saved my business.\",\"testimonial_name\":\"Smitty N.\",\"testimonial_job\":\"Sale\",\"_id\":\"20483d2\"}],\"icon_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_text_transform\":\"capitalize\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"testimonial_image_size\":\"full\",\"testimonial_alignment\":\"center\",\"style\":\"2\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(1534,883,'stm_day_8','6'),(1535,883,'stm_day_10','2'),(1536,883,'stm_day_12','1'),(1537,883,'stm_day_15','14'),(1538,883,'stm_day_16','2'),(1539,883,'stm_day_17','8'),(1540,883,'stm_day_23','3'),(1541,883,'stm_day_24','1'),(1542,883,'stm_day_25','2'),(1543,883,'stm_day_30','11'),(1544,883,'stm_day_1','34'),(1545,883,'stm_month_07','121'),(1546,883,'stm_day_2','17'),(1547,883,'stm_day_7','1'),(1548,883,'stm_day_13','8'),(1549,883,'stm_day_14','2'),(1550,883,'_elementor_controls_usage','a:12:{s:7:\"heading\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:7;s:12:\"align_mobile\";i:6;s:5:\"align\";i:6;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:6;s:27:\"typography_font_size_mobile\";i:5;s:22:\"typography_line_height\";i:5;s:25:\"typography_text_transform\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:14:\"_margin_tablet\";i:1;}s:17:\"_section_position\";a:3:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;s:21:\"_element_custom_width\";i:1;}s:15:\"section_effects\";a:1:{s:18:\"animation_duration\";i:1;}}}}s:22:\"rentext_listing_search\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:1:{s:20:\"listing_search_style\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:12:\"_inline_size\";i:18;s:21:\"space_between_widgets\";i:18;s:12:\"align_mobile\";i:11;s:19:\"_inline_size_tablet\";i:8;s:12:\"align_tablet\";i:8;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:5:{s:13:\"margin_tablet\";i:4;s:7:\"padding\";i:11;s:14:\"padding_mobile\";i:11;s:13:\"margin_mobile\";i:4;s:14:\"padding_tablet\";i:3;}s:15:\"section_effects\";a:1:{s:18:\"animation_duration\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:7;s:3:\"gap\";i:10;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:3;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:2;s:28:\"background_slideshow_gallery\";i:1;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;s:30:\"box_shadow_box_shadow_position\";i:1;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:1:{s:22:\"motion_fx_scale_effect\";i:1;}s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:7;s:6:\"margin\";i:7;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:4;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:4;s:14:\"_margin_mobile\";i:3;}s:15:\"section_effects\";a:1:{s:18:\"animation_duration\";i:1;}}}}s:13:\"rentex-region\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_region\";a:4:{s:12:\"listing_type\";i:8;s:4:\"term\";i:8;s:5:\"image\";i:8;s:11:\"show_region\";i:8;}}s:5:\"style\";a:1:{s:12:\"rigion_image\";a:1:{s:14:\"image_bg_hover\";i:8;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:2:{s:21:\"_element_width_mobile\";i:8;s:21:\"_element_width_tablet\";i:4;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:4:{s:11:\"image_space\";i:3;s:10:\"image_size\";i:3;s:18:\"image_space_mobile\";i:3;s:18:\"image_space_tablet\";i:3;}s:21:\"section_style_content\";a:6:{s:18:\"title_bottom_space\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:35:\"title_typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:3;}s:17:\"_section_position\";a:3:{s:21:\"_element_width_mobile\";i:3;s:28:\"_element_custom_width_mobile\";i:3;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:5;s:5:\"align\";i:5;s:13:\"selected_icon\";i:3;s:10:\"icon_align\";i:3;s:11:\"button_type\";i:2;s:4:\"size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:17:\"button_text_color\";i:4;s:16:\"background_color\";i:4;s:11:\"hover_color\";i:4;s:13:\"border_radius\";i:2;s:29:\"button_background_hover_color\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_mobile\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:2;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:10:{s:22:\"listing_posts_per_page\";i:2;s:26:\"listing_posts_item_columns\";i:2;s:23:\"listing_posts_type_list\";i:2;s:21:\"listing_category_list\";i:2;s:20:\"listing_posts_styles\";i:1;s:27:\"listing_posts_styles_layout\";i:2;s:18:\"listing_posts_view\";i:2;s:33:\"listing_posts_item_columns_tablet\";i:1;s:27:\"ulisting_posts_carousel_nav\";i:1;s:21:\"listing_posts_sort_by\";i:1;}}}}s:12:\"rentex_users\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"man_offices_content\";a:4:{s:8:\"per_page\";i:1;s:14:\"columns_tablet\";i:1;s:6:\"gutter\";i:1;s:13:\"show_paginate\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:1:{s:20:\"user_content_wrapper\";a:3:{s:20:\"border_content_width\";i:1;s:20:\"border_content_color\";i:1;s:21:\"content_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:14:\"_margin_tablet\";i:1;}s:19:\"_section_background\";a:1:{s:22:\"_background_background\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:4:\"size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:22:\"testimonial_image_size\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:3:{s:31:\"section_style_testimonial_style\";a:4:{s:29:\"content_typography_typography\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_line_height\";i:1;s:15:\"content_spacing\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:26:\"name_typography_typography\";i:1;s:25:\"name_typography_font_size\";i:1;s:30:\"name_typography_text_transform\";i:1;}s:29:\"section_style_testimonial_job\";a:2:{s:25:\"job_typography_typography\";i:1;s:24:\"job_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),(1551,883,'stm_day_20','6'),(1552,883,'stm_day_21','2'),(1553,883,'stm_day_22','2'),(1554,883,'stm_day_27','1'),(1555,883,'stm_day_29','2'),(1556,883,'stm_day_5','1'),(1557,883,'stm_month_08','1'),(1558,883,'_wxr_import_user_slug','admin'),(1559,1019,'_form','<div class=\"form-author-wrap\">\n  <div class=\"form-field\">\n    [text* your-name default:user_display_name placeholder \"Your Name\"]<br>\n  </div>\n\n  <div class=\"form-field\">\n    [email* your-email default:user_email placeholder \"Your Email\"]<br>\n  </div>\n\n  <div class=\"form-field\">\n    [tel* your-phone placeholder \"Your Phone\"]<br>\n  </div>\n\n  <div class=\"form-field\">\n    [textarea your-message x5]<br>\n  </div>\n\n  <div class=\"form-field hidden\">\n    [email* author-email default:shortcode_attr]<be>\n    [textarea information]<br>\n  </div>\n\n  <div class=\"form-submit\">\n    [submit class:btn-block \"Request Details\"]\n  </div>\n\n</div>'),(1560,1019,'_mail',''),(1561,1019,'_mail_2',''),(1562,1019,'_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.\";}'),(1563,1019,'_additional_settings',''),(1564,1019,'_locale','en_US'),(1565,1019,'_wxr_import_user_slug','admin'),(1566,1408,'inline_featured_image','0'),(1567,1408,'inline_featured_image','0'),(1568,1408,'_wp_page_template','template-homepage.php'),(1569,1408,'slide_template','default'),(1570,1408,'rs_page_bg_color','#ffffff'),(1571,1408,'_elementor_edit_mode','builder'),(1572,1408,'_elementor_template_type','wp-page'),(1573,1408,'_elementor_version','2.9.13'),(1574,1408,'_elementor_pro_version','2.10.2'),(1575,1408,'stm_post_views','225'),(1576,1408,'stm_day_16','19'),(1577,1408,'stm_month_06','102'),(1578,1408,'_elementor_data','[{\"id\":\"715b884\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":680,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h1.jpg\",\"id\":317},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_slideshow_gallery\":[{\"id\":1411,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/slider1-h10.jpg\"},{\"id\":930,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/slider1-h9.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"motion_fx_scale_effect\":\"yes\",\"custom_height_tablet\":{\"unit\":\"px\",\"size\":365,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"structure\":\"20\",\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_overlay_gradient_type\":\"radial\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"column_position\":\"bottom\"},\"elements\":[{\"id\":\"00771bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":41.659999999999996589394868351519107818603515625,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"e4cc375\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-6\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"1\",\"listing_posts_item_columns_tablet\":\"1\",\"_element_width_tablet\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false},{\"id\":\"acfe184\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":58.340000000000003410605131648480892181396484375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4ca6de\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1880,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb1c408\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner1-h10.jpg\",\"id\":1415},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner1-h10.jpg\",\"id\":1415},\"background_hover_position\":\"center right\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"90\",\"isLinked\":false},\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"a7bb38c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buy a home\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"08b5385\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With over 1 million+ homes for sale available on the website, we can match you with a house you will want to call home.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b0f6b83\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Find A Home\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3ef80e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner2-h10.jpg\",\"id\":1427},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner2-h10.jpg\",\"id\":1427},\"background_hover_position\":\"center right\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"90\",\"isLinked\":false},\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"20a7e43\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rent a home\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a78aef7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"With 35+ filters and custom keyword search, we can help you easily find a home or apartment for rent that you\'ll love.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ac4495\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Find A Rental\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8be6f40\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner3-h10.jpg\",\"id\":1428},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_hover_background\":\"classic\",\"background_hover_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner3-h10.jpg\",\"id\":1428},\"background_hover_position\":\"center right\",\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.59999999999999997779553950749686919152736663818359375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.8000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"6\",\"bottom\":\"6\",\"left\":\"6\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"90\",\"bottom\":\"80\",\"left\":\"90\",\"isLinked\":false},\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"50\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"animation_delay\":200,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"0b1cac6\",\"elType\":\"widget\",\"settings\":{\"title\":\"See neighborhoods\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a5611a4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"With more neighborhood insights than any other real estate website, we\'ve captured the color and diversity of communities.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"98728c6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Explore by City\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c2fe32\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"aa0a2b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"9d8bcaf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Listings\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d23df20\",\"elType\":\"widget\",\"settings\":{\"listing_tabs\":[{\"tab_title\":\"Studio\",\"tab_icon\":{\"value\":\"rentex-icon- rentex-icon-studio\",\"library\":\"rentex-icon\"},\"listing_posts_type_list\":\"9\",\"listing_posts_sort_by\":\"category\",\"listing_category_list\":\"rent\",\"listing_posts_styles\":\"grid-style-1\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\",\"listing_posts_item_columns_tablet\":2,\"listing_posts_item_columns_mobile\":1,\"_id\":\"6d596dd\"},{\"tab_title\":\"Apartment\",\"tab_icon\":{\"value\":\"rentex-icon- rentex-icon-apartment\",\"library\":\"rentex-icon\"},\"listing_posts_type_list\":\"1598\",\"listing_posts_sort_by\":\"category\",\"listing_category_list\":\"sold\",\"listing_posts_styles\":\"grid-style-1\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\",\"listing_posts_item_columns_tablet\":2,\"listing_posts_item_columns_mobile\":1,\"_id\":\"4426627\"},{\"tab_title\":\"Villa\",\"tab_icon\":{\"value\":\"rentex-icon- rentex-icon-vila\",\"library\":\"rentex-icon\"},\"listing_posts_type_list\":\"1600\",\"listing_posts_sort_by\":\"popular\",\"listing_category_list\":\"buy\",\"listing_posts_styles\":\"grid-style-1\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\",\"listing_posts_item_columns_tablet\":2,\"listing_posts_item_columns_mobile\":1,\"_id\":\"6a5e2c4\"},{\"tab_title\":\"Private House\",\"tab_icon\":{\"value\":\"rentex-icon- rentex-icon-private-house\",\"library\":\"rentex-icon\"},\"listing_posts_type_list\":\"1596\",\"listing_posts_sort_by\":\"category\",\"listing_category_list\":\"rent\",\"listing_posts_styles\":\"grid-style-1\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\",\"listing_posts_item_columns_tablet\":2,\"listing_posts_item_columns_mobile\":1,\"_id\":\"4cc8b0c\"},{\"tab_title\":\"Shop\",\"tab_icon\":{\"value\":\"rentex-icon- rentex-icon-shop-house\",\"library\":\"rentex-icon\"},\"listing_posts_type_list\":\"1604\",\"listing_posts_sort_by\":\"category\",\"listing_category_list\":\"sold\",\"listing_posts_styles\":\"grid-style-1\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\",\"listing_posts_item_columns_tablet\":2,\"listing_posts_item_columns_mobile\":1,\"_id\":\"1f09c47\"}],\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"title_hover_color\":\"#FF9933\"},\"elements\":[],\"widgetType\":\"rentex_listing_tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"90e9214\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d81c000\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a87d6e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"86fdcac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Now more than ever, we understand the real value of home\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cbf09c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"f2a4665\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"animation_duration\":\"fast\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a105fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/wide_range.svg\",\"id\":1042},\"title_text\":\"Wide range of properties\",\"description_text\":\"With over 1 million+ homes for sale available on the website, we can match you with a house you will want to call home.\",\"image_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"b37cf67\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find A Home\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"ca882e0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"animation_duration\":\"fast\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90df67d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/financing.svg\",\"id\":1047},\"title_text\":\"Financing made easy\",\"description_text\":\"With 35+ filters and custom keyword search, we can help you easily find a home or apartment for rent that you\'ll love.\",\"image_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"1d051e8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Find A Rental\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"f4fb08f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"animation_duration\":\"fast\",\"align_mobile\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ca6610\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/trust.svg\",\"id\":1048},\"title_text\":\"Trust by thousands\",\"description_text\":\"With more neighborhood insights than any other real estate website, we\'ve captured the color and diversity of communities.\",\"image_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":37.39999999999999857891452847979962825775146484375,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":312,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"bf2b6e4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn More\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"813ec61\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":630,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h3_bg-1.jpg\",\"id\":442},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"553e47a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"c8b2a23\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"cea4c6a\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_icon\":\"fa fa-quote-left\",\"testimonial_title\":\"\",\"testimonial_content\":\"Rentex is worth much more than I paid. It\'s just amazing. I couldn\'t have asked for more than this. I am so pleased with this product.\",\"testimonial_name\":\"Erin Brock\",\"testimonial_job\":\"Corporate communications Executive\",\"_id\":\"8fe30f1\"}],\"icon_color\":\"#FFFFFF\",\"content_content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"name_text_color\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_text_transform\":\"capitalize\",\"job_text_color\":\"#FFFFFF\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"testimonial_image_size\":\"full\",\"testimonial_alignment\":\"center\",\"style\":\"2\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d8a097a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"8c18a47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"456b6e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips and advice\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0d10c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Keeping our clients, employees, and partners informed is one of our top priorities.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":510,\"sizes\":[]},\"text_color\":\"#6A6A6A\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"247f234\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":3,\"column_tablet\":\"2\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"enable_carousel\":\"yes\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex-post-grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"96bedfd\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner4-h10.jpg\",\"id\":1442},\"background_position\":\"top left\",\"background_repeat\":\"no-repeat\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"animation_duration\":\"fast\"},\"elements\":[{\"id\":\"52cd631\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"100\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":52,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"ed821e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experts in local and<br>\\ninternational property\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc652e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\\n<br><br>\\nOur scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5827518\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us \",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"9d999a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"space_between_widgets\":0,\"_inline_size\":39.2120000000000032969182939268648624420166015625,\"_inline_size_tablet\":44},\"elements\":[{\"id\":\"c36065f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b32a08a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"80\",\"bottom\":\"60\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"464c4e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in touch\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ed26043\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Fill out this form and one of our agents will be in touch with you soon.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b237536\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"yourname\",\"field_type\":\"text\",\"field_label\":\"\",\"placeholder\":\"Your Name\",\"width\":\"100\",\"_id\":\"09523cf\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}},{\"custom_id\":\"youremail\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"a60085a\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}},{\"custom_id\":\"field_a6c298c\",\"field_type\":\"number\",\"required\":\"true\",\"field_label\":\"\",\"placeholder\":\"Your Phone\",\"width\":\"100\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"_id\":\"a6c298c\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_min\":0,\"field_max\":15},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\",\"placeholder\":\"Type message..\",\"width\":\"100\",\"_id\":\"605c3b9\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"mark_required\":\"yes\",\"button_text\":\"Send Message\",\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"field_text_color\":\"#6A6A6A\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"field_background_color\":\"#FAFAFA\",\"field_border_color\":\"#EBEBEB\",\"field_border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"button_background_color\":\"#F5A44A\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"18\",\"bottom\":\"18\",\"left\":\"18\",\"isLinked\":true},\"button_background_hover_color\":\"#FF8000\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1579,1408,'stm_day_17','34'),(1580,1408,'stm_day_18','3'),(1581,1408,'stm_day_19','6'),(1582,1408,'stm_day_20','44'),(1583,1408,'stm_day_23','2'),(1584,1408,'stm_day_24','25'),(1585,1408,'stm_day_25','1'),(1586,1408,'stm_day_29','4'),(1587,1408,'stm_day_30','4'),(1588,1408,'stm_day_1','1'),(1589,1408,'stm_month_07','122'),(1590,1408,'stm_day_2','1'),(1591,1408,'stm_day_6','39'),(1592,1408,'stm_day_7','12'),(1593,1408,'stm_day_8','6'),(1594,1408,'stm_day_13','6'),(1595,1408,'stm_day_14','4'),(1596,1408,'stm_day_15','7'),(1597,1408,'stm_day_21','3'),(1598,1408,'stm_day_22','2'),(1599,1408,'_elementor_controls_usage','a:12:{s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:6:{s:23:\"listing_posts_type_list\";i:1;s:21:\"listing_posts_sort_by\";i:1;s:20:\"listing_posts_styles\";i:1;s:18:\"listing_posts_view\";i:1;s:26:\"listing_posts_item_columns\";i:1;s:33:\"listing_posts_item_columns_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:4:{s:21:\"_element_width_tablet\";i:1;s:21:\"_element_width_mobile\";i:1;s:28:\"_element_custom_width_tablet\";i:1;s:28:\"_element_custom_width_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:12:\"_inline_size\";i:15;s:21:\"space_between_widgets\";i:14;s:19:\"_inline_size_tablet\";i:3;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:10:{s:16:\"background_color\";i:2;s:21:\"background_background\";i:4;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:17:\"background_repeat\";i:3;s:27:\"background_hover_background\";i:3;s:22:\"background_hover_image\";i:3;s:25:\"background_hover_position\";i:3;s:27:\"background_hover_transition\";i:3;s:15:\"background_size\";i:3;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:3;s:35:\"background_overlay_hover_background\";i:3;s:30:\"background_overlay_hover_color\";i:3;s:32:\"background_overlay_hover_opacity\";i:3;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:4;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:3;s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:8;s:14:\"padding_mobile\";i:7;s:13:\"margin_mobile\";i:4;}s:15:\"section_effects\";a:3:{s:9:\"animation\";i:3;s:18:\"animation_duration\";i:6;s:15:\"animation_delay\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:9:{s:15:\"stretch_section\";i:7;s:3:\"gap\";i:9;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_tablet\";i:1;s:15:\"column_position\";i:2;s:13:\"content_width\";i:2;s:6:\"layout\";i:1;s:16:\"content_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:9:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:3;s:28:\"background_slideshow_gallery\";i:1;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:16:\"background_color\";i:3;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:1;s:17:\"background_repeat\";i:2;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_color_b\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:32:\"background_overlay_gradient_type\";i:1;s:26:\"background_overlay_opacity\";i:3;}}s:8:\"advanced\";a:2:{s:15:\"section_effects\";a:2:{s:22:\"motion_fx_scale_effect\";i:1;s:18:\"animation_duration\";i:2;}s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:6;s:6:\"margin\";i:4;s:14:\"padding_tablet\";i:3;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:8;s:5:\"align\";i:5;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:4;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:3;s:27:\"typography_font_size_tablet\";i:4;s:27:\"typography_font_size_mobile\";i:3;s:22:\"typography_line_height\";i:2;s:29:\"typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:8;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:3;s:18:\"animation_duration\";i:4;}s:17:\"_section_position\";a:1:{s:21:\"_element_custom_width\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:5;s:10:\"text_color\";i:5;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:7;s:14:\"_margin_tablet\";i:1;}s:15:\"section_effects\";a:2:{s:18:\"animation_duration\";i:3;s:10:\"_animation\";i:2;}s:17:\"_section_position\";a:1:{s:21:\"_element_custom_width\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:8:{s:11:\"button_type\";i:4;s:4:\"text\";i:7;s:5:\"align\";i:6;s:4:\"size\";i:4;s:13:\"selected_icon\";i:7;s:10:\"icon_align\";i:7;s:11:\"icon_indent\";i:4;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:21:\"typography_typography\";i:7;s:20:\"typography_font_size\";i:7;s:29:\"button_background_hover_color\";i:4;s:13:\"border_radius\";i:4;s:27:\"typography_font_size_tablet\";i:1;s:17:\"button_text_color\";i:3;s:16:\"background_color\";i:3;s:11:\"hover_color\";i:3;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:19:\"rentex_listing_tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:1:{s:12:\"listing_tabs\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:17:\"title_hover_color\";i:1;}}}}s:9:\"image-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:3;s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:4:{s:11:\"image_space\";i:3;s:10:\"image_size\";i:3;s:18:\"image_space_mobile\";i:3;s:18:\"image_space_tablet\";i:3;}s:21:\"section_style_content\";a:6:{s:18:\"title_bottom_space\";i:3;s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:28:\"title_typography_line_height\";i:3;s:35:\"title_typography_line_height_tablet\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:3;}s:17:\"_section_position\";a:3:{s:21:\"_element_width_mobile\";i:3;s:28:\"_element_custom_width_mobile\";i:3;s:21:\"_element_custom_width\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:22:\"testimonial_image_size\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;}}s:5:\"style\";a:3:{s:31:\"section_style_testimonial_style\";a:5:{s:21:\"content_content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_line_height\";i:1;s:15:\"content_spacing\";i:1;}s:30:\"section_style_testimonial_name\";a:4:{s:15:\"name_text_color\";i:1;s:26:\"name_typography_typography\";i:1;s:25:\"name_typography_font_size\";i:1;s:30:\"name_typography_text_transform\";i:1;}s:29:\"section_style_testimonial_job\";a:3:{s:14:\"job_text_color\";i:1;s:25:\"job_typography_typography\";i:1;s:24:\"job_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:16:\"rentex-post-grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"section_query\";a:2:{s:14:\"posts_per_page\";i:1;s:13:\"column_tablet\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_prev_label\";i:1;s:21:\"pagination_next_label\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:13:\"mark_required\";i:1;}s:15:\"section_buttons\";a:1:{s:11:\"button_text\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_field_style\";a:7:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_line_height\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:4:{s:23:\"button_background_color\";i:1;s:20:\"button_border_radius\";i:1;s:19:\"button_text_padding\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}}'),(1600,1408,'stm_day_27','1'),(1601,1408,'stm_day_5','1'),(1602,1408,'stm_month_08','1'),(1603,1408,'_wxr_import_user_slug','admin'),(1604,1591,'inline_featured_image','0'),(1605,1591,'_elementor_edit_mode','builder'),(1606,1591,'_elementor_template_type','page'),(1607,1591,'inline_featured_image','0'),(1608,1591,'_elementor_version','2.9.13'),(1609,1591,'_elementor_pro_version','2.10.2'),(1610,1591,'stm_post_views','6'),(1611,1591,'stm_day_22','4'),(1612,1591,'stm_month_06','5'),(1613,1591,'_wp_page_template','default'),(1614,1591,'_elementor_data','[{\"id\":\"aceea7f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/ldp_bgfooter.jpg\",\"id\":1144},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\"},\"elements\":[{\"id\":\"f2e6180\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"1abf868\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET Rentex TODAY!\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2043db9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lauch your real estate<bR>\\nwebsite now\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3a107b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Purchase Theme\",\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"button_text_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/bit.ly\\/3hBA8XF\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1615,1591,'stm_day_23','1'),(1616,1591,'stm_day_24','1'),(1617,1591,'stm_month_07','1'),(1618,1591,'_elementor_controls_usage','a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_line_height\";i:1;s:29:\"typography_line_height_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:2;s:18:\"animation_duration\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:1;s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:13:\"border_radius\";i:1;s:17:\"button_text_color\";i:1;s:29:\"button_background_hover_color\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;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:1;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:5:{s:15:\"stretch_section\";i:1;s:3:\"gap\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:15:\"column_position\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;}}}}}'),(1619,1591,'_wxr_import_user_slug','admin'),(1620,1771,'inline_featured_image','0'),(1621,1771,'_elementor_edit_mode','builder'),(1622,1771,'_elementor_template_type','page'),(1623,1771,'inline_featured_image','0'),(1624,1771,'_elementor_version','2.9.9'),(1625,1771,'_elementor_pro_version','2.10.3'),(1626,1771,'stm_post_views','62'),(1627,1771,'stm_day_24','34'),(1628,1771,'stm_month_06','47'),(1629,1771,'_wp_page_template','default'),(1630,1771,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/list-your-property\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#C9AA65\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"8b14d3a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terms\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"Access\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\",\"view\":\"inline\",\"divider\":\"yes\",\"divider_color\":\"#9A9A9A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1631,1771,'stm_day_26','1'),(1632,1771,'stm_day_29','1'),(1633,1771,'stm_day_30','1'),(1634,1771,'stm_day_6','3'),(1635,1771,'stm_month_07','10'),(2334,2674,'_elementor_edit_mode','builder'),(2335,2674,'_elementor_template_type','page'),(2336,2674,'_elementor_version','2.9.12'),(2337,2674,'_elementor_pro_version','2.10.2'),(2338,2674,'_wp_page_template','default'),(2339,2674,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#F5A44A\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream home\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you make the dream of new house a reality<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#E7963C\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for sellers<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Let\\u2019s us show you the ropes<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Get Moving\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e70c4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Buy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sell\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Rent\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2020 <a href=\\\"#\\\">Rentex<\\/a>. All Rights Reserved.\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Carefully crafted by <a style=\\\"color: #ffffff;\\\" href=\\\"#\\\">OpalThemes<\\/a>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1637,1771,'stm_day_7','1'),(1638,1771,'stm_day_8','1'),(1639,1771,'stm_day_13','1'),(1640,1771,'stm_day_14','7'),(1641,1771,'stm_day_17','1'),(1642,1771,'_wxr_import_user_slug','admin'),(1643,1839,'inline_featured_image','0'),(1644,1839,'inline_featured_image','0'),(1645,1839,'slide_template','default'),(1646,1839,'rs_page_bg_color','#ffffff'),(1647,1839,'_elementor_edit_mode','builder'),(1648,1839,'_elementor_template_type','wp-page'),(1649,1839,'_elementor_version','2.9.13'),(1650,1839,'_elementor_pro_version','2.10.2'),(1651,1839,'stm_post_views','39'),(1652,1839,'stm_day_25','5'),(1653,1839,'stm_month_06','5'),(1654,1839,'_wp_page_template','default'),(1655,1839,'_elementor_data','[{\"id\":\"5a16566\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"e85c936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81cfea6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"367858b\",\"elType\":\"widget\",\"settings\":{\"user_box_view\":\"list\",\"per_page\":\"6\",\"show_paginate\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false},{\"id\":\"fc57029\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"17b6e1b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]},\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"3743c9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner1-h8.jpg\",\"id\":1405},\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb1addd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join our<br>\\nreal estate network?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6575973\",\"elType\":\"widget\",\"settings\":{\"text\":\"Become an Agent\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"227cc51\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"c673650\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"0d56b9d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured properties\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#F5A44A\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"-20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"624bc15\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"latest\",\"listing_posts_styles\":\"grid-style-3\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"1\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"check_visible\":\"\",\"listing_posts_item_columns_tablet\":\"1\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ccf5614\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]}},\"elements\":[{\"id\":\"0e63d34\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"b615b0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured agents\",\"per_page\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_feature_agents\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1656,1839,'stm_day_6','1'),(1657,1839,'stm_month_07','33'),(1658,1839,'stm_day_7','13'),(1659,1839,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_mobile\";i:2;s:11:\"title_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}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:12:\"rentex_users\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:3:{s:13:\"user_box_view\";i:1;s:8:\"per_page\";i:1;s:13:\"show_paginate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:21:\"space_between_widgets\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:2;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:2;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:1:{s:4:\"text\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:3:\"gap\";i:4;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:16:\"content_position\";i:1;s:13:\"content_width\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:10:{s:23:\"listing_posts_type_list\";i:1;s:21:\"listing_posts_sort_by\";i:1;s:20:\"listing_posts_styles\";i:1;s:18:\"listing_posts_view\";i:1;s:22:\"listing_posts_per_page\";i:1;s:26:\"listing_posts_item_columns\";i:1;s:27:\"ulisting_posts_carousel_nav\";i:1;s:28:\"ulisting_posts_carousel_dots\";i:1;s:13:\"check_visible\";i:1;s:33:\"listing_posts_item_columns_tablet\";i:1;}}}}s:21:\"rentex_feature_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:1:{s:8:\"per_page\";i:1;}}}}}'),(1660,1839,'stm_day_8','4'),(1661,1839,'stm_day_13','3'),(1662,1839,'stm_day_14','8'),(1663,1839,'stm_day_15','2'),(1664,1839,'stm_day_17','1'),(1665,1839,'stm_day_28','1'),(1666,1839,'stm_day_5','1'),(1667,1839,'stm_month_08','1'),(1668,1839,'_wxr_import_user_slug','admin'),(1669,1841,'inline_featured_image','0'),(1670,1841,'inline_featured_image','0'),(1671,1841,'slide_template','default'),(1672,1841,'rs_page_bg_color','#ffffff'),(1673,1841,'_elementor_edit_mode','builder'),(1674,1841,'_elementor_template_type','wp-page'),(1675,1841,'_elementor_version','2.9.12'),(1676,1841,'_elementor_pro_version','2.10.2'),(1677,1841,'stm_post_views','45'),(1678,1841,'stm_day_25','8'),(1679,1841,'stm_month_06','8'),(1680,1841,'_wp_page_template','default'),(1681,1841,'_elementor_data','[{\"id\":\"fea5eb3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ac140d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"92d21a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7482537\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"9\",\"show_paginate\":\"yes\",\"columns\":\"3\",\"columns_tablet\":\"2\",\"columns_mobile\":\"1\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false},{\"id\":\"ce55765\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"09736b6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]},\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"55fc252\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner1-h8.jpg\",\"id\":1405},\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a51a82\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join our<br>\\nreal estate network?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"afd0d76\",\"elType\":\"widget\",\"settings\":{\"text\":\"Become an Agent\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ebba35\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"26442f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"fcbd532\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured properties\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#F5A44A\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"-20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f944c24\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"latest\",\"listing_posts_styles\":\"grid-style-3\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"1\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"check_visible\":\"\",\"listing_posts_item_columns_tablet\":\"1\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"499d989\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]}},\"elements\":[{\"id\":\"089b017\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"b666cbe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured agents\",\"per_page\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_feature_agents\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1682,1841,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_mobile\";i:2;s:11:\"title_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}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:12:\"rentex_users\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:5:{s:8:\"per_page\";i:1;s:13:\"show_paginate\";i:1;s:7:\"columns\";i:1;s:14:\"columns_tablet\";i:1;s:14:\"columns_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:21:\"space_between_widgets\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:1:{s:4:\"text\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:3:\"gap\";i:4;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:16:\"content_position\";i:1;s:13:\"content_width\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:10:{s:23:\"listing_posts_type_list\";i:1;s:21:\"listing_posts_sort_by\";i:1;s:20:\"listing_posts_styles\";i:1;s:18:\"listing_posts_view\";i:1;s:22:\"listing_posts_per_page\";i:1;s:26:\"listing_posts_item_columns\";i:1;s:27:\"ulisting_posts_carousel_nav\";i:1;s:28:\"ulisting_posts_carousel_dots\";i:1;s:13:\"check_visible\";i:1;s:33:\"listing_posts_item_columns_tablet\";i:1;}}}}s:21:\"rentex_feature_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:1:{s:8:\"per_page\";i:1;}}}}}'),(1683,1841,'stm_day_30','2'),(1684,1841,'stm_day_1','2'),(1685,1841,'stm_month_07','35'),(1686,1841,'stm_day_3','2'),(1687,1841,'stm_day_7','4'),(1688,1841,'stm_day_8','3'),(1689,1841,'stm_day_13','2'),(1690,1841,'stm_day_14','15'),(1691,1841,'stm_day_15','2'),(1692,1841,'stm_day_17','2'),(1693,1841,'stm_day_24','1'),(1694,1841,'stm_day_28','1'),(1695,1841,'stm_day_5','1'),(1696,1841,'stm_month_08','1'),(1697,1841,'_wxr_import_user_slug','admin'),(1698,1843,'inline_featured_image','0'),(1699,1843,'inline_featured_image','0'),(1700,1843,'slide_template','default'),(1701,1843,'rs_page_bg_color','#ffffff'),(1702,1843,'_elementor_edit_mode','builder'),(1703,1843,'_elementor_template_type','wp-page'),(1704,1843,'_elementor_version','2.9.12'),(1705,1843,'_elementor_pro_version','2.10.2'),(1706,1843,'stm_post_views','63'),(1707,1843,'stm_day_25','46'),(1708,1843,'stm_month_06','48'),(1709,1843,'_wp_page_template','default'),(1710,1843,'_elementor_data','[{\"id\":\"b81bd19\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"0159e2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.6700000000000017053025658242404460906982421875,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4271d3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Agency\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61e5d7b\",\"elType\":\"widget\",\"settings\":{\"user_box_view\":\"list\",\"user_role\":\"agency\",\"per_page\":\"6\",\"show_paginate\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false},{\"id\":\"e163308\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.3299999999999982946974341757595539093017578125,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6fbe4ce\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":430,\"sizes\":[]},\"content_position\":\"bottom\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"e334fb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/banner1-h8.jpg\",\"id\":1405},\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"a4b5445\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join our<br>\\nreal estate network?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e0644b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Become an Agent\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1a10add\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"4d51241\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FBFBFB\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"1730cf3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured properties\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"-30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_border_color\":\"#F5A44A\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"-20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"326ec65\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"latest\",\"listing_posts_styles\":\"grid-style-3\",\"listing_posts_view\":\"ulisting_posts_carousel rentex-carousel\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"1\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"check_visible\":\"\",\"listing_posts_item_columns_tablet\":\"1\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f46c2be\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":410,\"sizes\":[]}},\"elements\":[{\"id\":\"5d01489\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4428add\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured agents\",\"per_page\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_feature_agents\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1711,1843,'_elementor_controls_usage','a:7:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_mobile\";i:2;s:11:\"title_color\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_mobile\";i:1;}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:12:\"rentex_users\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:4:{s:13:\"user_box_view\";i:1;s:9:\"user_role\";i:1;s:8:\"per_page\";i:1;s:13:\"show_paginate\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:5;s:21:\"space_between_widgets\";i:5;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_mobile\";i:2;s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:17:\"background_repeat\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:1:{s:13:\"border_radius\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:1:{s:4:\"text\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:3:\"gap\";i:4;s:12:\"height_inner\";i:1;s:19:\"custom_height_inner\";i:1;s:16:\"content_position\";i:1;s:13:\"content_width\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:2;s:7:\"padding\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:10:{s:23:\"listing_posts_type_list\";i:1;s:21:\"listing_posts_sort_by\";i:1;s:20:\"listing_posts_styles\";i:1;s:18:\"listing_posts_view\";i:1;s:22:\"listing_posts_per_page\";i:1;s:26:\"listing_posts_item_columns\";i:1;s:27:\"ulisting_posts_carousel_nav\";i:1;s:28:\"ulisting_posts_carousel_dots\";i:1;s:13:\"check_visible\";i:1;s:33:\"listing_posts_item_columns_tablet\";i:1;}}}}s:21:\"rentex_feature_agents\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:1:{s:8:\"per_page\";i:1;}}}}}'),(1712,1843,'stm_day_30','2'),(1713,1843,'stm_day_1','1'),(1714,1843,'stm_month_07','14'),(1715,1843,'stm_day_7','4'),(1716,1843,'stm_day_13','1'),(1717,1843,'stm_day_14','1'),(1718,1843,'stm_day_15','2'),(1719,1843,'stm_day_17','1'),(1720,1843,'stm_day_18','1'),(1721,1843,'stm_day_23','1'),(1722,1843,'stm_day_28','1'),(1723,1843,'stm_day_29','1'),(1724,1843,'stm_day_5','1'),(1725,1843,'stm_month_08','1'),(1726,1843,'_wxr_import_user_slug','admin'),(1727,1963,'inline_featured_image','0'),(1728,1963,'inline_featured_image','0'),(1729,1963,'slide_template','default'),(1730,1963,'rs_page_bg_color','#ffffff'),(1731,1963,'stm_post_views','31'),(1732,1963,'stm_day_30','12'),(1733,1963,'stm_month_06','12'),(1734,1963,'stm_day_2','1'),(1735,1963,'stm_month_07','17'),(1736,1963,'stm_day_7','9'),(1737,1963,'stm_day_8','1'),(1738,1963,'stm_day_14','3'),(1739,1963,'stm_day_17','2'),(1740,1963,'stm_day_18','1'),(1741,1963,'stm_day_28','1'),(1742,1963,'stm_day_5','1'),(1743,1963,'stm_month_08','2'),(1744,1963,'_wxr_import_user_slug','admin'),(1745,2105,'_menu_item_type','post_type'),(1746,2105,'_menu_item_menu_item_parent','612'),(1747,2105,'_menu_item_object_id','625'),(1748,2105,'_menu_item_object','page'),(1749,2105,'_menu_item_target',''),(1750,2105,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1751,2105,'_menu_item_xfn',''),(1752,2105,'_menu_item_url',''),(1753,2105,'_wxr_import_user_slug','admin'),(1754,2127,'_menu_item_type','custom'),(1755,2127,'_menu_item_menu_item_parent','0'),(1756,2127,'_menu_item_object_id','2127'),(1757,2127,'_menu_item_object','custom'),(1758,2127,'_menu_item_target',''),(1759,2127,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1760,2127,'_menu_item_xfn',''),(1761,2127,'_menu_item_url','/'),(1762,2127,'_wxr_import_user_slug','admin'),(1763,2128,'_menu_item_type','custom'),(1764,2128,'_menu_item_menu_item_parent','0'),(1765,2128,'_menu_item_object_id','2128'),(1766,2128,'_menu_item_object','custom'),(1767,2128,'_menu_item_target',''),(1768,2128,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1769,2128,'_menu_item_xfn',''),(1770,2128,'_menu_item_url','/homes-for-sale-featured/'),(1771,2128,'_wxr_import_user_slug','admin'),(1772,2129,'_menu_item_type','custom'),(1773,2129,'_menu_item_menu_item_parent','0'),(1774,2129,'_menu_item_object_id','2129'),(1775,2129,'_menu_item_object','custom'),(1776,2129,'_menu_item_target',''),(1777,2129,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1778,2129,'_menu_item_xfn',''),(1779,2129,'_menu_item_url','#'),(1780,2129,'_wxr_import_user_slug','admin'),(1781,2130,'_menu_item_type','custom'),(1782,2130,'_menu_item_menu_item_parent','2129'),(1783,2130,'_menu_item_object_id','2130'),(1784,2130,'_menu_item_object','custom'),(1785,2130,'_menu_item_target',''),(1786,2130,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1787,2130,'_menu_item_xfn',''),(1788,2130,'_menu_item_url','/homes-for-sale-search/'),(1789,2130,'_wxr_import_user_slug','admin'),(1790,2131,'_menu_item_type','custom'),(1791,2131,'_menu_item_menu_item_parent','2129'),(1792,2131,'_menu_item_object_id','2131'),(1793,2131,'_menu_item_object','custom'),(1794,2131,'_menu_item_target',''),(1795,2131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1796,2131,'_menu_item_xfn',''),(1797,2131,'_menu_item_url','/homes-for-sale-map-search/'),(1798,2131,'_wxr_import_user_slug','admin'),(1799,2132,'_menu_item_type','custom'),(1800,2132,'_menu_item_menu_item_parent','2129'),(1801,2132,'_menu_item_object_id','2132'),(1802,2132,'_menu_item_object','custom'),(1803,2132,'_menu_item_target',''),(1804,2132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1805,2132,'_menu_item_xfn',''),(1806,2132,'_menu_item_url','/open-home-search/'),(1807,2132,'_wxr_import_user_slug','admin'),(1808,2133,'_menu_item_type','custom'),(1809,2133,'_menu_item_menu_item_parent','2129'),(1810,2133,'_menu_item_object_id','2133'),(1811,2133,'_menu_item_object','custom'),(1812,2133,'_menu_item_target',''),(1813,2133,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1814,2133,'_menu_item_xfn',''),(1815,2133,'_menu_item_url','/homes-for-sale-search-advanced/'),(1816,2133,'_wxr_import_user_slug','admin'),(1817,2134,'_menu_item_type','custom'),(1818,2134,'_menu_item_menu_item_parent','0'),(1819,2134,'_menu_item_object_id','2134'),(1820,2134,'_menu_item_object','custom'),(1821,2134,'_menu_item_target',''),(1822,2134,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1823,2134,'_menu_item_xfn',''),(1824,2134,'_menu_item_url','/email-alerts/'),(1825,2134,'_wxr_import_user_slug','admin'),(1826,2135,'_menu_item_type','custom'),(1827,2135,'_menu_item_menu_item_parent','0'),(1828,2135,'_menu_item_object_id','2135'),(1829,2135,'_menu_item_object','custom'),(1830,2135,'_menu_item_target',''),(1831,2135,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1832,2135,'_menu_item_xfn',''),(1833,2135,'_menu_item_url','#'),(1834,2135,'_wxr_import_user_slug','admin'),(1835,2136,'_menu_item_type','custom'),(1836,2136,'_menu_item_menu_item_parent','0'),(1837,2136,'_menu_item_object_id','2136'),(1838,2136,'_menu_item_object','custom'),(1839,2136,'_menu_item_target',''),(1840,2136,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1841,2136,'_menu_item_xfn',''),(1842,2136,'_menu_item_url','#'),(1843,2136,'_wxr_import_user_slug','admin'),(1844,2137,'_menu_item_type','custom'),(1845,2137,'_menu_item_menu_item_parent','2136'),(1846,2137,'_menu_item_object_id','2137'),(1847,2137,'_menu_item_object','custom'),(1848,2137,'_menu_item_target',''),(1849,2137,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1850,2137,'_menu_item_xfn',''),(1851,2137,'_menu_item_url','/property-organizer-login/'),(1852,2137,'_wxr_import_user_slug','admin'),(1853,2138,'_menu_item_type','custom'),(1854,2138,'_menu_item_menu_item_parent','2136'),(1855,2138,'_menu_item_object_id','2138'),(1856,2138,'_menu_item_object','custom'),(1857,2138,'_menu_item_target',''),(1858,2138,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1859,2138,'_menu_item_xfn',''),(1860,2138,'_menu_item_url','/valuation-form/'),(1861,2138,'_wxr_import_user_slug','admin'),(1862,2139,'_menu_item_type','custom'),(1863,2139,'_menu_item_menu_item_parent','0'),(1864,2139,'_menu_item_object_id','2139'),(1865,2139,'_menu_item_object','custom'),(1866,2139,'_menu_item_target',''),(1867,2139,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1868,2139,'_menu_item_xfn',''),(1869,2139,'_menu_item_url','/contact-form/'),(1870,2139,'_wxr_import_user_slug','admin'),(1871,2140,'_menu_item_type','custom'),(1872,2140,'_menu_item_menu_item_parent','0'),(1873,2140,'_menu_item_object_id','2140'),(1874,2140,'_menu_item_object','custom'),(1875,2140,'_menu_item_target',''),(1876,2140,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1877,2140,'_menu_item_xfn',''),(1878,2140,'_menu_item_url','/mortgage-calculator/'),(1879,2140,'_wxr_import_user_slug','admin'),(1880,2141,'inline_featured_image','0'),(1881,2141,'inline_featured_image','0'),(1882,2141,'slide_template','default'),(1883,2141,'rs_page_bg_color','#ffffff'),(1884,2141,'stm_post_views','78'),(1885,2141,'stm_day_4','22'),(1886,2141,'stm_month_07','69'),(1887,2141,'_wp_page_template','template/full-width.php'),(1888,2141,'stm_day_7','17'),(1889,2141,'stm_day_8','20'),(1890,2141,'stm_day_13','1'),(1891,2141,'stm_day_17','2'),(1892,2141,'stm_day_23','5'),(1893,2141,'stm_day_24','2'),(1894,2141,'stm_day_29','1'),(1895,2141,'stm_day_5','1'),(1896,2141,'stm_month_08','10'),(1897,2141,'stm_day_6','5'),(1898,2141,'stm_day_11','4'),(1899,2141,'_wxr_import_user_slug','admin'),(1900,2143,'inline_featured_image','0'),(1901,2143,'inline_featured_image','0'),(1902,2143,'_wp_page_template','template/idx-ihomefinder.php'),(1903,2143,'slide_template','default'),(1904,2143,'rs_page_bg_color','#ffffff'),(1905,2143,'stm_post_views','12'),(1906,2143,'stm_day_4','2'),(1907,2143,'stm_month_07','9'),(1908,2143,'stm_day_6','1'),(1909,2143,'stm_day_7','2'),(1910,2143,'stm_day_8','1'),(1911,2143,'stm_day_13','1'),(1912,2143,'stm_day_17','1'),(1913,2143,'stm_day_23','2'),(1914,2143,'stm_day_5','1'),(1915,2143,'stm_month_08','1'),(1916,2143,'_wxr_import_user_slug','admin'),(1917,2146,'inline_featured_image','0'),(1918,2146,'inline_featured_image','0'),(1919,2146,'slide_template','default'),(1920,2146,'rs_page_bg_color','#ffffff'),(1921,2146,'stm_post_views','54'),(1922,2146,'stm_day_4','17'),(1923,2146,'stm_month_07','49'),(1924,2146,'_wp_page_template','template/idx-ihomefinder.php'),(1925,2146,'stm_day_6','22'),(1926,2146,'stm_day_7','6'),(1927,2146,'stm_day_8','1'),(1928,2146,'stm_day_13','1'),(1929,2146,'stm_day_17','1'),(1930,2146,'stm_day_23','3'),(1931,2146,'stm_day_5','1'),(1932,2146,'stm_month_08','4'),(1933,2146,'stm_day_11','2'),(1934,2146,'_wxr_import_user_slug','admin'),(1935,2149,'inline_featured_image','0'),(1936,2149,'inline_featured_image','0'),(1937,2149,'_wp_page_template','template/idx-ihomefinder.php'),(1938,2149,'slide_template','default'),(1939,2149,'rs_page_bg_color','#ffffff'),(1940,2149,'stm_post_views','12'),(1941,2149,'stm_day_4','1'),(1942,2149,'stm_month_07','10'),(1943,2149,'stm_day_6','3'),(1944,2149,'stm_day_7','1'),(1945,2149,'stm_day_8','2'),(1946,2149,'stm_day_17','1'),(1947,2149,'stm_day_23','2'),(1948,2149,'stm_day_5','1'),(1949,2149,'stm_month_08','1'),(1950,2149,'_wxr_import_user_slug','admin'),(1951,2152,'inline_featured_image','0'),(1952,2152,'inline_featured_image','0'),(1953,2152,'_wp_page_template','template/idx-ihomefinder.php'),(1954,2152,'slide_template','default'),(1955,2152,'rs_page_bg_color','#ffffff'),(1956,2152,'stm_post_views','10'),(1957,2152,'stm_day_4','1'),(1958,2152,'stm_month_07','9'),(1959,2152,'stm_day_7','2'),(1960,2152,'stm_day_8','2'),(1961,2152,'stm_day_15','1'),(1962,2152,'stm_day_17','1'),(1963,2152,'stm_day_23','2'),(1964,2152,'stm_day_5','1'),(1965,2152,'stm_month_08','1'),(1966,2152,'_wxr_import_user_slug','admin'),(1967,2154,'inline_featured_image','0'),(1968,2154,'inline_featured_image','0'),(1969,2154,'slide_template','default'),(1970,2154,'rs_page_bg_color','#ffffff'),(1971,2154,'_wp_page_template','template/idx-ihomefinder.php'),(1972,2154,'stm_post_views','8'),(1973,2154,'stm_day_4','2'),(1974,2154,'stm_month_07','7'),(1975,2154,'stm_day_6','1'),(1976,2154,'stm_day_7','1'),(1977,2154,'stm_day_17','1'),(1978,2154,'stm_day_23','1'),(1979,2154,'stm_day_29','1'),(1980,2154,'stm_day_5','1'),(1981,2154,'stm_month_08','1'),(1982,2154,'_wxr_import_user_slug','admin'),(1983,2157,'inline_featured_image','0'),(1984,2157,'inline_featured_image','0'),(1985,2157,'_wp_page_template','template/idx-ihomefinder.php'),(1986,2157,'slide_template','default'),(1987,2157,'rs_page_bg_color','#ffffff'),(1988,2157,'stm_post_views','12'),(1989,2157,'stm_day_4','1'),(1990,2157,'stm_month_07','11'),(1991,2157,'stm_day_6','1'),(1992,2157,'stm_day_7','2'),(1993,2157,'stm_day_8','5'),(1994,2157,'stm_day_17','1'),(1995,2157,'stm_day_23','1'),(1996,2157,'stm_day_5','1'),(1997,2157,'stm_month_08','1'),(1998,2157,'_wxr_import_user_slug','admin'),(1999,2393,'inline_featured_image','0'),(2000,2393,'_elementor_edit_mode','builder'),(2001,2393,'_elementor_template_type','section'),(2002,2393,'inline_featured_image','0'),(2003,2393,'_elementor_version','2.9.13'),(2004,2393,'_elementor_pro_version','2.10.2'),(2005,2393,'stm_post_views','5'),(2006,2393,'stm_day_14','4'),(2007,2393,'stm_month_07','4'),(2008,2393,'_wp_page_template','default'),(2009,2393,'_elementor_data','[{\"id\":\"803e330\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"12a7ed9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"be5a7e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why choose us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8adcb24\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Progressively repurpose superior technologies after best-of-breed collaboration and<br> idea-sharing. \",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8254c36\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"554e9eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a40108e\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Real estate appraisal\",\"description_text\":\"For over 20 years we has consistently delivered an unrivalled portfolio of properties to people who want a hassle free moving experience\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-home\",\"library\":\"rentex-icon\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"d4532e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"d6e7694\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Premium quality\",\"description_text\":\"We are a \\u201csafe agent\\u201d and a member of the \\u201cmy deposits\\u201d protected deposit scheme too, all of which gives you complete peace of mind.\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-user-friends\",\"library\":\"rentex-icon\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"0933c61\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"6ff4636\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Friendly customer support\",\"description_text\":\"Each member of our team is very experienced in the market and has exceptional local knowledge\",\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-user-headset\",\"library\":\"rentex-icon\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2010,2393,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:1:{s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:8:\"icon-box\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:3:{s:10:\"title_text\";i:3;s:16:\"description_text\";i:3;s:13:\"selected_icon\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_style_icon\";a:1:{s:10:\"icon_space\";i:3;}s:21:\"section_style_content\";a:5:{s:27:\"title_typography_typography\";i:3;s:26:\"title_typography_font_size\";i:3;s:28:\"title_typography_font_weight\";i:3;s:18:\"title_bottom_space\";i:3;s:32:\"description_typography_font_size\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:3;s:15:\"_padding_tablet\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;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:4;s:21:\"space_between_widgets\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:3:{s:6:\"layout\";i:1;s:3:\"gap\";i:2;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;s:13:\"margin_mobile\";i:1;}}}}}'),(2011,2393,'stm_day_16','1'),(2012,2393,'_wxr_import_user_slug','admin'),(2013,2450,'inline_featured_image','0'),(2014,2450,'inline_featured_image','0'),(2015,2450,'slide_template','default'),(2016,2450,'rs_page_bg_color','#ffffff'),(2017,2450,'_elementor_edit_mode','builder'),(2018,2450,'_elementor_template_type','wp-page'),(2019,2450,'_elementor_version','2.9.13'),(2020,2450,'_elementor_pro_version','2.10.2'),(2021,2450,'stm_post_views','16'),(2022,2450,'stm_day_17','16'),(2023,2450,'stm_month_07','16'),(2024,2450,'_wp_page_template','default'),(2025,2450,'_elementor_data','[{\"id\":\"504ed4d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/listing_type-6.jpg\",\"id\":1588},\"section_parallax_on\":\"yes\"},\"elements\":[{\"id\":\"8960934\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"db5ece0\",\"elType\":\"widget\",\"settings\":{\"service_items\":[{\"title\":\"Service title\",\"_id\":\"e6f1476\",\"label\":\"SERVICE\",\"description\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Learn More\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"}},{\"label\":\"SERVICE\",\"title\":\"Service title\",\"description\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"button_text\":\"Learn More\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\",\"id\":\"\"},\"_id\":\"892233a\"}]},\"elements\":[],\"widgetType\":\"rentex-services\"}],\"isInner\":false}],\"isInner\":false}]'),(2026,2450,'_elementor_controls_usage','a:3:{s:15:\"rentex-services\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:16:\"services_content\";a:1:{s:13:\"service_items\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;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:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"section_parallax_on\";i:1;}}}}}'),(2027,2450,'_wxr_import_user_slug','admin'),(2028,2475,'inline_featured_image','0'),(2029,2475,'_elementor_edit_mode','builder'),(2030,2475,'_elementor_template_type','page'),(2031,2475,'inline_featured_image','0'),(2032,2475,'_elementor_version','2.9.13'),(2033,2475,'_elementor_pro_version','2.10.2'),(2034,2475,'_wp_page_template','default'),(2035,2475,'_elementor_data','[{\"id\":\"79504c97\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":397,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/revslider-h3.jpg\"},{\"id\":852,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/parallax-h8.jpg\"}],\"background_slideshow_slide_duration\":90000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_slideshow_ken_burns_zoom_direction\":\"out\",\"background_slideshow_transition_duration\":100},\"elements\":[{\"id\":\"71a8840b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"541ff5ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Luxury\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"743dd8fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Villas\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357bad1f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"948 Simons Hollow road\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2abdec6b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57183246\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"75857233\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"36ff1c67\",\"elType\":\"widget\",\"settings\":{\"listing_search_style\":\"style_2\",\"listing_search_color\":\"dark\"},\"elements\":[],\"widgetType\":\"rentext_listing_search\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60440624\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"720c1176\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"227ffe7b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rentex services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f6ce442\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With unrivaled reach, our divisions and affiliates offer industry-leading knowledge and expertise.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":510,\"sizes\":[]},\"text_color\":\"#6A6A6A\",\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f6091f3\",\"elType\":\"widget\",\"settings\":{\"rev_alias\":\"service\"},\"elements\":[],\"widgetType\":\"rentex-revslider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1476788c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6874c586\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4358d423\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore properties\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11f78206\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With over 1 million+ homes for sale available on the website, we can match you with a house you will want to call home.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":580,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72406a72\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"40\",\"animation\":\"opal-move-up\"},\"elements\":[{\"id\":\"d57b1a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"51cb9575\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-1.jpg\",\"id\":1888},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"},{\"id\":\"61a33313\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-2.jpg\",\"id\":1889},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"78f8e54e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"align_mobile\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5ea228b1\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"image_bg_normal\":\"rgba(0, 0, 0, 0)\",\"listing_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"rentex-region\"},{\"id\":\"28f0c865\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-3.jpg\",\"id\":1890},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"58c2ea47\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"align_tablet\":\"flex-end\",\"align_mobile\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78448ff5\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-4.jpg\",\"id\":1891},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true},{\"id\":\"1f990416\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"6b6bb48b\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"23\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"rentex-region\"},{\"id\":\"35a924b\",\"elType\":\"widget\",\"settings\":{\"listing_type\":2642,\"term\":14,\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-7..jpg\",\"id\":2373},\"_element_width_mobile\":\"auto\",\"region_styles\":\"2\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"image_bg_normal\":\"rgba(0, 0, 0, 0)\",\"listing_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"rentex-region\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"299cd2d5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"5702f33e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"2122be46\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Listings\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ea22fdc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Take a deep dive and browse new projects everyday.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":510,\"sizes\":[]},\"text_color\":\"#6A6A6A\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1770e223\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"latest\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"},{\"id\":\"1c182bc6\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"View More\",\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"64bb0e4e\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":630,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h3_bg-1.jpg\",\"id\":442},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.299999999999999988897769753748434595763683319091796875,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"animation_duration\":\"fast\",\"background_position_mobile\":\"center left\",\"background_position_tablet\":\"center left\"},\"elements\":[{\"id\":\"4a4055cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3eb86411\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"primary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"313dd800\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_icon\":\"fa fa-quote-left\",\"testimonial_title\":\"\",\"testimonial_content\":\"Rentex is worth much more than I paid. It\'s just amazing. I couldn\'t have asked for more than this. I am so pleased with this product.\",\"testimonial_name\":\"Erin Brock\",\"testimonial_job\":\"Corporate communications Executive\",\"_id\":\"8fe30f1\"}],\"icon_color\":\"#FFFFFF\",\"content_content_color\":\"#FFFFFF\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"content_spacing\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"name_text_color\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_text_transform\":\"capitalize\",\"job_text_color\":\"#FFFFFF\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"testimonial_image_size\":\"full\",\"testimonial_alignment\":\"center\",\"style\":\"2\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fdae16c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"16cf420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"52495943\",\"elType\":\"widget\",\"settings\":{\"title\":\"Tips and advice\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"747d50ac\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Keeping our clients, employees, and partners informed is one of our top priorities.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":510,\"sizes\":[]},\"text_color\":\"#6A6A6A\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"749354ae\",\"elType\":\"widget\",\"settings\":{\"posts_per_page\":3,\"column_tablet\":\"2\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"enable_carousel\":\"yes\",\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"rentex-post-grid\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"556c9938\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":630,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h3_bg-2.jpg\",\"id\":452},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"30\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"4df6987a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"2f1eba2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Market your property with us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5898a4f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With over 160 years of experience, more than 130 UK offices, and thousands of potential buyers and tenants on our database, we\'ll make sure your property gets in front of the right people.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3687edfc\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Arrange A Valuation\",\"align\":\"center\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_animation\":\"opal-move-up\",\"animation_duration\":\"fast\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(2036,2475,'_elementor_controls_usage','a:12:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:5:\"align\";i:7;s:10:\"text_color\";i:6;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:7;s:15:\"_padding_mobile\";i:1;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:2;s:21:\"_element_custom_width\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:18:\"animation_duration\";i:5;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:6;s:5:\"align\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:6;s:25:\"typography_text_transform\";i:1;s:25:\"typography_letter_spacing\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:6;s:32:\"typography_letter_spacing_tablet\";i:1;s:32:\"typography_letter_spacing_mobile\";i:1;s:22:\"typography_line_height\";i:4;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:6;s:15:\"_padding_mobile\";i:1;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:1:{s:21:\"_element_custom_width\";i:4;}s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:5;s:18:\"animation_duration\";i:5;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:3;s:5:\"align\";i:3;s:4:\"size\";i:3;s:13:\"selected_icon\";i:3;s:10:\"icon_align\";i:3;s:4:\"link\";i:1;s:11:\"button_type\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:3;s:13:\"border_radius\";i:3;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:12:\"_inline_size\";i:12;s:21:\"space_between_widgets\";i:12;s:5:\"align\";i:4;s:19:\"_inline_size_tablet\";i:4;s:12:\"align_tablet\";i:2;s:12:\"align_mobile\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:4;s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:8;s:3:\"gap\";i:9;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:1;s:13:\"content_width\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:13:{s:21:\"background_background\";i:8;s:16:\"background_image\";i:3;s:28:\"background_slideshow_gallery\";i:1;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:45:\"background_slideshow_ken_burns_zoom_direction\";i:1;s:40:\"background_slideshow_transition_duration\";i:1;s:16:\"background_color\";i:5;s:19:\"background_position\";i:2;s:21:\"background_attachment\";i:2;s:17:\"background_repeat\";i:2;s:26:\"background_position_mobile\";i:1;s:26:\"background_position_tablet\";i:1;}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:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:8;s:14:\"padding_tablet\";i:7;s:14:\"padding_mobile\";i:2;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:22:\"rentext_listing_search\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:2:{s:20:\"listing_search_style\";i:1;s:20:\"listing_search_color\";i:1;}}}}s:16:\"rentex-revslider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:10:\"rev_slider\";a:1:{s:9:\"rev_alias\";i:1;}}}}s:13:\"rentex-region\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_region\";a:4:{s:12:\"listing_type\";i:7;s:4:\"term\";i:7;s:5:\"image\";i:7;s:13:\"region_styles\";i:7;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:3:{s:21:\"_element_width_mobile\";i:7;s:14:\"_element_width\";i:7;s:21:\"_element_custom_width\";i:7;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}s:5:\"style\";a:2:{s:12:\"rigion_image\";a:1:{s:15:\"image_bg_normal\";i:2;}s:14:\"rigion_listing\";a:1:{s:18:\"listing_text_color\";i:2;}}}}s:20:\"rentex_listing_posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:4:{s:23:\"listing_posts_type_list\";i:1;s:21:\"listing_posts_sort_by\";i:1;s:22:\"listing_posts_per_page\";i:1;s:26:\"listing_posts_item_columns\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:1:{s:13:\"primary_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:22:\"testimonial_image_size\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;}}s:5:\"style\";a:3:{s:31:\"section_style_testimonial_style\";a:5:{s:21:\"content_content_color\";i:1;s:29:\"content_typography_typography\";i:1;s:28:\"content_typography_font_size\";i:1;s:30:\"content_typography_line_height\";i:1;s:15:\"content_spacing\";i:1;}s:30:\"section_style_testimonial_name\";a:4:{s:15:\"name_text_color\";i:1;s:26:\"name_typography_typography\";i:1;s:25:\"name_typography_font_size\";i:1;s:30:\"name_typography_text_transform\";i:1;}s:29:\"section_style_testimonial_job\";a:3:{s:14:\"job_text_color\";i:1;s:25:\"job_typography_typography\";i:1;s:24:\"job_typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}s:16:\"rentex-post-grid\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:3:{s:13:\"section_query\";a:2:{s:14:\"posts_per_page\";i:1;s:13:\"column_tablet\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_prev_label\";i:1;s:21:\"pagination_next_label\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:8:\"advanced\";a:1:{s:15:\"section_effects\";a:2:{s:10:\"_animation\";i:1;s:18:\"animation_duration\";i:1;}}}}}'),(2037,2475,'stm_post_views','12'),(2038,2475,'stm_day_17','4'),(2039,2475,'stm_month_07','7'),(2040,2475,'stm_day_20','1'),(2041,2475,'stm_day_22','1'),(2042,2475,'stm_day_29','1'),(2043,2475,'_wxr_import_user_slug','admin'),(2044,2519,'_wp_attached_file','2020/07/h1_find-7.jpg'),(2045,2519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/07/h1_find-7.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-7-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h1_find-7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h1_find-7-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;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:{}}}'),(2046,2519,'_typist_tech_image_optimized','1'),(2047,2519,'_wxr_import_user_slug','admin'),(2048,2520,'_wp_attached_file','2020/07/h1_find-8.jpg'),(2049,2520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:110;s:4:\"file\";s:21:\"2020/07/h1_find-8.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-8-150x110.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:110;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"h1_find-8-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"h1_find-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"h1_find-8-290x110.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:110;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:{}}}'),(2050,2520,'_typist_tech_image_optimized','1'),(2051,2520,'_wxr_import_user_slug','admin'),(2052,2584,'_menu_item_type','custom'),(2053,2584,'_menu_item_menu_item_parent','0'),(2054,2584,'_menu_item_object_id','2584'),(2055,2584,'_menu_item_object','custom'),(2056,2584,'_menu_item_target',''),(2057,2584,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2058,2584,'_menu_item_xfn',''),(2059,2584,'_menu_item_url','#'),(2060,2584,'_wxr_import_user_slug','admin'),(2061,2585,'_menu_item_type','custom'),(2062,2585,'_menu_item_menu_item_parent','0'),(2063,2585,'_menu_item_object_id','2585'),(2064,2585,'_menu_item_object','custom'),(2065,2585,'_menu_item_target',''),(2066,2585,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2067,2585,'_menu_item_xfn',''),(2068,2585,'_menu_item_url','#'),(2069,2585,'_wxr_import_user_slug','admin'),(2070,2638,'_menu_item_type','custom'),(2071,2638,'_menu_item_menu_item_parent','2584'),(2072,2638,'_menu_item_object_id','2638'),(2073,2638,'_menu_item_object','custom'),(2074,2638,'_menu_item_target',''),(2075,2638,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2076,2638,'_menu_item_xfn',''),(2077,2638,'_menu_item_url','/rentex-listing-type/'),(2078,2638,'_wxr_import_user_slug','admin'),(2079,2639,'_menu_item_type','custom'),(2080,2639,'_menu_item_menu_item_parent','2585'),(2081,2639,'_menu_item_object_id','2639'),(2082,2639,'_menu_item_object','custom'),(2083,2639,'_menu_item_target',''),(2084,2639,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2085,2639,'_menu_item_xfn',''),(2086,2639,'_menu_item_url','/agents-grid/'),(2087,2639,'_wxr_import_user_slug','admin'),(2088,2640,'_menu_item_type','custom'),(2089,2640,'_menu_item_menu_item_parent','2585'),(2090,2640,'_menu_item_object_id','2640'),(2091,2640,'_menu_item_object','custom'),(2092,2640,'_menu_item_target',''),(2093,2640,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2094,2640,'_menu_item_xfn',''),(2095,2640,'_menu_item_url','/agents-list/'),(2096,2640,'_wxr_import_user_slug','admin'),(2097,2641,'_menu_item_type','custom'),(2098,2641,'_menu_item_menu_item_parent','2585'),(2099,2641,'_menu_item_object_id','2641'),(2100,2641,'_menu_item_object','custom'),(2101,2641,'_menu_item_target',''),(2102,2641,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2103,2641,'_menu_item_xfn',''),(2104,2641,'_menu_item_url','/author/rentex-agent/'),(2105,2641,'_wxr_import_user_slug','admin'),(3435,3003,'_wp_attached_file','2021/05/1.jpg'),(3436,3003,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:13:\"2021/05/1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-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:14:\"1-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:13:\"1-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:13:\"1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"1.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546973440\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:1:\"5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3437,3004,'_wp_attached_file','2021/05/2.jpg'),(3438,3004,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:13:\"2021/05/2.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-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:14:\"2-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:13:\"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:13:\"2-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:15:\"2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"2.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546973689\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:1:\"8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3439,3005,'_wp_attached_file','2021/05/3.jpg'),(3440,3005,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:13:\"2021/05/3.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-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:14:\"3-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:13:\"3-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:13:\"3-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:15:\"3-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"3.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546966208\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2115,2642,'ulisting_ulisting_single_page_layout_0_element_data','[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"24\"}},{\"id\":\"10_1592468505646\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"560_1592468509097\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"700_1592468513248\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_2\",\"margin\":{\"extra_large\":{\"top\":\"10\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"440_1592468585259\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"150_1592468591070\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"160_1592468600597\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"520_1592468617389\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\",\"padding\":{\"extra_large\":{\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}}]'),(2116,2642,'ulisting_single_page_layout_1','{\"name\":\"Layout 2\",\"section\":[{\"id\":\"520_1590997366336\",\"title\":\"Section\",\"rows\":[{\"id\":\"780_1590997366336\",\"title\":\"Row\",\"columns\":[{\"id\":\"720_1590997366336\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_2\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"full_width\":1}},{\"id\":\"720_1590997398096\",\"title\":\"Section\",\"rows\":[{\"id\":\"200_1590997398097\",\"title\":\"Row\",\"columns\":[{\"id\":\"790_1590997398097\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"480_1590739680656\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"1000_1590739680656\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"24\"}},{\"id\":\"790_1592626070495\",\"title\":\"Vertical Lines\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_lines\",\"params\":{\"template_path\":\"builder/attribute/vertical-line\",\"type\":\"element\",\"class\":\"rentex-vertical-line\"}},{\"id\":\"950_1592468910913\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"880_1592468957867\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"990_1592468959781\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}}],\"params\":{\"id\":\"\",\"class\":\"rentex-meta-extra\",\"background_color\":\"\",\"size\":{\"extra_large\":\"6\",\"large\":\"6\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"flex-start\",\"medium\":\"flex-start\",\"small\":\"flex-start\",\"extra_small\":\"flex-start\"},\"flex_direction\":{\"extra_large\":\"row\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"-15\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"470_1590739690916\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"130_1590739664073\",\"title\":\"Tab Heading\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"params\":{\"template_path\":\"builder/attribute/tab-heading\",\"type\":\"element\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"6\",\"large\":\"6\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex_direction\":{\"extra_large\":\"row\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"values\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"-60\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"position\":{\"extra_large\":\"none\",\"large\":\"none\",\"medium\":\"absolute\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"60\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"-10\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"480_1590997388098\",\"title\":\"Section\",\"rows\":[{\"id\":\"80_1590997388098\",\"title\":\"Row\",\"columns\":[{\"id\":\"830_1590997388098\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"730_1590997177528\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"15\",\"right\":\"\",\"bottom\":\"15\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"full_width\":1}},{\"id\":\"820_1553249009531\",\"title\":\"Section\",\"rows\":[{\"id\":\"350_1553249009531\",\"title\":\"Row\",\"columns\":[{\"id\":\"490_1553249009531\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"860_1590569932340\",\"title\":\"Top bar\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"single_inventory_top_bar\",\"params\":{\"template_path\":\"listing-single/item-meta/style_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"610_1590636029251\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"530_1590636029251\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"210_1592560845581\",\"title\":\"Address\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"rentex_address\",\"params\":{\"template_path\":\"builder/attribute/address\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"}}},{\"id\":\"750_1590636089219\",\"title\":\"Column\",\"number\":0,\"elements\":[],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#FFFFFF\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"25\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":0}},{\"id\":\"160_1553249663085\",\"title\":\"Section\",\"rows\":[{\"id\":\"30_1553249663085\",\"title\":\"Row\",\"columns\":[{\"id\":\"690_1553249663085\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"250_1590740301068\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"230_1590740301068\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"170_1590976288150\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"750_1590976288150\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"50_1590985062908\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Description\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"530_1590976312593\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"10_1590976312594\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"310_1590740341205\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"<h4 style=u0022font-size:18px;margin:0;padding-bottom:10px;u0022>Property Detail</h4>\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"Title\",\"background_color\":\"#F8F8F5\",\"padding\":{\"extra_large\":{\"top\":\"30\",\"right\":\"50\",\"bottom\":\"\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"30\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"20\",\"right\":\"20\",\"bottom\":\"\",\"left\":\"20\"}}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"200_1590740402940\",\"title\":\"Attribute Box\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"attribute-box\",\"field_group\":\"attribute-box\",\"elements\":[{\"id\":\"840_1592468997416\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"400_1592469006549\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"530_1592469025801\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"10_1592469032683\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"type\":\"attribute-box\",\"class\":\"ulisting-attribute-box\",\"column\":3,\"attribute_style\":0,\"style_template\":\"ulisting_style_1\",\"background_color\":\"#F8F8F5\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\"}}}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"listing-item-box\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"730_1590976529171\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"620_1590976529171\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"860_1590985312098\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Floor Plans\"}},{\"id\":\"920_1590570404853\",\"title\":\"Floor Plans\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"accordion\",\"field_group\":\"accordion\",\"params\":{\"type\":\"accordion\",\"id\":\"\",\"class\":\"\",\"attribute\":\"floor_plans\",\"template\":\"style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"920_1591065062917\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"870_1591065062917\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"570_1591065075232\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Video\"}},{\"id\":\"540_1591065031771\",\"title\":\"Video Embed\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"params\":{\"template_path\":\"builder/attribute/video_embed\",\"type\":\"element\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"900_1590568320761\",\"title\":\"Yelp Nearby\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"yelp_nearby\",\"params\":{\"template_path\":\"yelp/yelp_nearby\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"listing-item-box\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"710_1590979566726\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"640_1590979566726\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"500_1590985338180\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"3D Gallery\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"130_1590976535053\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"120_1590976535053\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"730_1590985366481\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Walk Score\"}},{\"id\":\"500_1590743347984\",\"title\":\"Walk Score\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"walk_score\",\"params\":{\"template_path\":\"walk/walk_score\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"listing-item-box\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"}}},{\"id\":\"930_1590568048132\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"0_1591771124959\",\"title\":\"Agent Info\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_agent_single\",\"params\":{\"template_path\":\"listing-single/agent\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Contact an agent\"}},{\"id\":\"960_1591861172846\",\"title\":\"Carousel Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-carousel-listing\",\"params\":{\"template_path\":\"builder/element/carousel-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Popular properties\",\"listing_posts_sort_by\":\"popular\",\"listing_posts_per_page\":\"5\",\"ulisting_posts_carousel_loop\":\"true\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"ulisting_posts_carousel_items\":\"1\",\"ulisting_posts_carousel_items_tablet\":\"1\",\"ulisting_posts_carousel_items_tablet_mini\":\"2\",\"ulisting_posts_carousel_items_mobile\":\"2\",\"ulisting_posts_carousel_items_mobile_mini\":\"1\",\"style_template\":\"grid-style-3\",\"listing_posts_type_list\":\"9\"}},{\"id\":\"780_1591771159193\",\"title\":\"Grid Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-grid-listing\",\"params\":{\"template_path\":\"builder/element/grid-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Latest properties\",\"listing_posts_sort_by\":\"latest\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"1\",\"listing_posts_item_columns_tablet\":\"1\",\"listing_posts_item_columns_mobile\":\"1\",\"style_template\":\"grid-style-5\",\"listing_posts_type_list\":\"9\"}},{\"id\":\"180_1590569457109\",\"title\":\"Mortgage Calc\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"mortgage_calc\",\"params\":{\"template_path\":\"calc/calc\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"listing-item-boxshadow\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"4\",\"large\":\"4\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"values\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"position\":{\"extra_large\":\"static\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"-140\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"-200\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"-70\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"200\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"120\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}]}'),(2117,2642,'ulisting_ulisting_single_page_layout_1_element_data','[{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_2\"}},{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"24\"}},{\"id\":\"950_1592468910913\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"880_1592468957867\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"990_1592468959781\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"840_1592468997416\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"400_1592469006549\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"530_1592469025801\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"10_1592469032683\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"listing-item-box\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"listing-item-box\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}]'),(2118,2642,'ulisting_single_page_layout_2','{\"name\":\"Layout 3\",\"section\":[{\"id\":\"820_1553249009531\",\"title\":\"Section\",\"rows\":[{\"id\":\"350_1553249009531\",\"title\":\"Row\",\"columns\":[{\"id\":\"490_1553249009531\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"860_1590569932340\",\"title\":\"Top bar\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"single_inventory_top_bar\",\"params\":{\"template_path\":\"listing-single/item-meta/style_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"840_1591000962003\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"background_color\":\"#E1E1E1\",\"margin\":{\"extra_large\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"25\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"610_1590636029251\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"530_1590636029251\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":0,\"medium\":\"8\",\"small\":\"0\",\"extra_small\":\"12\"}}},{\"id\":\"750_1590636089219\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"30\",\"margin\":{\"extra_large\":{\"top\":\"-10\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"4\",\"large\":0,\"medium\":\"4\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"none\",\"extra_small\":\"none\"},\"align_items\":{\"extra_large\":\"none\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}},{\"id\":\"480_1590739680656\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"1000_1590739680656\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"330_1592560863896\",\"title\":\"Address\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"rentex_address\",\"params\":{\"template_path\":\"builder/attribute/address\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"150_1592626079107\",\"title\":\"Vertical Lines\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_lines\",\"params\":{\"template_path\":\"builder/attribute/vertical-line\",\"type\":\"element\",\"class\":\"rentex-vertical-line\"}},{\"id\":\"870_1592469098371\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"690_1592469101304\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"730_1592469106053\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}}],\"params\":{\"id\":\"\",\"class\":\"rentex-meta-extra\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"flex-start\",\"medium\":\"flex-start\",\"small\":\"flex-start\",\"extra_small\":\"flex-start\"},\"flex_direction\":{\"extra_large\":\"row\",\"large\":\"row\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"center\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":0}},{\"id\":\"160_1553249663085\",\"title\":\"Section\",\"rows\":[{\"id\":\"30_1553249663085\",\"title\":\"Row\",\"columns\":[{\"id\":\"690_1553249663085\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_1\"}},{\"id\":\"250_1590740301068\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"230_1590740301068\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"170_1590976288150\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"750_1590976288150\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"50_1590985062908\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Description\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"530_1590976312593\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"10_1590976312594\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"310_1590740341205\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"<h4 style=u0022font-size:18px;margin:0;padding-bottom:10px;u0022>Property Detail</h4>\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"Title\",\"background_color\":\"#F8F8F5\",\"padding\":{\"extra_large\":{\"top\":\"30\",\"right\":\"50\",\"bottom\":\"\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"30\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"20\",\"right\":\"20\",\"bottom\":\"\",\"left\":\"20\"}}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"200_1590740402940\",\"title\":\"Attribute Box\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"attribute-box\",\"field_group\":\"attribute-box\",\"elements\":[{\"id\":\"590_1592469145421\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"670_1592469151340\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"280_1592469157290\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"540_1592469167580\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"type\":\"attribute-box\",\"class\":\"ulisting-attribute-box\",\"column\":3,\"attribute_style\":0,\"style_template\":\"ulisting_style_1\",\"background_color\":\"#F8F8F5\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\"}}}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"listing-item-box\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"560_1591000822079\",\"title\":\"Location\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"zoom\":10,\"width\":\"100%\",\"height\":\"360px\",\"type\":\"attribute\",\"attribute\":\"location\",\"attribute_type\":\"location\"}},{\"id\":\"730_1590976529171\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"620_1590976529171\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"860_1590985312098\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Floor Plans\"}},{\"id\":\"920_1590570404853\",\"title\":\"Floor Plans\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"accordion\",\"field_group\":\"accordion\",\"params\":{\"type\":\"accordion\",\"id\":\"\",\"class\":\"\",\"attribute\":\"floor_plans\",\"template\":\"style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"720_1591065207019\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"320_1591065207019\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"640_1591065233068\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Video\"}},{\"id\":\"250_1591065243320\",\"title\":\"Video Embed\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"params\":{\"template_path\":\"builder/attribute/video_embed\",\"type\":\"element\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"620_1590568274976\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"Line\"}},{\"id\":\"900_1590568320761\",\"title\":\"Yelp Nearby\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"yelp_nearby\",\"params\":{\"template_path\":\"yelp/yelp_nearby\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"listing-item-box\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"710_1590979566726\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"640_1590979566726\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"500_1590985338180\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"3D Gallery\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"130_1590976535053\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"120_1590976535053\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"730_1590985366481\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Walk Score\"}},{\"id\":\"500_1590743347984\",\"title\":\"Walk Score\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"walk_score\",\"params\":{\"template_path\":\"walk/walk_score\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"listing-item-box\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"930_1590568048132\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"200_1591771530107\",\"title\":\"Agent Info\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_agent_single\",\"params\":{\"template_path\":\"listing-single/agent\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Contact an agent\"}},{\"id\":\"360_1591771540705\",\"title\":\"Carousel Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-carousel-listing\",\"params\":{\"template_path\":\"builder/element/carousel-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Popular properties\",\"listing_posts_sort_by\":\"popular\",\"listing_posts_per_page\":\"5\",\"ulisting_posts_carousel_loop\":\"true\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"ulisting_posts_carousel_items\":\"1\",\"ulisting_posts_carousel_items_tablet\":\"1\",\"ulisting_posts_carousel_items_mobile\":\"2\",\"style_template\":\"grid-style-3\",\"listing_posts_type_list\":\"9\",\"ulisting_posts_carousel_items_tablet_mini\":\"2\",\"ulisting_posts_carousel_items_mobile_mini\":\"1\"}},{\"id\":\"700_1591771543742\",\"title\":\"Grid Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-grid-listing\",\"params\":{\"template_path\":\"builder/element/grid-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Latest properties\",\"listing_posts_sort_by\":\"latest\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"1\",\"listing_posts_item_columns_tablet\":\"1\",\"listing_posts_item_columns_mobile\":\"1\",\"style_template\":\"grid-style-5\",\"listing_posts_type_list\":\"9\"}},{\"id\":\"180_1590569457109\",\"title\":\"Mortgage Calc\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"mortgage_calc\",\"params\":{\"template_path\":\"calc/calc\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"listing-item-boxshadow\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"4\",\"large\":\"4\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"values\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"position\":{\"extra_large\":\"static\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"970_1591866515284\",\"title\":\"Section\",\"rows\":[{\"id\":\"220_1591866515285\",\"title\":\"Row\",\"columns\":[{\"id\":\"800_1591866515285\",\"title\":\"Column\",\"number\":0,\"elements\":[],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"170\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"-170\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}]}'),(2119,2642,'ulisting_ulisting_single_page_layout_2_element_data','[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"30\",\"margin\":{\"extra_large\":{\"top\":\"-10\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"870_1592469098371\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"690_1592469101304\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"730_1592469106053\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_1\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"590_1592469145421\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"670_1592469151340\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"280_1592469157290\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"540_1592469167580\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"listing-item-box\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"560_1591000822079\",\"title\":\"Location\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"zoom\":10,\"width\":\"100%\",\"height\":\"360px\",\"type\":\"attribute\",\"attribute\":\"location\",\"attribute_type\":\"location\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"listing-item-box\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}]'),(2120,2642,'ulisting_single_page_layout_3','{\"name\":\"Layout 4\",\"section\":[{\"id\":\"820_1553249009531\",\"title\":\"Section\",\"rows\":[{\"id\":\"350_1553249009531\",\"title\":\"Row\",\"columns\":[{\"id\":\"490_1553249009531\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"860_1590569932340\",\"title\":\"Top bar\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"single_inventory_top_bar\",\"params\":{\"template_path\":\"listing-single/item-meta/style_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"900_1591002484620\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"background_color\":\"#E1E1E1\",\"margin\":{\"extra_large\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"25\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"610_1590636029251\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"530_1590636029251\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"240_1592560873547\",\"title\":\"Address\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"rentex_address\",\"params\":{\"template_path\":\"builder/attribute/address\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"0\",\"large\":\"0\",\"medium\":\"8\",\"small\":0,\"extra_small\":\"12\"}}},{\"id\":\"750_1590636089219\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"30\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":\"4\",\"medium\":\"4\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}},{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_4\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"45\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"410_1590993043879\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"390_1590993043879\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"570_1590993517704\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"<span style=u0022font-size: 14px;u0022>Property Type</span>\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"\",\"color\":\"#B4B4B4\"}},{\"id\":\"650_1590993097593\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"2\",\"large\":\"2\",\"medium\":\"4\",\"small\":\"4\",\"extra_small\":\"6\"},\"flex\":{\"extra_large\":\"center\",\"large\":\"center\",\"medium\":\"center\",\"small\":\"center\",\"extra_small\":\"center\"},\"flex_direction\":{\"extra_large\":\"column\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"920_1590993049434\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"170_1592469550802\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"2\",\"large\":\"2\",\"medium\":\"4\",\"small\":\"4\",\"extra_small\":\"6\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"10_1590993049434\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"80_1592469553227\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"2\",\"large\":\"2\",\"medium\":\"4\",\"small\":\"4\",\"extra_small\":\"6\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"560_1590993049434\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"770_1592469555113\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"2\",\"large\":\"2\",\"medium\":\"4\",\"small\":\"4\",\"extra_small\":\"6\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"50_1590993049434\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"390_1592469557196\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"2\",\"large\":\"2\",\"medium\":\"4\",\"small\":\"4\",\"extra_small\":\"6\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"290_1590993049434\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"330_1590993085243\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"2\",\"large\":\"2\",\"medium\":\"4\",\"small\":\"4\",\"extra_small\":\"6\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"30\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"rentex-box-divider\",\"column\":6}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"20\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"50\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":0}},{\"id\":\"160_1553249663085\",\"title\":\"Section\",\"rows\":[{\"id\":\"30_1553249663085\",\"title\":\"Row\",\"columns\":[{\"id\":\"690_1553249663085\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"130_1590985546425\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Description\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"250_1590740301068\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"230_1590740301068\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"310_1590740341205\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"<h4 style=u0022font-size:18px;margin:0;padding-bottom:10px;u0022>Property Detail</h4>\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"Title\"}},{\"id\":\"200_1590740402940\",\"title\":\"Attribute Box\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"attribute-box\",\"field_group\":\"attribute-box\",\"elements\":[{\"id\":\"330_1592469590814\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1592469600935\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"980_1592469594731\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1592469598331\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"type\":\"attribute-box\",\"class\":\"ulisting-attribute-box\",\"column\":3,\"attribute_style\":0,\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F8F8F5\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\"},\"extra_small\":{\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"1000_1590985683630\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"920_1590994185979\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"780_1590994174163\",\"title\":\"Location\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"id\":\"\",\"class\":\"\",\"zoom\":10,\"width\":\"100%\",\"height\":\"360px\",\"type\":\"attribute\",\"attribute\":\"location\",\"attribute_type\":\"location\"}},{\"id\":\"170_1590985697476\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"730_1590985589476\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Floor Plans\"}},{\"id\":\"920_1590570404853\",\"title\":\"Floor Plans\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"accordion\",\"field_group\":\"accordion\",\"params\":{\"type\":\"accordion\",\"id\":\"\",\"class\":\"\",\"attribute\":\"floor_plans\",\"template\":\"style_1\"}},{\"id\":\"120_1591065489394\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"880_1591065471779\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Video\"}},{\"id\":\"1000_1591065463278\",\"title\":\"Video Embed\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"params\":{\"template_path\":\"builder/attribute/video_embed\",\"type\":\"element\"}},{\"id\":\"510_1590985708493\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"900_1590568320761\",\"title\":\"Yelp Nearby\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"yelp_nearby\",\"params\":{\"template_path\":\"yelp/yelp_nearby\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"500_1590985751113\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"480_1590985610708\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"3D Gallery\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"470_1590985734254\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"450_1590985624558\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Walk Score\"}},{\"id\":\"500_1590743347984\",\"title\":\"Walk Score\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"walk_score\",\"params\":{\"template_path\":\"walk/walk_score\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"670_1590985723178\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\"}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"930_1590568048132\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"770_1591771615794\",\"title\":\"Agent Info\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_agent_single\",\"params\":{\"template_path\":\"listing-single/agent\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Contact an agent\"}},{\"id\":\"970_1591771619040\",\"title\":\"Carousel Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-carousel-listing\",\"params\":{\"template_path\":\"builder/element/carousel-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Popular properties\",\"listing_posts_sort_by\":\"popular\",\"listing_posts_per_page\":\"5\",\"ulisting_posts_carousel_loop\":\"true\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"ulisting_posts_carousel_items\":\"1\",\"ulisting_posts_carousel_items_tablet\":\"1\",\"ulisting_posts_carousel_items_mobile\":\"2\",\"style_template\":\"grid-style-3\",\"listing_posts_type_list\":\"9\",\"ulisting_posts_carousel_items_tablet_mini\":\"2\",\"ulisting_posts_carousel_items_mobile_mini\":\"1\"}},{\"id\":\"350_1591771621707\",\"title\":\"Grid Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-grid-listing\",\"params\":{\"template_path\":\"builder/element/grid-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Latest properties\",\"listing_posts_sort_by\":\"latest\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"1\",\"listing_posts_item_columns_tablet\":\"1\",\"listing_posts_item_columns_mobile\":\"1\",\"style_template\":\"grid-style-5\",\"listing_posts_type_list\":\"9\"}},{\"id\":\"180_1590569457109\",\"title\":\"Mortgage Calc\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"mortgage_calc\",\"params\":{\"template_path\":\"calc/calc\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"listing-item-boxshadow\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"4\",\"large\":\"4\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"values\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"position\":{\"extra_large\":\"static\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\"}}]}'),(2121,2642,'ulisting_ulisting_single_page_layout_3_element_data','[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"30\"}},{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_4\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"45\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"650_1590993097593\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}},{\"id\":\"170_1592469550802\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}},{\"id\":\"80_1592469553227\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}},{\"id\":\"770_1592469555113\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}},{\"id\":\"390_1592469557196\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}},{\"id\":\"330_1590993085243\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_3\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"330_1592469590814\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1592469600935\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"980_1592469594731\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1592469598331\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"780_1590994174163\",\"title\":\"Location\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"id\":\"\",\"class\":\"\",\"zoom\":10,\"width\":\"100%\",\"height\":\"360px\",\"type\":\"attribute\",\"attribute\":\"location\",\"attribute_type\":\"location\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}]'),(2122,2642,'ulisting_single_page_layout_4','{\"name\":\"Layout 5\",\"section\":[{\"id\":\"820_1553249009531\",\"title\":\"Section\",\"rows\":[{\"id\":\"350_1553249009531\",\"title\":\"Row\",\"columns\":[{\"id\":\"490_1553249009531\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"860_1590569932340\",\"title\":\"Top bar\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"single_inventory_top_bar\",\"params\":{\"template_path\":\"listing-single/item-meta/style_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"530_1591066420666\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"background_color\":\"#E1E1E1\",\"margin\":{\"extra_large\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"25\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"610_1590636029251\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"530_1590636029251\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"0\",\"large\":0,\"medium\":\"8\",\"small\":0,\"extra_small\":\"12\"}}},{\"id\":\"750_1590636089219\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"30\",\"margin\":{\"extra_large\":{\"top\":\"-10\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":\"4\",\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-end\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}},{\"id\":\"480_1590739680656\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"1000_1590739680656\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"800_1592560885181\",\"title\":\"Address\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"rentex_address\",\"params\":{\"template_path\":\"builder/attribute/address\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"440_1592626093390\",\"title\":\"Vertical Lines\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_lines\",\"params\":{\"template_path\":\"builder/attribute/vertical-line\",\"type\":\"element\",\"class\":\"rentex-vertical-line\"}},{\"id\":\"540_1592469664206\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"970_1592469667033\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"330_1592469668869\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}}],\"params\":{\"id\":\"\",\"class\":\"rentex-meta-extra\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"flex-start\",\"medium\":\"flex-start\",\"small\":\"flex-start\",\"extra_small\":\"flex-start\"},\"flex_direction\":{\"extra_large\":\"row\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"center\",\"medium\":\"center\",\"small\":\"center\",\"extra_small\":\"center\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_5\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":0}},{\"id\":\"160_1553249663085\",\"title\":\"Section\",\"rows\":[{\"id\":\"30_1553249663085\",\"title\":\"Row\",\"columns\":[{\"id\":\"690_1553249663085\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"250_1590740301068\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"230_1590740301068\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"170_1590976288150\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"750_1590976288150\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"50_1590985062908\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Description\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"530_1590976312593\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"10_1590976312594\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"310_1590740341205\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"<h4 style=u0022font-size:18px;margin:0;padding-bottom:10px;u0022>Property Detail</h4>\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"Title\",\"background_color\":\"#F8F8F5\",\"padding\":{\"extra_large\":{\"top\":\"30\",\"right\":\"50\",\"bottom\":\"\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"30\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"20\",\"right\":\"20\",\"bottom\":\"\",\"left\":\"20\"}}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"200_1590740402940\",\"title\":\"Attribute Box\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"attribute-box\",\"field_group\":\"attribute-box\",\"elements\":[{\"id\":\"590_1592469697719\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"40_1592469705748\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"30_1592469711172\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"480_1592469716740\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"type\":\"attribute-box\",\"class\":\"ulisting-attribute-box\",\"column\":3,\"attribute_style\":0,\"style_template\":\"ulisting_style_1\",\"background_color\":\"#F8F8F5\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\"}}}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"listing-item-box\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"720_1590994570143\",\"title\":\"Location\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"zoom\":10,\"width\":\"100%\",\"height\":\"360px\",\"type\":\"attribute\",\"attribute\":\"location\",\"attribute_type\":\"location\"}},{\"id\":\"730_1590976529171\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"620_1590976529171\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"860_1590985312098\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Floor Plans\"}},{\"id\":\"920_1590570404853\",\"title\":\"Floor Plans\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"accordion\",\"field_group\":\"accordion\",\"params\":{\"type\":\"accordion\",\"id\":\"\",\"class\":\"\",\"attribute\":\"floor_plans\",\"template\":\"style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"680_1591066165492\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"170_1591066165492\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"950_1591066188964\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Video\"}},{\"id\":\"560_1591066153312\",\"title\":\"Video Embed\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"params\":{\"template_path\":\"builder/attribute/video_embed\",\"type\":\"element\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"620_1590568274976\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"Line\"}},{\"id\":\"900_1590568320761\",\"title\":\"Yelp Nearby\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"yelp_nearby\",\"params\":{\"template_path\":\"yelp/yelp_nearby\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"listing-item-box\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"710_1590979566726\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"640_1590979566726\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"500_1590985338180\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"3D Gallery\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"130_1590976535053\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"120_1590976535053\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"730_1590985366481\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Walk Score\"}},{\"id\":\"500_1590743347984\",\"title\":\"Walk Score\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"walk_score\",\"params\":{\"template_path\":\"walk/walk_score\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"listing-item-box\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"}}},{\"id\":\"930_1590568048132\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"620_1591771687876\",\"title\":\"Agent Info\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_agent_single\",\"params\":{\"template_path\":\"listing-single/agent\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Contact an agent\"}},{\"id\":\"110_1591771694966\",\"title\":\"Carousel Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-carousel-listing\",\"params\":{\"template_path\":\"builder/element/carousel-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Popular properties\",\"listing_posts_sort_by\":\"popular\",\"listing_posts_per_page\":\"5\",\"ulisting_posts_carousel_loop\":\"true\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"ulisting_posts_carousel_items\":\"1\",\"ulisting_posts_carousel_items_tablet\":\"1\",\"ulisting_posts_carousel_items_mobile\":\"2\",\"style_template\":\"grid-style-3\",\"listing_posts_type_list\":\"9\",\"ulisting_posts_carousel_items_tablet_mini\":\"2\",\"ulisting_posts_carousel_items_mobile_mini\":\"1\"}},{\"id\":\"700_1591771697939\",\"title\":\"Grid Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-grid-listing\",\"params\":{\"template_path\":\"builder/element/grid-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Latest properties\",\"listing_posts_sort_by\":\"latest\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"1\",\"listing_posts_item_columns_tablet\":\"1\",\"listing_posts_item_columns_mobile\":\"1\",\"style_template\":\"grid-style-5\",\"listing_posts_type_list\":\"9\"}},{\"id\":\"180_1590569457109\",\"title\":\"Mortgage Calc\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"mortgage_calc\",\"params\":{\"template_path\":\"calc/calc\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"listing-item-boxshadow\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"4\",\"large\":\"4\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"values\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"position\":{\"extra_large\":\"static\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"-330\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"-250\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"40\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"-200\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"-70\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"200\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"122\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}]}'),(2123,2642,'ulisting_ulisting_single_page_layout_4_element_data','[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"30\",\"margin\":{\"extra_large\":{\"top\":\"-10\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"540_1592469664206\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"970_1592469667033\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"330_1592469668869\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_5\",\"margin\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"590_1592469697719\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"40_1592469705748\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"30_1592469711172\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"480_1592469716740\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"listing-item-box\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"720_1590994570143\",\"title\":\"Location\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"map\",\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"zoom\":10,\"width\":\"100%\",\"height\":\"360px\",\"type\":\"attribute\",\"attribute\":\"location\",\"attribute_type\":\"location\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"listing-item-box\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}]'),(2124,2642,'ulisting_single_page_layout_5','{\"name\":\"Layout 6\",\"section\":[{\"id\":\"540_1591066693005\",\"title\":\"Section\",\"rows\":[{\"id\":\"250_1591066693005\",\"title\":\"Row\",\"columns\":[{\"id\":\"110_1591066693005\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_3\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"full_width\":1}},{\"id\":\"820_1553249009531\",\"title\":\"Section\",\"rows\":[{\"id\":\"350_1553249009531\",\"title\":\"Row\",\"columns\":[{\"id\":\"490_1553249009531\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"480_1590739680656\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"1000_1590739680656\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"24\"}},{\"id\":\"30_1592626099642\",\"title\":\"Vertical Lines\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_lines\",\"params\":{\"template_path\":\"builder/attribute/vertical-line\",\"type\":\"element\",\"class\":\"rentex-vertical-line\"}},{\"id\":\"30_1592469762989\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"850_1592469765633\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"610_1592469769969\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}}],\"params\":{\"id\":\"\",\"class\":\"rentex-meta-extra\",\"background_color\":\"\",\"size\":{\"extra_large\":\"6\",\"large\":\"6\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-start\",\"large\":\"flex-start\",\"medium\":\"flex-start\",\"small\":\"flex-start\",\"extra_small\":\"flex-start\"},\"flex_direction\":{\"extra_large\":\"row\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"align_items\":{\"extra_large\":\"center\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"center\",\"extra_small\":\"center\"},\"margin\":{\"extra_large\":{\"top\":\"-10\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"470_1590739690916\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"130_1590739664073\",\"title\":\"Tab Heading\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"params\":{\"template_path\":\"builder/attribute/tab-heading\",\"type\":\"element\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"6\",\"large\":\"6\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"flex\":{\"extra_large\":\"flex-end\",\"large\":\"flex-end\",\"medium\":\"flex-start\",\"small\":\"none\",\"extra_small\":\"none\"},\"flex_direction\":{\"extra_large\":\"row\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"values\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"-60\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"position\":{\"extra_large\":\"none\",\"large\":\"none\",\"medium\":\"absolute\",\"small\":\"none\",\"extra_small\":\"none\"}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"-10\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"60\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#FFFFFF\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":0}},{\"id\":\"910_1591066715414\",\"title\":\"Section\",\"rows\":[{\"id\":\"210_1591066715415\",\"title\":\"Row\",\"columns\":[{\"id\":\"530_1591066715415\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"500_1591066811566\",\"title\":\"Divider\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_divider\",\"params\":{\"template_path\":\"builder/attribute/divider\",\"type\":\"element\",\"class\":\"rentex-listing-divider\",\"margin\":{\"extra_large\":{\"top\":\"10\",\"right\":\"\",\"bottom\":\"15\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"full_width\":1}},{\"id\":\"880_1591066690142\",\"title\":\"Section\",\"rows\":[{\"id\":\"950_1591066690142\",\"title\":\"Row\",\"columns\":[{\"id\":\"230_1591066690142\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"860_1590569932340\",\"title\":\"Top bar\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"single_inventory_top_bar\",\"params\":{\"template_path\":\"listing-single/item-meta/style_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"610_1590636029251\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"530_1590636029251\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"180_1592560957256\",\"title\":\"Address\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"rentex_address\",\"params\":{\"template_path\":\"builder/attribute/address\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"}}},{\"id\":\"750_1590636089219\",\"title\":\"Column\",\"number\":0,\"elements\":[],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"55\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"160_1553249663085\",\"title\":\"Section\",\"rows\":[{\"id\":\"30_1553249663085\",\"title\":\"Row\",\"columns\":[{\"id\":\"690_1553249663085\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"250_1590740301068\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"230_1590740301068\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"170_1590976288150\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"750_1590976288150\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"50_1590985062908\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Description\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"530_1590976312593\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"10_1590976312594\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"310_1590740341205\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"<h4 style=u0022font-size:18px;margin:0;padding-bottom:10px;u0022>Property Detail</h4>\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"Title\",\"background_color\":\"#F8F8F5\",\"padding\":{\"extra_large\":{\"top\":\"30\",\"right\":\"50\",\"bottom\":\"\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"30\",\"right\":\"30\",\"bottom\":\"\",\"left\":\"30\"},\"extra_small\":{\"top\":\"20\",\"right\":\"20\",\"bottom\":\"\",\"left\":\"20\"}}}}],\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"200_1590740402940\",\"title\":\"Attribute Box\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"attribute-box\",\"field_group\":\"attribute-box\",\"elements\":[{\"id\":\"900_1592469797325\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1592469806468\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"50_1592469821572\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"880_1592469814467\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"type\":\"attribute-box\",\"class\":\"ulisting-attribute-box\",\"column\":3,\"attribute_style\":0,\"style_template\":\"ulisting_style_1\",\"background_color\":\"#F8F8F5\",\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\"},\"extra_small\":{\"top\":\"\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\"}}}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"listing-item-box\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"730_1590976529171\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"620_1590976529171\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"860_1590985312098\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Floor Plans\"}},{\"id\":\"920_1590570404853\",\"title\":\"Floor Plans\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"accordion\",\"field_group\":\"accordion\",\"params\":{\"type\":\"accordion\",\"id\":\"\",\"class\":\"\",\"attribute\":\"floor_plans\",\"template\":\"style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"0_1591066504304\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"370_1591066504304\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"990_1591066541337\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Video\"}},{\"id\":\"550_1591066555582\",\"title\":\"Video Embed\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"params\":{\"template_path\":\"builder/attribute/video_embed\",\"type\":\"element\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"620_1590568274976\",\"title\":\"Html box\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"html-box\",\"elements\":[],\"params\":{\"html\":\"\",\"id\":\"\",\"class\":\"\",\"type\":\"html\",\"title\":\"Line\"}},{\"id\":\"900_1590568320761\",\"title\":\"Yelp Nearby\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"yelp_nearby\",\"params\":{\"template_path\":\"yelp/yelp_nearby\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"listing-item-box\",\"color\":\"\",\"background_color\":\"\"}},{\"id\":\"710_1590979566726\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"640_1590979566726\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"500_1590985338180\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"3D Gallery\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"130_1590976535053\",\"title\":\"Columns\",\"type\":\"basic\",\"group\":\"basic\",\"module\":\"columns\",\"columns\":[{\"id\":\"120_1590976535053\",\"title\":\"Column\",\"field_group\":\"col\",\"elements\":[{\"id\":\"730_1590985366481\",\"title\":\"Heading Title\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_heading_title\",\"params\":{\"template_path\":\"builder/attribute/heading-title\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\",\"title\":\"Walk Score\"}},{\"id\":\"500_1590743347984\",\"title\":\"Walk Score\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"walk_score\",\"params\":{\"template_path\":\"walk/walk_score\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"background_color\":\"\"}}],\"params\":{\"id\":\"\",\"class\":\"listing-item-box\",\"background_color\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"15\",\"bottom\":\"\",\"left\":\"15\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"type\":\"column\",\"id\":\"\",\"class\":\"\",\"column\":1}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"listing-item-box\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"8\",\"large\":\"8\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"40\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"930_1590568048132\",\"title\":\"Column\",\"number\":0,\"elements\":[{\"id\":\"250_1591771767415\",\"title\":\"Agent Info\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex_agent_single\",\"params\":{\"template_path\":\"listing-single/agent\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Contact an agent\"}},{\"id\":\"640_1591771774929\",\"title\":\"Carousel Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-carousel-listing\",\"params\":{\"template_path\":\"builder/element/carousel-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Popular properties\",\"listing_posts_sort_by\":\"popular\",\"listing_posts_per_page\":\"5\",\"ulisting_posts_carousel_loop\":\"true\",\"ulisting_posts_carousel_nav\":\"false\",\"ulisting_posts_carousel_dots\":\"true\",\"ulisting_posts_carousel_items\":\"1\",\"ulisting_posts_carousel_items_tablet\":\"1\",\"ulisting_posts_carousel_items_mobile\":\"2\",\"style_template\":\"grid-style-3\",\"listing_posts_type_list\":\"9\",\"ulisting_posts_carousel_items_tablet_mini\":\"2\",\"ulisting_posts_carousel_items_mobile_mini\":\"1\"}},{\"id\":\"460_1591771782064\",\"title\":\"Grid Listing\",\"type\":\"element\",\"group\":\"basic\",\"module\":\"element\",\"field_group\":\"rentex-grid-listing\",\"params\":{\"template_path\":\"builder/element/grid-listing\",\"type\":\"element\",\"class\":\"listing-item-box listing-item-boxshadow\",\"title\":\"Latest properties\",\"listing_posts_sort_by\":\"latest\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"1\",\"listing_posts_item_columns_tablet\":\"1\",\"listing_posts_item_columns_mobile\":\"1\",\"style_template\":\"grid-style-5\",\"listing_posts_type_list\":\"9\"}},{\"id\":\"180_1590569457109\",\"title\":\"Mortgage Calc\",\"type\":\"element\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"mortgage_calc\",\"params\":{\"template_path\":\"calc/calc\",\"template\":\"template_1\",\"type\":\"element\",\"id\":\"\",\"class\":\"listing-item-boxshadow\",\"color\":\"\",\"background_color\":\"\"}}],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":\"4\",\"large\":\"4\",\"medium\":0,\"small\":0,\"extra_small\":\"12\"},\"values\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"position\":{\"extra_large\":\"static\",\"large\":\"none\",\"medium\":\"none\",\"small\":\"none\",\"extra_small\":\"none\"},\"margin\":{\"extra_large\":{\"top\":\"-140\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"0\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":2}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"30\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}}}},{\"id\":\"490_1591951316429\",\"title\":\"Section\",\"rows\":[{\"id\":\"220_1591951316429\",\"title\":\"Row\",\"columns\":[{\"id\":\"220_1591951316429\",\"title\":\"Column\",\"number\":0,\"elements\":[],\"field_group\":\"col\",\"params\":{\"id\":\"\",\"class\":\"\",\"size\":{\"extra_large\":0,\"large\":0,\"medium\":0,\"small\":0,\"extra_small\":0}}}],\"field_group\":\"row\",\"params\":{\"id\":\"\",\"class\":\"\",\"column\":1}}],\"field_group\":\"section\",\"params\":{\"id\":\"\",\"class\":\"\",\"background_color\":\"#F5F5EF\",\"margin\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"-170\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"padding\":{\"extra_large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"170\",\"left\":\"\"},\"large\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"medium\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"},\"extra_small\":{\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\"}},\"full_width\":0}}]}'),(2125,2642,'ulisting_ulisting_single_page_layout_5_element_data','[{\"id\":\"160_1553249533131\",\"title\":\"Gallery\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"gallaey\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute\":\"gallery\",\"attribute_type\":\"gallery\",\"background_color\":\"\",\"link_option\":0,\"hidden_value\":0,\"style_template\":\"ulisting_gallery_style_3\"}},{\"id\":\"90_1590739704528\",\"title\":\"Price\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"price\",\"params\":{\"id\":\"\",\"class\":\"\",\"attribute\":\"price\",\"attribute_type\":\"price\",\"style_template\":\"ulisting_style_1\",\"font_size\":\"24\"}},{\"id\":\"30_1592469762989\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"850_1592469765633\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"610_1592469769969\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_2\"}},{\"id\":\"560_1590636059647\",\"title\":\"Title\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"title\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"class\":\"\",\"color\":\"\",\"attribute_type\":\"title\",\"background_color\":\"\"}},{\"id\":\"660_1590568093440\",\"title\":\"Description\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"description\",\"class\":\"\",\"color\":\"\",\"attribute\":\"description\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"900_1592469797325\",\"title\":\"Bedrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bedrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bedrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"830_1590740503983\",\"title\":\"Orienten\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"orienten\",\"class\":\"\",\"color\":\"\",\"attribute\":\"orienten\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1592469806468\",\"title\":\"Bathrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"bathrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"bathrooms\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"820_1590741594513\",\"title\":\"Type\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"type\",\"class\":\"\",\"color\":\"\",\"attribute\":\"type\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"80_1590740546845\",\"title\":\"Livingrooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"livingrooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"livingrooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"90_1590740583778\",\"title\":\"Rooms\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"rooms\",\"class\":\"\",\"color\":\"\",\"attribute\":\"rooms\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"810_1590740592112\",\"title\":\"Plot size\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"plot_size\",\"class\":\"\",\"color\":\"\",\"attribute\":\"plot_size\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"50_1592469821572\",\"title\":\"Area\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"area\",\"class\":\"\",\"color\":\"\",\"attribute\":\"area\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"880_1592469814467\",\"title\":\"Garages\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"garages\",\"class\":\"\",\"color\":\"\",\"attribute\":\"garages\",\"attribute_type\":\"select\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"550_1590740601430\",\"title\":\"Kitchens\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"kitchens\",\"class\":\"\",\"color\":\"\",\"attribute\":\"kitchens\",\"attribute_type\":\"number\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"940_1590741573812\",\"title\":\"Year Built\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"input-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"year_built\",\"class\":\"\",\"color\":\"\",\"attribute\":\"year_built\",\"attribute_type\":\"text\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"680_1590568125722\",\"title\":\"Amenities\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"list-block\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"amenities\",\"class\":\"listing-item-box\",\"color\":\"\",\"attribute\":\"amenities\",\"attribute_type\":\"multiselect\",\"background_color\":\"\",\"style_template\":\"ulisting_style_4\"}},{\"id\":\"680_1590568336761\",\"title\":\"Virtual Tour\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"no-template\",\"params\":{\"type\":\"attribute\",\"id\":\"\",\"label\":\"virtual_tour\",\"class\":\"\",\"color\":\"\",\"attribute\":\"virtual_tour\",\"attribute_type\":\"wp_editor\",\"background_color\":\"\",\"style_template\":\"ulisting_style_1\"}},{\"id\":\"410_1590568363063\",\"title\":\"Page statistics\",\"type\":\"attribute\",\"group\":\"general\",\"module\":\"element\",\"field_group\":\"page-statistics\",\"params\":{\"template_path\":\"statistics/listing-page-statistics\",\"template\":\"none\",\"type\":\"page-statistics\",\"id\":\"\",\"class\":\"listing-item-box\",\"listing_border_color\":\"#4AA2E2\",\"listing_background_color\":\"#ABD4F1\",\"user_border_color\":\"#FF7E9B\",\"user_background_color\":\"#FF9933\",\"page_statistics_step\":\"10\"}}]'),(4035,3216,'_wp_page_template','elementor_header_footer'),(4036,3216,'_elementor_edit_mode','builder'),(4037,3216,'_elementor_template_type','wp-page'),(4038,3216,'_elementor_version','2.9.9'),(4039,3216,'_elementor_pro_version','2.10.3'),(4040,3216,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4032,3215,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(4033,3215,'_elementor_css','a:5:{s:4:\"time\";i:1623705333;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2162,2642,'stm_listing_item_card_list','a:2:{s:6:\"config\";a:1:{s:8:\"template\";s:10:\"template_1\";}s:8:\"sections\";a:1:{i:0;a:5:{s:2:\"id\";s:17:\"410_1591438787078\";s:5:\"title\";s:7:\"Section\";s:4:\"rows\";a:1:{i:0;a:5:{s:2:\"id\";s:16:\"40_1591438787078\";s:5:\"title\";s:3:\"Row\";s:7:\"columns\";a:1:{i:0;a:6:{s:2:\"id\";s:17:\"690_1591438787078\";s:5:\"title\";s:6:\"Column\";s:6:\"number\";i:0;s:8:\"elements\";a:1:{i:0;a:7:{s:2:\"id\";s:17:\"930_1591438788994\";s:5:\"title\";s:17:\"Opal Preview List\";s:4:\"type\";s:7:\"element\";s:5:\"group\";s:5:\"basic\";s:6:\"module\";s:7:\"element\";s:11:\"field_group\";s:19:\"rentex_preview_list\";s:6:\"params\";a:3:{s:13:\"template_path\";s:22:\"loop/opal-preview-list\";s:4:\"type\";s:7:\"element\";s:14:\"style_template\";s:12:\"list-style-1\";}}}s:11:\"field_group\";s:3:\"col\";s:6:\"params\";a:3:{s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"size\";a:5:{s:11:\"extra_large\";i:0;s:5:\"large\";i:0;s:6:\"medium\";i:0;s:5:\"small\";i:0;s:11:\"extra_small\";i:0;}}}}s:11:\"field_group\";s:3:\"row\";s:6:\"params\";a:3:{s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"column\";i:1;}}}s:11:\"field_group\";s:7:\"section\";s:6:\"params\";a:3:{s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"background_color\";s:0:\"\";}}}}'),(2163,2642,'stm_listing_item_card_grid','a:2:{s:6:\"config\";a:2:{s:8:\"template\";s:10:\"template_1\";s:6:\"column\";a:5:{s:11:\"extra_large\";s:1:\"3\";s:5:\"large\";s:1:\"3\";s:6:\"medium\";i:2;s:5:\"small\";i:1;s:11:\"extra_small\";i:1;}}s:8:\"sections\";a:1:{i:0;a:5:{s:2:\"id\";s:17:\"890_1591344543182\";s:5:\"title\";s:7:\"Section\";s:4:\"rows\";a:1:{i:0;a:5:{s:2:\"id\";s:17:\"130_1591344543182\";s:5:\"title\";s:3:\"Row\";s:7:\"columns\";a:1:{i:0;a:6:{s:2:\"id\";s:17:\"950_1591344543182\";s:5:\"title\";s:6:\"Column\";s:6:\"number\";i:0;s:8:\"elements\";a:1:{i:0;a:7:{s:2:\"id\";s:17:\"900_1591344544263\";s:5:\"title\";s:17:\"Opal Preview Grid\";s:4:\"type\";s:7:\"element\";s:5:\"group\";s:5:\"basic\";s:6:\"module\";s:7:\"element\";s:11:\"field_group\";s:19:\"rentex_preview_grid\";s:6:\"params\";a:3:{s:13:\"template_path\";s:22:\"loop/opal-preview-grid\";s:4:\"type\";s:7:\"element\";s:14:\"style_template\";s:12:\"grid-style-2\";}}}s:11:\"field_group\";s:3:\"col\";s:6:\"params\";a:3:{s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"size\";a:5:{s:11:\"extra_large\";i:0;s:5:\"large\";i:0;s:6:\"medium\";i:0;s:5:\"small\";i:0;s:11:\"extra_small\";i:0;}}}}s:11:\"field_group\";s:3:\"row\";s:6:\"params\";a:3:{s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"column\";i:1;}}}s:11:\"field_group\";s:7:\"section\";s:6:\"params\";a:3:{s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"background_color\";s:0:\"\";}}}}'),(2164,2642,'stm_listing_item_card_map','a:2:{s:6:\"config\";a:1:{s:8:\"template\";s:10:\"template_1\";}s:8:\"sections\";a:1:{i:0;a:5:{s:2:\"id\";s:17:\"270_1592649235123\";s:5:\"title\";s:7:\"Section\";s:4:\"rows\";a:1:{i:0;a:5:{s:2:\"id\";s:17:\"670_1592649235123\";s:5:\"title\";s:3:\"Row\";s:7:\"columns\";a:1:{i:0;a:6:{s:2:\"id\";s:17:\"940_1592649235123\";s:5:\"title\";s:6:\"Column\";s:6:\"number\";i:0;s:8:\"elements\";a:1:{i:0;a:7:{s:2:\"id\";s:16:\"30_1592983210560\";s:5:\"title\";s:16:\"Opal Preview Map\";s:4:\"type\";s:7:\"element\";s:5:\"group\";s:5:\"basic\";s:6:\"module\";s:7:\"element\";s:11:\"field_group\";s:18:\"rentex_preview_map\";s:6:\"params\";a:3:{s:13:\"template_path\";s:21:\"loop/opal-preview-map\";s:4:\"type\";s:7:\"element\";s:14:\"style_template\";s:11:\"map-style-1\";}}}s:11:\"field_group\";s:3:\"col\";s:6:\"params\";a:3:{s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:4:\"size\";a:5:{s:11:\"extra_large\";i:0;s:5:\"large\";i:0;s:6:\"medium\";i:0;s:5:\"small\";i:0;s:11:\"extra_small\";i:0;}}}}s:11:\"field_group\";s:3:\"row\";s:6:\"params\";a:3:{s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:6:\"column\";i:1;}}}s:11:\"field_group\";s:7:\"section\";s:6:\"params\";a:3:{s:2:\"id\";s:0:\"\";s:5:\"class\";s:0:\"\";s:16:\"background_color\";s:0:\"\";}}}}'),(2165,2642,'stm_listing_single_layout','ulisting_single_page_layout_0'),(2166,2642,'listing_type_layout','ulisting_type_page_layout_3'),(2167,2642,'stm_listing_order','a:3:{s:5:\"items\";a:3:{i:0;a:3:{s:5:\"label\";s:10:\"Latest New\";s:8:\"order_by\";s:9:\"post_date\";s:10:\"order_type\";s:4:\"DESC\";}i:1;a:3:{s:5:\"label\";s:13:\"Price (Lo-Hi)\";s:8:\"order_by\";s:5:\"price\";s:10:\"order_type\";s:3:\"ASC\";}i:2;a:3:{s:5:\"label\";s:13:\"Price (Hi-Lo)\";s:8:\"order_by\";s:5:\"price\";s:10:\"order_type\";s:4:\"DESC\";}}s:9:\"view_type\";s:9:\"dropdowns\";s:16:\"order_by_default\";s:8:\"area#ASC\";}'),(2168,881,'stm_month_05','270'),(2170,2650,'_elementor_edit_mode','builder'),(2171,2650,'_elementor_template_type','kit'),(2172,2650,'inline_featured_image','0'),(2173,2650,'_elementor_version','2.9.9'),(2174,2650,'_elementor_pro_version','2.10.3'),(2177,2642,'listing_post_settings','a:251:{s:23:\"listing_posts_type_list\";i:2642;s:21:\"listing_posts_sort_by\";s:7:\"popular\";s:20:\"listing_posts_styles\";s:12:\"grid-style-2\";s:18:\"listing_posts_view\";s:39:\"ulisting_posts_carousel rentex-carousel\";s:22:\"listing_posts_per_page\";s:1:\"4\";s:26:\"listing_posts_item_columns\";s:1:\"2\";s:27:\"ulisting_posts_carousel_nav\";s:5:\"false\";s:28:\"ulisting_posts_carousel_dots\";s:4:\"true\";s:10:\"_animation\";s:12:\"opal-move-up\";s:18:\"animation_duration\";s:4:\"fast\";s:21:\"listing_category_list\";s:6:\"select\";s:27:\"listing_posts_styles_layout\";s:0:\"\";s:22:\"listing_posts_order_by\";s:10:\"post_title\";s:19:\"listing_posts_order\";s:3:\"ASC\";s:33:\"listing_posts_item_columns_tablet\";i:2;s:33:\"listing_posts_item_columns_mobile\";i:1;s:32:\"ulisting_posts_carousel_autoplay\";s:5:\"false\";s:29:\"ulisting_posts_carousel_speed\";s:4:\"5000\";s:28:\"ulisting_posts_carousel_loop\";s:4:\"true\";s:13:\"check_visible\";s:2:\"no\";s:6:\"_title\";s:0:\"\";s:7:\"_margin\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:14:\"_margin_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:14:\"_margin_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:8:\"_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:15:\"_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:15:\"_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:8:\"_z_index\";s:0:\"\";s:15:\"_z_index_tablet\";s:0:\"\";s:15:\"_z_index_mobile\";s:0:\"\";s:11:\"_element_id\";s:0:\"\";s:12:\"_css_classes\";s:0:\"\";s:29:\"motion_fx_motion_fx_scrolling\";s:0:\"\";s:27:\"motion_fx_translateY_effect\";s:0:\"\";s:30:\"motion_fx_translateY_direction\";s:0:\"\";s:26:\"motion_fx_translateY_speed\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:34:\"motion_fx_translateY_affectedRange\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:2:{s:5:\"start\";i:0;s:3:\"end\";i:100;}}s:27:\"motion_fx_translateX_effect\";s:0:\"\";s:30:\"motion_fx_translateX_direction\";s:0:\"\";s:26:\"motion_fx_translateX_speed\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:34:\"motion_fx_translateX_affectedRange\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:2:{s:5:\"start\";i:0;s:3:\"end\";i:100;}}s:24:\"motion_fx_opacity_effect\";s:0:\"\";s:27:\"motion_fx_opacity_direction\";s:6:\"out-in\";s:23:\"motion_fx_opacity_level\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:10;s:5:\"sizes\";a:0:{}}s:23:\"motion_fx_opacity_range\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:2:{s:5:\"start\";i:20;s:3:\"end\";i:80;}}s:21:\"motion_fx_blur_effect\";s:0:\"\";s:24:\"motion_fx_blur_direction\";s:6:\"out-in\";s:20:\"motion_fx_blur_level\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:7;s:5:\"sizes\";a:0:{}}s:20:\"motion_fx_blur_range\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:2:{s:5:\"start\";i:20;s:3:\"end\";i:80;}}s:24:\"motion_fx_rotateZ_effect\";s:0:\"\";s:27:\"motion_fx_rotateZ_direction\";s:0:\"\";s:23:\"motion_fx_rotateZ_speed\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:31:\"motion_fx_rotateZ_affectedRange\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:2:{s:5:\"start\";i:0;s:3:\"end\";i:100;}}s:22:\"motion_fx_scale_effect\";s:0:\"\";s:25:\"motion_fx_scale_direction\";s:6:\"out-in\";s:21:\"motion_fx_scale_speed\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:21:\"motion_fx_scale_range\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:2:{s:5:\"start\";i:20;s:3:\"end\";i:80;}}s:28:\"motion_fx_transform_origin_x\";s:6:\"center\";s:28:\"motion_fx_transform_origin_y\";s:6:\"center\";s:17:\"motion_fx_devices\";a:3:{i:0;s:7:\"desktop\";i:1;s:6:\"tablet\";i:2;s:6:\"mobile\";}s:15:\"motion_fx_range\";s:0:\"\";s:25:\"motion_fx_motion_fx_mouse\";s:0:\"\";s:27:\"motion_fx_mouseTrack_effect\";s:0:\"\";s:30:\"motion_fx_mouseTrack_direction\";s:0:\"\";s:26:\"motion_fx_mouseTrack_speed\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:21:\"motion_fx_tilt_effect\";s:0:\"\";s:24:\"motion_fx_tilt_direction\";s:0:\"\";s:20:\"motion_fx_tilt_speed\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:4;s:5:\"sizes\";a:0:{}}s:6:\"sticky\";s:0:\"\";s:9:\"sticky_on\";a:3:{i:0;s:7:\"desktop\";i:1;s:6:\"tablet\";i:2;s:6:\"mobile\";}s:13:\"sticky_offset\";i:0;s:21:\"sticky_effects_offset\";i:0;s:13:\"sticky_parent\";s:0:\"\";s:17:\"_animation_tablet\";s:0:\"\";s:17:\"_animation_mobile\";s:0:\"\";s:16:\"_animation_delay\";s:0:\"\";s:22:\"_background_background\";s:0:\"\";s:17:\"_background_color\";s:0:\"\";s:22:\"_background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"_background_color_b\";s:7:\"#f2295b\";s:24:\"_background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"_background_gradient_type\";s:6:\"linear\";s:26:\"_background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:29:\"_background_gradient_position\";s:13:\"center center\";s:17:\"_background_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:24:\"_background_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:20:\"_background_position\";s:0:\"\";s:27:\"_background_position_tablet\";s:0:\"\";s:27:\"_background_position_mobile\";s:0:\"\";s:16:\"_background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"_background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"_background_attachment\";s:0:\"\";s:18:\"_background_repeat\";s:0:\"\";s:25:\"_background_repeat_tablet\";s:0:\"\";s:25:\"_background_repeat_mobile\";s:0:\"\";s:16:\"_background_size\";s:0:\"\";s:23:\"_background_size_tablet\";s:0:\"\";s:23:\"_background_size_mobile\";s:0:\"\";s:20:\"_background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:27:\"_background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:27:\"_background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:22:\"_background_video_link\";s:0:\"\";s:23:\"_background_video_start\";s:0:\"\";s:21:\"_background_video_end\";s:0:\"\";s:21:\"_background_play_once\";s:0:\"\";s:26:\"_background_play_on_mobile\";s:0:\"\";s:24:\"_background_privacy_mode\";s:0:\"\";s:26:\"_background_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:29:\"_background_slideshow_gallery\";a:0:{}s:26:\"_background_slideshow_loop\";s:3:\"yes\";s:36:\"_background_slideshow_slide_duration\";i:5000;s:38:\"_background_slideshow_slide_transition\";s:4:\"fade\";s:41:\"_background_slideshow_transition_duration\";i:500;s:37:\"_background_slideshow_background_size\";s:0:\"\";s:44:\"_background_slideshow_background_size_tablet\";s:0:\"\";s:44:\"_background_slideshow_background_size_mobile\";s:0:\"\";s:41:\"_background_slideshow_background_position\";s:0:\"\";s:48:\"_background_slideshow_background_position_tablet\";s:0:\"\";s:48:\"_background_slideshow_background_position_mobile\";s:0:\"\";s:31:\"_background_slideshow_ken_burns\";s:0:\"\";s:46:\"_background_slideshow_ken_burns_zoom_direction\";s:2:\"in\";s:28:\"_background_hover_background\";s:0:\"\";s:23:\"_background_hover_color\";s:0:\"\";s:28:\"_background_hover_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:25:\"_background_hover_color_b\";s:7:\"#f2295b\";s:30:\"_background_hover_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:31:\"_background_hover_gradient_type\";s:6:\"linear\";s:32:\"_background_hover_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:35:\"_background_hover_gradient_position\";s:13:\"center center\";s:23:\"_background_hover_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_tablet\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:30:\"_background_hover_image_mobile\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:26:\"_background_hover_position\";s:0:\"\";s:33:\"_background_hover_position_tablet\";s:0:\"\";s:33:\"_background_hover_position_mobile\";s:0:\"\";s:22:\"_background_hover_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"_background_hover_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:29:\"_background_hover_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"_background_hover_attachment\";s:0:\"\";s:24:\"_background_hover_repeat\";s:0:\"\";s:31:\"_background_hover_repeat_tablet\";s:0:\"\";s:31:\"_background_hover_repeat_mobile\";s:0:\"\";s:22:\"_background_hover_size\";s:0:\"\";s:29:\"_background_hover_size_tablet\";s:0:\"\";s:29:\"_background_hover_size_mobile\";s:0:\"\";s:26:\"_background_hover_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:33:\"_background_hover_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:33:\"_background_hover_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_background_hover_video_link\";s:0:\"\";s:29:\"_background_hover_video_start\";s:0:\"\";s:27:\"_background_hover_video_end\";s:0:\"\";s:27:\"_background_hover_play_once\";s:0:\"\";s:32:\"_background_hover_play_on_mobile\";s:0:\"\";s:30:\"_background_hover_privacy_mode\";s:0:\"\";s:32:\"_background_hover_video_fallback\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:35:\"_background_hover_slideshow_gallery\";a:0:{}s:32:\"_background_hover_slideshow_loop\";s:3:\"yes\";s:42:\"_background_hover_slideshow_slide_duration\";i:5000;s:44:\"_background_hover_slideshow_slide_transition\";s:4:\"fade\";s:47:\"_background_hover_slideshow_transition_duration\";i:500;s:43:\"_background_hover_slideshow_background_size\";s:0:\"\";s:50:\"_background_hover_slideshow_background_size_tablet\";s:0:\"\";s:50:\"_background_hover_slideshow_background_size_mobile\";s:0:\"\";s:47:\"_background_hover_slideshow_background_position\";s:0:\"\";s:54:\"_background_hover_slideshow_background_position_tablet\";s:0:\"\";s:54:\"_background_hover_slideshow_background_position_mobile\";s:0:\"\";s:37:\"_background_hover_slideshow_ken_burns\";s:0:\"\";s:52:\"_background_hover_slideshow_ken_burns_zoom_direction\";s:2:\"in\";s:28:\"_background_hover_transition\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"_border_border\";s:0:\"\";s:13:\"_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:20:\"_border_width_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:20:\"_border_width_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:13:\"_border_color\";s:0:\"\";s:14:\"_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:21:\"_border_radius_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:21:\"_border_radius_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:27:\"_box_shadow_box_shadow_type\";s:0:\"\";s:22:\"_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:10;s:6:\"spread\";i:0;s:5:\"color\";s:15:\"rgba(0,0,0,0.5)\";}s:31:\"_box_shadow_box_shadow_position\";s:1:\" \";s:20:\"_border_hover_border\";s:0:\"\";s:19:\"_border_hover_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:26:\"_border_hover_width_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:26:\"_border_hover_width_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:19:\"_border_hover_color\";s:0:\"\";s:20:\"_border_radius_hover\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:27:\"_border_radius_hover_tablet\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:27:\"_border_radius_hover_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:8:\"isLinked\";b:1;}s:33:\"_box_shadow_hover_box_shadow_type\";s:0:\"\";s:28:\"_box_shadow_hover_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:10;s:6:\"spread\";i:0;s:5:\"color\";s:15:\"rgba(0,0,0,0.5)\";}s:37:\"_box_shadow_hover_box_shadow_position\";s:1:\" \";s:24:\"_border_hover_transition\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"_mask_switch\";s:0:\"\";s:11:\"_mask_shape\";s:6:\"circle\";s:11:\"_mask_image\";a:2:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:12:\"_mask_notice\";s:0:\"\";s:10:\"_mask_size\";s:7:\"contain\";s:17:\"_mask_size_tablet\";s:0:\"\";s:17:\"_mask_size_mobile\";s:0:\"\";s:16:\"_mask_size_scale\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:23:\"_mask_size_scale_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"_mask_size_scale_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:14:\"_mask_position\";s:13:\"center center\";s:21:\"_mask_position_tablet\";s:0:\"\";s:21:\"_mask_position_mobile\";s:0:\"\";s:16:\"_mask_position_x\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_mask_position_x_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"_mask_position_x_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:16:\"_mask_position_y\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"_mask_position_y_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"_mask_position_y_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"_mask_repeat\";s:9:\"no-repeat\";s:19:\"_mask_repeat_tablet\";s:0:\"\";s:19:\"_mask_repeat_mobile\";s:0:\"\";s:14:\"_element_width\";s:0:\"\";s:21:\"_element_width_tablet\";s:0:\"\";s:21:\"_element_width_mobile\";s:0:\"\";s:21:\"_element_custom_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_element_custom_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:28:\"_element_custom_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"_element_vertical_align\";s:0:\"\";s:30:\"_element_vertical_align_tablet\";s:0:\"\";s:30:\"_element_vertical_align_mobile\";s:0:\"\";s:9:\"_position\";s:0:\"\";s:21:\"_offset_orientation_h\";s:5:\"start\";s:9:\"_offset_x\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}s:16:\"_offset_x_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:16:\"_offset_x_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"_offset_x_end\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}s:20:\"_offset_x_end_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"_offset_x_end_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:21:\"_offset_orientation_v\";s:5:\"start\";s:9:\"_offset_y\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}s:16:\"_offset_y_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:16:\"_offset_y_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:13:\"_offset_y_end\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:1:\"0\";s:5:\"sizes\";a:0:{}}s:20:\"_offset_y_end_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:20:\"_offset_y_end_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:12:\"hide_desktop\";s:0:\"\";s:11:\"hide_tablet\";s:0:\"\";s:11:\"hide_mobile\";s:0:\"\";s:11:\"_attributes\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";}'),(5354,551,'stm_day_22','1'),(4023,881,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2209,2656,'_wp_page_template','template-homepage.php'),(2210,2656,'_elementor_edit_mode','builder'),(2211,2656,'_elementor_template_type','wp-page'),(2212,2656,'_elementor_version','2.9.13'),(2213,2656,'_elementor_pro_version','2.10.2'),(2214,2656,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"welcome\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experts international property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3b620cf\",\"elType\":\"widget\",\"settings\":{\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"title\":\"Watch Video\",\"icon_font\":\"fa fa-play\",\"video_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"video_width\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_color\":\"#000000\",\"border_video_border\":\"solid\",\"border_video_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"video_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"video_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"7\",\"isLinked\":false},\"video_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_element_width\":\"auto\",\"video_hover_color\":\"#FF9933\",\"title_hover_color\":\"#FF9933\"},\"elements\":[],\"widgetType\":\"rentex-video-popup\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\",\"id\":894},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_shape-1.jpg\",\"id\":901},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7464b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-2.jpg\",\"id\":895},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-3.jpg\",\"id\":896},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_shape-2.jpg\",\"id\":902},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"8d27bfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(0, 0, 0, 0.8)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"100\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d49997e\",\"elType\":\"widget\",\"settings\":{\"title\":\"career opportunities\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ed2f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work with us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a3464d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a18beed\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Contact Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"align\":\"center\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"759b97b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbfe81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8645ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a46ae5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f3809d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\"},\"elements\":[{\"id\":\"37a0469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0, 0, 0, 0.1)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dde80e\",\"elType\":\"widget\",\"settings\":{\"brands\":[{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-1.png\",\"id\":245},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"a8764fd\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-2.png\",\"id\":246},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"5e2b350\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-3.png\",\"id\":247},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"9f2cbed\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-4.png\",\"id\":248},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"c2c9587\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-5.png\",\"id\":249},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"08552e6\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-6.png\",\"id\":250},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"cccb448\"}],\"column\":\"6\",\"image_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"column_tablet\":\"4\",\"enable_carousel\":\"yes\",\"navigation\":\"none\"},\"elements\":[],\"widgetType\":\"rentex-brand\"}],\"isInner\":false}],\"isInner\":false}]'),(2241,2661,'_elementor_edit_mode','builder'),(2242,2661,'_elementor_template_type','wp-page'),(2243,2661,'_elementor_version','2.9.9'),(2244,2661,'_elementor_pro_version','2.10.3'),(4026,3215,'_wp_page_template','elementor_header_footer'),(4027,3215,'_elementor_edit_mode','builder'),(4028,3215,'_elementor_template_type','wp-page'),(4029,3215,'_elementor_version','2.9.9'),(4030,3215,'_elementor_pro_version','2.10.3'),(4031,3215,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}]},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4002,3211,'_elementor_css','a:6:{s:4:\"time\";i:1622224330;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4005,881,'stm_day_3','12'),(4008,881,'stm_day_11','10'),(3990,881,'stm_day_31','27'),(3991,848,'stm_day_31','1'),(3992,848,'stm_month_05','1'),(3993,848,'_elementor_css','a:6:{s:4:\"time\";i:1622445205;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:11:\"rentex-icon\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5127,3684,'_wp_attached_file','2021/06/1H.jpg'),(5128,3684,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:394;s:4:\"file\";s:14:\"2021/06/1H.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"1H-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"1H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"1H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"1H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"1H-615x394.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"1H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"1H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:6:\"1H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"1H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"1H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:394;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:10:\"1617018164\";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:{}}}'),(3995,2790,'stm_day_31','2'),(2196,2652,'_wp_attached_file','2021/05/beverly-hills-17.jpeg'),(2197,2652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1001;s:4:\"file\";s:29:\"2021/05/beverly-hills-17.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"beverly-hills-17-300x200.jpeg\";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:30:\"beverly-hills-17-1024x683.jpeg\";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:29:\"beverly-hills-17-150x150.jpeg\";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:29:\"beverly-hills-17-768x513.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"beverly-hills-17-1000x565.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:27:\"beverly-hills-17-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:29:\"beverly-hills-17-615x360.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:29:\"beverly-hills-17-615x450.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:29:\"beverly-hills-17-960x450.jpeg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:29:\"beverly-hills-17-674x450.jpeg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:29:\"beverly-hills-17-850x600.jpeg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:29:\"beverly-hills-17-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:29:\"beverly-hills-17-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"beverly-hills-17.jpeg\";s:5:\"width\";i:1500;s:6:\"height\";i:1001;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:21:\"beverly-hills-17.jpeg\";s:5:\"width\";i:1500;s:6:\"height\";i:1001;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:21:\"beverly-hills-17.jpeg\";s:5:\"width\";i:1500;s:6:\"height\";i:1001;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:30:\"trekandphoto - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:105:\"Afternoon aerial view of Beverly Hills and Century City buildings and streets in Los Angeles, California.\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"©trekandphoto - stock.adobe.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:105:\"Afternoon aerial view of Beverly Hills and Century City buildings and streets in Los Angeles, California.\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:66:{i:0;s:13:\"beverly hills\";i:1;s:11:\"los angeles\";i:2;s:6:\"aerial\";i:3;s:12:\"century city\";i:4;s:6:\"towers\";i:5;s:17:\"shopping district\";i:6;s:10:\"california\";i:7;s:5:\"urban\";i:8;s:12:\"architecture\";i:9;s:8:\"outdoors\";i:10;s:9:\"buildings\";i:11;s:12:\"architecture\";i:12;s:5:\"roofs\";i:13;s:9:\"afternoon\";i:14;s:5:\"above\";i:15;s:12:\"neighborhood\";i:16;s:4:\"city\";i:17;s:9:\"cityscape\";i:18;s:6:\"travel\";i:19;s:9:\"expensive\";i:20;s:17:\"business district\";i:21;s:6:\"street\";i:22;s:4:\"road\";i:23;s:5:\"above\";i:24;s:8:\"downtown\";i:25;s:7:\"skyline\";i:26;s:8:\"landmark\";i:27;s:13:\"pacific ocean\";i:28;s:5:\"coast\";i:29;s:5:\"homes\";i:30;s:6:\"houses\";i:31;s:9:\"landscape\";i:32;s:4:\"view\";i:33;s:6:\"famous\";i:34;s:13:\"beverly hills\";i:35;s:11:\"los angeles\";i:36;s:6:\"aerial\";i:37;s:12:\"century city\";i:38;s:6:\"towers\";i:39;s:17:\"shopping district\";i:40;s:10:\"california\";i:41;s:5:\"urban\";i:42;s:12:\"architecture\";i:43;s:8:\"outdoors\";i:44;s:9:\"buildings\";i:45;s:5:\"roofs\";i:46;s:9:\"afternoon\";i:47;s:5:\"above\";i:48;s:12:\"neighborhood\";i:49;s:4:\"city\";i:50;s:9:\"cityscape\";i:51;s:6:\"travel\";i:52;s:9:\"expensive\";i:53;s:17:\"business district\";i:54;s:6:\"street\";i:55;s:4:\"road\";i:56;s:8:\"downtown\";i:57;s:7:\"skyline\";i:58;s:8:\"landmark\";i:59;s:13:\"pacific ocean\";i:60;s:5:\"coast\";i:61;s:5:\"homes\";i:62;s:6:\"houses\";i:63;s:9:\"landscape\";i:64;s:4:\"view\";i:65;s:6:\"famous\";}}}'),(3996,3211,'_wp_page_template','default'),(3997,3211,'_elementor_edit_mode','builder'),(3998,3211,'_elementor_template_type','wp-page'),(3999,3211,'_elementor_version','3.2.4'),(4000,3211,'_elementor_pro_version','2.10.3'),(4001,3211,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(2199,2653,'_wp_attached_file','2021/05/water-rescue-1657783_1920.jpg'),(2200,2653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:4:\"file\";s:37:\"2021/05/water-rescue-1657783_1920.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"water-rescue-1657783_1920-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"water-rescue-1657783_1920-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"water-rescue-1657783_1920-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:37:\"water-rescue-1657783_1920-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:39:\"water-rescue-1657783_1920-1536x1017.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1017;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"water-rescue-1657783_1920-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:35:\"water-rescue-1657783_1920-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:37:\"water-rescue-1657783_1920-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:37:\"water-rescue-1657783_1920-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:37:\"water-rescue-1657783_1920-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:37:\"water-rescue-1657783_1920-680x450.jpg\";s:5:\"width\";i:680;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:37:\"water-rescue-1657783_1920-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:37:\"water-rescue-1657783_1920-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:37:\"water-rescue-1657783_1920-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"water-rescue-1657783_1920.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:29:\"water-rescue-1657783_1920.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2201,2654,'_wp_attached_file','2021/05/sunset-3128170_1920.jpg'),(2202,2654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1001;s:4:\"file\";s:31:\"2021/05/sunset-3128170_1920.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"sunset-3128170_1920-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"sunset-3128170_1920-1024x534.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"sunset-3128170_1920-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:31:\"sunset-3128170_1920-768x400.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"sunset-3128170_1920-1536x801.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"sunset-3128170_1920-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:29:\"sunset-3128170_1920-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:31:\"sunset-3128170_1920-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:31:\"sunset-3128170_1920-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:31:\"sunset-3128170_1920-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:31:\"sunset-3128170_1920-863x450.jpg\";s:5:\"width\";i:863;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:31:\"sunset-3128170_1920-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:31:\"sunset-3128170_1920-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:31:\"sunset-3128170_1920-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"sunset-3128170_1920.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1001;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:23:\"sunset-3128170_1920.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1001;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:{}}}'),(2240,2661,'_wp_page_template','template-homepage.php'),(2218,2658,'_wp_page_template','template-homepage.php'),(2219,2658,'_elementor_edit_mode','builder'),(2220,2658,'_elementor_template_type','wp-page'),(2221,2658,'_elementor_version','2.9.9'),(2222,2658,'_elementor_pro_version','2.10.3'),(2223,2658,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"welcome\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experts international property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3b620cf\",\"elType\":\"widget\",\"settings\":{\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"title\":\"Watch Video\",\"icon_font\":\"fa fa-play\",\"video_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"video_width\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_color\":\"#000000\",\"border_video_border\":\"solid\",\"border_video_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"video_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"video_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"7\",\"isLinked\":false},\"video_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_element_width\":\"auto\",\"video_hover_color\":\"#FF9933\",\"title_hover_color\":\"#FF9933\"},\"elements\":[],\"widgetType\":\"rentex-video-popup\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_shape-1.jpg\",\"id\":901},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7464b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_shape-2.jpg\",\"id\":902},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"8d27bfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(0, 0, 0, 0.8)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"100\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d49997e\",\"elType\":\"widget\",\"settings\":{\"title\":\"career opportunities\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ed2f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work with us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a3464d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a18beed\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Contact Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"align\":\"center\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"759b97b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbfe81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8645ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a46ae5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f3809d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\"},\"elements\":[{\"id\":\"37a0469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0, 0, 0, 0.1)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dde80e\",\"elType\":\"widget\",\"settings\":{\"brands\":[{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-1.png\",\"id\":245},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"a8764fd\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-2.png\",\"id\":246},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"5e2b350\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-3.png\",\"id\":247},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"9f2cbed\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-4.png\",\"id\":248},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"c2c9587\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-5.png\",\"id\":249},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"08552e6\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-6.png\",\"id\":250},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"cccb448\"}],\"column\":\"6\",\"image_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"column_tablet\":\"4\",\"enable_carousel\":\"yes\",\"navigation\":\"none\"},\"elements\":[],\"widgetType\":\"rentex-brand\"}],\"isInner\":false}],\"isInner\":false}]'),(2216,2657,'_wp_attached_file','2021/05/beverly-hills-116228_1920.jpg'),(2217,2657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:37:\"2021/05/beverly-hills-116228_1920.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"beverly-hills-116228_1920-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:38:\"beverly-hills-116228_1920-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:37:\"beverly-hills-116228_1920-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:37:\"beverly-hills-116228_1920-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:39:\"beverly-hills-116228_1920-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:38:\"beverly-hills-116228_1920-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:35:\"beverly-hills-116228_1920-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:37:\"beverly-hills-116228_1920-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:37:\"beverly-hills-116228_1920-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:37:\"beverly-hills-116228_1920-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:37:\"beverly-hills-116228_1920-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:37:\"beverly-hills-116228_1920-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:37:\"beverly-hills-116228_1920-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:37:\"beverly-hills-116228_1920-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"beverly-hills-116228_1920.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:29:\"beverly-hills-116228_1920.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1280;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:{}}}'),(2226,2659,'_wp_page_template','template-homepage.php'),(2227,2659,'_elementor_edit_mode','builder'),(2228,2659,'_elementor_template_type','wp-page'),(2229,2659,'_elementor_version','2.9.9'),(2230,2659,'_elementor_pro_version','2.10.3'),(2231,2659,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"welcome\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experts international property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3b620cf\",\"elType\":\"widget\",\"settings\":{\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"title\":\"Watch Video\",\"icon_font\":\"fa fa-play\",\"video_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"video_width\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_color\":\"#000000\",\"border_video_border\":\"solid\",\"border_video_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"video_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"video_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"7\",\"isLinked\":false},\"video_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_element_width\":\"auto\",\"video_hover_color\":\"#FF9933\",\"title_hover_color\":\"#FF9933\"},\"elements\":[],\"widgetType\":\"rentex-video-popup\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7464b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/region7-h9.jpg\",\"id\":2379},\"image_size\":\"thumbnail\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"8d27bfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(0, 0, 0, 0.8)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"100\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d49997e\",\"elType\":\"widget\",\"settings\":{\"title\":\"career opportunities\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ed2f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work with us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a3464d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a18beed\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Contact Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"align\":\"center\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"759b97b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbfe81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8645ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a46ae5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f3809d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\"},\"elements\":[{\"id\":\"37a0469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0, 0, 0, 0.1)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dde80e\",\"elType\":\"widget\",\"settings\":{\"brands\":[{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-1.png\",\"id\":245},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"a8764fd\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-2.png\",\"id\":246},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"5e2b350\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-3.png\",\"id\":247},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"9f2cbed\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-4.png\",\"id\":248},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"c2c9587\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-5.png\",\"id\":249},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"08552e6\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-6.png\",\"id\":250},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"cccb448\"}],\"column\":\"6\",\"image_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"column_tablet\":\"4\",\"enable_carousel\":\"yes\",\"navigation\":\"none\"},\"elements\":[],\"widgetType\":\"rentex-brand\"}],\"isInner\":false}],\"isInner\":false}]'),(3969,2650,'_elementor_css','a:6:{s:4:\"time\";i:1622193560;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(5118,2786,'stm_day_17','1'),(5119,2786,'stm_month_06','1'),(5120,3683,'inline_featured_image','0'),(5121,3683,'_edit_last','8'),(5122,3683,'_wp_page_template','default'),(5123,3683,'ulisting_publish_date','2021-06-17 09:40'),(5124,3683,'ulisting_first_publish','1'),(5125,3683,'ulisting_publish_notification','0'),(5126,3683,'_edit_lock','1626382382:10'),(2233,2660,'_wp_page_template','template-homepage.php'),(2234,2660,'_elementor_edit_mode','builder'),(2235,2660,'_elementor_template_type','wp-page'),(2236,2660,'_elementor_version','2.9.9'),(2237,2660,'_elementor_pro_version','2.10.3'),(2238,2660,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"welcome\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"The experts international property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3b620cf\",\"elType\":\"widget\",\"settings\":{\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"title\":\"Watch Video\",\"icon_font\":\"fa fa-play\",\"video_size\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"video_width\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_height\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"video_color\":\"#000000\",\"border_video_border\":\"solid\",\"border_video_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"video_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"video_padding\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"7\",\"isLinked\":false},\"video_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"6\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"700\",\"_element_width\":\"auto\",\"video_hover_color\":\"#FF9933\",\"title_hover_color\":\"#FF9933\"},\"elements\":[],\"widgetType\":\"rentex-video-popup\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"e7464b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-17.jpeg\",\"id\":2652},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"8d27bfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(0, 0, 0, 0.8)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"100\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d49997e\",\"elType\":\"widget\",\"settings\":{\"title\":\"career opportunities\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ed2f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work with us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a3464d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a18beed\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Contact Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"align\":\"center\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"759b97b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbfe81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8645ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a46ae5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f3809d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\"},\"elements\":[{\"id\":\"37a0469\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0, 0, 0, 0.1)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dde80e\",\"elType\":\"widget\",\"settings\":{\"brands\":[{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-1.png\",\"id\":245},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"a8764fd\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-2.png\",\"id\":246},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"5e2b350\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-3.png\",\"id\":247},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"9f2cbed\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-4.png\",\"id\":248},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"c2c9587\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-5.png\",\"id\":249},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"08552e6\"},{\"brand_title\":\"Brand Name\",\"type_brand\":\"image\",\"brand_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/brand-6.png\",\"id\":250},\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_id\":\"cccb448\"}],\"column\":\"6\",\"image_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"column_tablet\":\"4\",\"enable_carousel\":\"yes\",\"navigation\":\"none\"},\"elements\":[],\"widgetType\":\"rentex-brand\"}],\"isInner\":false}],\"isInner\":false}]'),(2247,2662,'_wp_page_template','template-homepage.php'),(2248,2662,'_elementor_edit_mode','builder'),(2249,2662,'_elementor_template_type','wp-page'),(2250,2662,'_elementor_version','2.9.9'),(2251,2662,'_elementor_pro_version','2.10.3');
INSERT INTO `wpew_postmeta` VALUES (2252,2662,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"8d27bfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(0, 0, 0, 0.8)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"100\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d49997e\",\"elType\":\"widget\",\"settings\":{\"title\":\"career opportunities\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ed2f25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Work with us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a3464d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a18beed\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"Contact Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"align\":\"center\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"759b97b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bbfe81\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c8645ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a46ae5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2319,2671,'_elementor_edit_mode','builder'),(2263,2664,'_wp_page_template','template-homepage.php'),(2264,2664,'_elementor_edit_mode','builder'),(2265,2664,'_elementor_template_type','wp-page'),(2266,2664,'_elementor_version','2.9.9'),(2267,2664,'_elementor_pro_version','2.10.3'),(2268,2664,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#000000\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#000000\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"80b4ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2318,2671,'_wp_page_template','template-homepage.php'),(2271,2665,'_wp_page_template','template-homepage.php'),(2272,2665,'_elementor_edit_mode','builder'),(2273,2665,'_elementor_template_type','wp-page'),(2274,2665,'_elementor_version','2.9.9'),(2275,2665,'_elementor_pro_version','2.10.3'),(2276,2665,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"80b4ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2279,2666,'_wp_page_template','template-homepage.php'),(2280,2666,'_elementor_edit_mode','builder'),(2281,2666,'_elementor_template_type','wp-page'),(2282,2666,'_elementor_version','2.9.9'),(2283,2666,'_elementor_pro_version','2.10.3'),(2284,2666,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"80b4ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2286,2667,'_wp_page_template','template-homepage.php'),(2287,2667,'_elementor_edit_mode','builder'),(2288,2667,'_elementor_template_type','wp-page'),(2289,2667,'_elementor_version','2.9.9'),(2290,2667,'_elementor_pro_version','2.10.3'),(2291,2667,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"80b4ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2294,2668,'_wp_page_template','template-homepage.php'),(2295,2668,'_elementor_edit_mode','builder'),(2296,2668,'_elementor_template_type','wp-page'),(2297,2668,'_elementor_version','2.9.9'),(2298,2668,'_elementor_pro_version','2.10.3'),(2299,2668,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"80b4ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(2303,2669,'_wp_page_template','template-homepage.php'),(2304,2669,'_elementor_edit_mode','builder'),(2305,2669,'_elementor_template_type','wp-page'),(2306,2669,'_elementor_version','2.9.9'),(2307,2669,'_elementor_pro_version','2.10.3'),(2308,2669,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"80b4ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2311,2670,'_wp_page_template','template-homepage.php'),(2312,2670,'_elementor_edit_mode','builder'),(2313,2670,'_elementor_template_type','wp-page'),(2314,2670,'_elementor_version','2.9.9'),(2315,2670,'_elementor_pro_version','2.10.3'),(2316,2670,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"80b4ee7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sign up\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"For exclusive news and market updates sign up for our newslette\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#292929\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2322,2671,'_elementor_pro_version','2.10.3'),(2323,2671,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#E0B800\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"72c2c99\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.10000000000000142108547152020037174224853515625,\"space_between_widgets\":0,\"_inline_size_tablet\":38,\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9116985\",\"elType\":\"widget\",\"settings\":{\"title\":\"our clients\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"We value<br> relationships\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c13e48\",\"elType\":\"widget\",\"settings\":{\"ending_number\":28687,\"title\":\"Satisfied Customers\",\"number_color\":\"#B1DC6F\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_number_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"title_color\":\"#B4B4B4\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_title_line_height\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_element_width\":\"auto\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_title_text_transform\":\"uppercase\",\"typography_title_font_weight\":\"300\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.900000000000005684341886080801486968994140625,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mrs. Clara\",\"testimonial_job\":\"Las Vegas\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-1.jpg\",\"id\":835}},{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/avatar-4.jpg\",\"id\":834},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2325,2672,'_wp_attached_file','2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg'),(2326,2672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:626;s:4:\"file\";s:60:\"2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"golden-badge-shield-with-gold-leaves_1017-30512-300x300.jpeg\";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:60:\"golden-badge-shield-with-gold-leaves_1017-30512-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:60:\"golden-badge-shield-with-gold-leaves_1017-30512-626x565.jpeg\";s:5:\"width\";i:626;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:58:\"golden-badge-shield-with-gold-leaves_1017-30512-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:60:\"golden-badge-shield-with-gold-leaves_1017-30512-615x360.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:60:\"golden-badge-shield-with-gold-leaves_1017-30512-615x450.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:60:\"golden-badge-shield-with-gold-leaves_1017-30512-626x450.jpeg\";s:5:\"width\";i:626;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:60:\"golden-badge-shield-with-gold-leaves_1017-30512-450x450.jpeg\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:60:\"golden-badge-shield-with-gold-leaves_1017-30512-626x600.jpeg\";s:5:\"width\";i:626;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:60:\"golden-badge-shield-with-gold-leaves_1017-30512-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:60:\"golden-badge-shield-with-gold-leaves_1017-30512-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:52:\"golden-badge-shield-with-gold-leaves_1017-30512.jpeg\";s:5:\"width\";i:626;s:6:\"height\";i:626;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:{}}}'),(2341,2675,'_elementor_edit_mode','builder'),(2342,2675,'_elementor_template_type','page'),(2343,2675,'_elementor_version','2.9.12'),(2344,2675,'_elementor_pro_version','2.10.2'),(2345,2675,'_wp_page_template','default'),(2346,2675,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#F5A44A\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream home\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you make the dream of new house a reality<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#E7963C\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for sellers<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Let\\u2019s us show you the ropes<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Get Moving\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e70c4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Buy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sell\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Rent\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2020 <a href=\\\"#\\\">Rentex<\\/a>. All Rights Reserved.\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Carefully crafted by <a style=\\\"color: #ffffff;\\\" href=\\\"#\\\">OpalThemes<\\/a>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2415,2686,'_elementor_edit_mode','builder'),(2407,2685,'_elementor_edit_mode','builder'),(2408,2685,'_elementor_template_type','page'),(2409,2685,'_elementor_version','2.9.9'),(2410,2685,'_elementor_pro_version','2.10.3'),(2411,2685,'_wp_page_template','default'),(2412,2685,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e70c4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Buy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sell\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Rent\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u00a9 2020 <a href=\\\"#\\\">Rentex<\\/a>. All Rights Reserved.\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Carefully crafted by <a style=\\\"color: #ffffff;\\\" href=\\\"#\\\">OpalThemes<\\/a>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2351,2676,'_wp_attached_file','2021/05/png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers.png'),(2352,2676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:920;s:6:\"height\";i:800;s:4:\"file\";s:114:\"2021/05/png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-300x261.png\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-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:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-768x668.png\";s:5:\"width\";i:768;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-920x565.png\";s:5:\"width\";i:920;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:112:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-615x360.png\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-615x450.png\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-920x450.png\";s:5:\"width\";i:920;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-518x450.png\";s:5:\"width\";i:518;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-850x600.png\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:114:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:106:\"png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers.png\";s:5:\"width\";i:920;s:6:\"height\";i:800;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:{}}}'),(2353,2677,'_wp_attached_file','2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png'),(2354,2677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:67:\"2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"81674-designer-diamond-gold-yellow-free-download-png-hq-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:67:\"81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:67:\"81674-designer-diamond-gold-yellow-free-download-png-hq-600x565.png\";s:5:\"width\";i:600;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:65:\"81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:67:\"81674-designer-diamond-gold-yellow-free-download-png-hq-600x360.png\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:67:\"81674-designer-diamond-gold-yellow-free-download-png-hq-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:67:\"81674-designer-diamond-gold-yellow-free-download-png-hq-600x450.png\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:67:\"81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png\";s:5:\"width\";i:450;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:67:\"81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:67:\"81674-designer-diamond-gold-yellow-free-download-png-hq-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:59:\"81674-designer-diamond-gold-yellow-free-download-png-hq.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;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:{}}}'),(2368,2679,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2370,2680,'_wp_page_template','template-homepage.php'),(2371,2680,'_elementor_edit_mode','builder'),(2372,2680,'_elementor_template_type','wp-page'),(2373,2680,'_elementor_version','2.9.9'),(2374,2680,'_elementor_pro_version','2.10.3'),(2375,2680,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72aab02\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"90\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9e3fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"130f592\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"776f9bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet our agents\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a37e83\",\"elType\":\"widget\",\"settings\":{\"per_page\":\"12\",\"enable_carousel\":\"yes\",\"check_visible\":\"yes\",\"columns_tablet\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_users\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2478,2695,'_wp_page_template','template-homepage.php'),(2384,2682,'_wp_page_template','template-homepage.php'),(2385,2682,'_elementor_edit_mode','builder'),(2386,2682,'_elementor_template_type','wp-page'),(2387,2682,'_elementor_version','2.9.9'),(2388,2682,'_elementor_pro_version','2.10.3'),(2389,2682,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2391,2683,'_wp_page_template','template-homepage.php'),(2392,2683,'_elementor_edit_mode','builder'),(2393,2683,'_elementor_template_type','wp-page'),(2394,2683,'_elementor_version','2.9.9'),(2395,2683,'_elementor_pro_version','2.10.3'),(2396,2683,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2398,2684,'_wp_page_template','template-homepage.php'),(2399,2684,'_elementor_edit_mode','builder'),(2400,2684,'_elementor_template_type','wp-page'),(2401,2684,'_elementor_version','2.9.9'),(2402,2684,'_elementor_pro_version','2.10.3'),(2403,2684,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"slideshow\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_gallery\":[{\"id\":915,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\"},{\"id\":894,\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_img-1.jpg\"}],\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"New Home \",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Helping 100 million renters find their perfect fit.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"All Services\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/pricing-plan\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ba62516\",\"elType\":\"widget\",\"settings\":{\"title\":\"our services\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-1.jpg\",\"id\":951},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2473,2475,'_edit_lock','1620960670:7'),(2406,1771,'stm_month_05','5'),(2416,2686,'_elementor_template_type','page'),(2417,2686,'_elementor_version','2.9.9'),(2418,2686,'_elementor_pro_version','2.10.3'),(2419,2686,'_wp_page_template','default'),(2420,2686,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e70c4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Buy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sell\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Rent\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2656,2718,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":40.5529999999999972715158946812152862548828125,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.70100000000000051159076974727213382720947265625,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":29.3509999999999990905052982270717620849609375,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2422,2687,'_elementor_edit_mode','builder'),(2423,2687,'_elementor_template_type','page'),(2424,2687,'_elementor_version','2.9.9'),(2425,2687,'_elementor_pro_version','2.10.3'),(2426,2687,'_wp_page_template','default'),(2427,2687,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e70c4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Buy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sell\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Rent\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#292929\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2429,2688,'_elementor_edit_mode','builder'),(2430,2688,'_elementor_template_type','page'),(2431,2688,'_elementor_version','2.9.9'),(2432,2688,'_elementor_pro_version','2.10.3'),(2433,2688,'_wp_page_template','default'),(2434,2688,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#292929\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e70c4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Buy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sell\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Rent\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#292929\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2655,2718,'_wp_page_template','default'),(2437,2689,'_elementor_edit_mode','builder'),(2438,2689,'_elementor_template_type','page'),(2439,2689,'_elementor_version','2.9.9'),(2440,2689,'_elementor_pro_version','2.10.3'),(2441,2689,'_wp_page_template','default'),(2442,2689,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e70c4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Buy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sell\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Rent\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2654,2718,'_elementor_pro_version','2.10.3'),(2634,2716,'_elementor_edit_mode','builder'),(2635,2716,'_elementor_template_type','page'),(2636,2716,'_elementor_version','2.9.9'),(2637,2716,'_elementor_pro_version','2.10.3'),(2445,2690,'_elementor_edit_mode','builder'),(2446,2690,'_elementor_template_type','page'),(2447,2690,'_elementor_version','2.9.9'),(2448,2690,'_elementor_pro_version','2.10.3'),(2449,2690,'_wp_page_template','default'),(2450,2690,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_border\":\"solid\",\"border_hover_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"border_hover_color\":\"#2B2B2B\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e70c4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Buy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sell\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Rent\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2638,2716,'_wp_page_template','default'),(2639,2716,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e70c4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Buy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Sell\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Rent\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2457,2691,'_wp_attached_file','2021/05/0012-scaled.jpg'),(2458,2691,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0012-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0012-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:17:\"0012-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:16:\"0012-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:16:\"0012-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:18:\"0012-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0012-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0012-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0012-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0012-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0012-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0012-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0012-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0012-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0012-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0012-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0012-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603131812\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0012.jpg\";}'),(2487,2696,'_elementor_edit_mode','builder'),(2488,2696,'_elementor_template_type','wp-page'),(2489,2696,'_elementor_version','2.9.9'),(2490,2696,'_elementor_pro_version','2.10.3'),(2491,2696,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/woman-in-infinity-pool-WUKFP3J.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"How we help\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2474,2393,'stm_month_05','1'),(3923,2790,'stm_day_25','15'),(2470,881,'_edit_lock','1623719884:1'),(2471,2475,'stm_day_14','5'),(2472,2475,'stm_month_05','5'),(2476,2694,'_wp_attached_file','2020/06/woman-in-infinity-pool-WUKFP3J.mp4'),(2477,2694,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:50260674;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:23;s:16:\"length_formatted\";s:4:\"0:23\";s:5:\"width\";i:3840;s:6:\"height\";i:2160;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:6:{s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"codec\";s:0:\"\";s:11:\"sample_rate\";d:6144;s:8:\"channels\";i:0;s:15:\"bits_per_sample\";i:12288;s:8:\"lossless\";b:0;}s:17:\"created_timestamp\";i:-2082844800;}'),(2558,2705,'_elementor_version','2.9.9'),(2559,2705,'_elementor_pro_version','2.10.3'),(2560,2705,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/woman-in-infinity-pool-WUKFP3J.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2541,2703,'_wp_page_template','template-homepage.php'),(2542,2703,'_elementor_edit_mode','builder'),(2543,2703,'_elementor_template_type','wp-page'),(2544,2703,'_elementor_version','2.9.9'),(2545,2703,'_elementor_pro_version','2.10.3'),(2546,2703,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/woman-in-infinity-pool-WUKFP3J.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2493,2697,'_wp_page_template','template-homepage.php'),(2494,2697,'_elementor_edit_mode','builder'),(2495,2697,'_elementor_template_type','wp-page'),(2496,2697,'_elementor_version','2.9.9'),(2497,2697,'_elementor_pro_version','2.10.3'),(2498,2697,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/woman-in-infinity-pool-WUKFP3J.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"88d3d7a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"504030d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.45900000000000318323145620524883270263671875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"f48c625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2318bf0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.5390000000000014779288903810083866119384765625,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"9876d29\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/07\\/h3_img-6..jpg\",\"id\":2372},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Famous Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"2c5ce38\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"04591cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.94499999999999317878973670303821563720703125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d410c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"ade9578\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.053000000000000824229573481716215610504150390625,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"1282c2b\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"da1f529\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.965000000000003410605131648480892181396484375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"b51eecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"b7f1a9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.0330000000000012505552149377763271331787109375,\"content_position\":\"top\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"ebcfcdd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2502,2642,'stm_post_views','66'),(2503,2642,'stm_day_14','18'),(2504,2642,'stm_month_05','50'),(2505,2642,'_edit_lock','1626175813:8'),(2506,2642,'stm_listing_item_card_0','a:2:{s:6:\"config\";a:0:{}s:8:\"sections\";a:0:{}}'),(2507,2642,'ulisting_listing_type_item_card_element_data_0','[]'),(2977,2642,'stm_listing_type_submit_form_col','a:15:{s:8:\"category\";s:2:\"12\";s:6:\"region\";s:2:\"12\";i:1;s:2:\"12\";i:2;s:2:\"12\";i:3;s:2:\"12\";i:4;s:2:\"12\";i:5;s:2:\"12\";i:6;s:2:\"12\";i:7;s:2:\"12\";i:8;s:2:\"12\";i:10;s:2:\"12\";i:11;s:2:\"12\";i:12;s:2:\"12\";i:14;s:2:\"12\";i:15;s:2:\"12\";}'),(2508,2642,'ulisting_listing_type_item_card_element_data_grid','[]'),(4011,2790,'stm_month_06','10'),(5355,551,'_elementor_css','a:5:{s:4:\"time\";i:1624390179;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(2524,2643,'stm_post_views','132'),(2525,2643,'stm_day_14','12'),(2526,2643,'stm_month_05','22'),(2527,581,'stm_month_05','1'),(3942,2784,'stm_day_25','1'),(3935,2642,'stm_day_25','8'),(2555,2705,'_wp_page_template','template-homepage.php'),(2556,2705,'_elementor_edit_mode','builder'),(2557,2705,'_elementor_template_type','wp-page'),(2548,2704,'_wp_page_template','template-homepage.php'),(2549,2704,'_elementor_edit_mode','builder'),(2550,2704,'_elementor_template_type','wp-page'),(2551,2704,'_elementor_version','2.9.9'),(2552,2704,'_elementor_pro_version','2.10.3');
INSERT INTO `wpew_postmeta` VALUES (2553,2704,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/woman-in-infinity-pool-WUKFP3J.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"23e0598\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"709ec15\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"097658b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bdca378\",\"elType\":\"widget\",\"settings\":{\"title\":\"World Class Bevery Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66435ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0272102\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b614ead\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Our long-standing experience\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Corporate social responsibility\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Specialist services\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Market-leading research\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b3ab09b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ea27228\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"4d269e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"8528fe0\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"primary\",\"text\":\"More About Us\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6d4a87b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"8741b21\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"10\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\"},\"elements\":[{\"id\":\"aa0a5ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.3239999999999980673237587325274944305419921875,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"isInner\":true},{\"id\":\"448a362\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.67399999999999948840923025272786617279052734375,\"content_position\":\"bottom\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fa38ecf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/h3_img-5.jpg\",\"id\":1892},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"63c5041\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"align\":\"left\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2539,2702,'_wp_attached_file','2021/05/hollywood-sign-1.jpeg'),(2540,2702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:669;s:6:\"height\";i:446;s:4:\"file\";s:29:\"2021/05/hollywood-sign-1.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"hollywood-sign-1-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"hollywood-sign-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:27:\"hollywood-sign-1-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:29:\"hollywood-sign-1-615x360.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:29:\"hollywood-sign-1-615x446.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:29:\"hollywood-sign-1-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:29:\"hollywood-sign-1-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"hollywood-sign-1.jpeg\";s:5:\"width\";i:669;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"hollywood-sign-1.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"hollywood-sign-1.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:21:\"hollywood-sign-1.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"hollywood-sign-1.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"hollywood-sign-1.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"hollywood-sign-1.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"hollywood-sign-1.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:446;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:21:\"hollywood-sign-1.jpeg\";s:5:\"width\";i:669;s:6:\"height\";i:446;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:{}}}'),(2625,2715,'_wp_page_template','template-homepage.php'),(2626,2715,'_elementor_edit_mode','builder'),(2627,2715,'_elementor_template_type','wp-page'),(2628,2715,'_elementor_version','2.9.9'),(2629,2715,'_elementor_pro_version','2.10.3'),(2630,2715,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/woman-in-infinity-pool-WUKFP3J.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4013,2720,'stm_month_06','2'),(3934,2643,'_edit_lock','1624423667:8'),(3933,2720,'stm_day_25','1'),(6113,3895,'_menu_item_type','post_type'),(6112,2712,'_wp_old_date','2021-05-14'),(6109,2713,'_wp_old_date','2021-05-14'),(2580,2710,'_menu_item_type','custom'),(2581,2710,'_menu_item_menu_item_parent','0'),(2582,2710,'_menu_item_object_id','2710'),(2583,2710,'_menu_item_object','custom'),(2584,2710,'_menu_item_target',''),(2585,2710,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2586,2710,'_menu_item_xfn',''),(2587,2710,'_menu_item_url','https://om7717.dev34.info/properties/'),(2589,2711,'_menu_item_type','custom'),(2590,2711,'_menu_item_menu_item_parent','0'),(2591,2711,'_menu_item_object_id','2711'),(2592,2711,'_menu_item_object','custom'),(2593,2711,'_menu_item_target',''),(2594,2711,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2595,2711,'_menu_item_xfn',''),(2596,2711,'_menu_item_url','https://om7717.dev34.info/about-us/'),(2598,2712,'_menu_item_type','custom'),(2599,2712,'_menu_item_menu_item_parent','0'),(2600,2712,'_menu_item_object_id','2712'),(2601,2712,'_menu_item_object','custom'),(2602,2712,'_menu_item_target',''),(2603,2712,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2604,2712,'_menu_item_xfn',''),(2605,2712,'_menu_item_url','https://om7717.dev34.info/contact/'),(2607,2713,'_menu_item_type','custom'),(2608,2713,'_menu_item_menu_item_parent','0'),(2609,2713,'_menu_item_object_id','2713'),(2610,2713,'_menu_item_object','custom'),(2611,2713,'_menu_item_target',''),(2612,2713,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2613,2713,'_menu_item_xfn',''),(2614,2713,'_menu_item_url','https://om7717.dev34.info/list-your-property/'),(2914,2801,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0026-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0026-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:17:\"0026-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:16:\"0026-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:16:\"0026-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:18:\"0026-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0026-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0026-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0026-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0026-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0026-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0026-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0026-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0026-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0026-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0026-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0026-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603124761\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0026.jpg\";}'),(2915,2802,'_wp_page_template','template-homepage.php'),(2916,2802,'_elementor_edit_mode','builder'),(2917,2802,'_elementor_template_type','wp-page'),(2918,2802,'_elementor_version','2.9.9'),(2919,2802,'_elementor_pro_version','2.10.3'),(2920,2802,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/woman-in-infinity-pool-WUKFP3J.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2651,2718,'_elementor_edit_mode','builder'),(2652,2718,'_elementor_template_type','page'),(2653,2718,'_elementor_version','2.9.9'),(2643,2717,'_elementor_edit_mode','builder'),(2644,2717,'_elementor_template_type','page'),(2645,2717,'_elementor_version','2.9.9'),(2646,2717,'_elementor_pro_version','2.10.3'),(2647,2717,'_wp_page_template','default'),(2648,2717,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"40\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":16,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":22,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"About The Agency\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"487391a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Meet The Agents\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Development Group\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"The Agency Creates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8d4496d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":10,\"_inline_size_tablet\":33,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd90a6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"connect\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"aaf413b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Register an Account\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"The Agency Daily\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":52,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":true}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3203,2907,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14-updated-.jpeg\",\"id\":2904},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2658,2719,'_elementor_edit_mode','builder'),(2659,2719,'_elementor_template_type','page'),(2660,2719,'_elementor_version','2.9.9'),(2661,2719,'_elementor_pro_version','2.10.3'),(2662,2719,'_wp_page_template','default'),(2663,2719,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2676,2722,'_elementor_edit_mode','builder'),(2677,2722,'_elementor_template_type','page'),(2678,2722,'_elementor_version','2.9.9'),(2679,2722,'_elementor_pro_version','2.10.3'),(2680,2722,'_wp_page_template','default'),(2667,2721,'_elementor_edit_mode','builder'),(2668,2721,'_elementor_template_type','page'),(2669,2721,'_elementor_version','2.9.9'),(2670,2721,'_elementor_pro_version','2.10.3'),(2671,2721,'_wp_page_template','default'),(2672,2721,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2666,2720,'inline_featured_image','0'),(2681,2722,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#292929\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2685,2723,'_elementor_edit_mode','builder'),(2686,2723,'_elementor_template_type','page'),(2687,2723,'_elementor_version','2.9.9'),(2688,2723,'_elementor_pro_version','2.10.3'),(2689,2723,'_wp_page_template','default'),(2690,2723,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3198,2907,'_elementor_edit_mode','builder'),(3199,2907,'_elementor_template_type','page'),(3200,2907,'_elementor_version','2.9.9'),(3201,2907,'_elementor_pro_version','2.10.3'),(3202,2907,'_wp_page_template','default'),(2703,2725,'_elementor_edit_mode','builder'),(2704,2725,'_elementor_template_type','page'),(2705,2725,'_elementor_version','2.9.9'),(2706,2725,'_elementor_pro_version','2.10.3'),(2707,2725,'_wp_page_template','default'),(2708,2725,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-footer4.png\",\"id\":1789},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"62b7a70\",\"elType\":\"widget\",\"settings\":{\"title\":\"global\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a648928\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb63a\",\"elType\":\"widget\",\"settings\":{\"title\":\"brand awards\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4d096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"2019-2020\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2694,2724,'_wp_attached_file','2021/05/0001-scaled.jpg'),(2695,2724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0001-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0001-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:17:\"0001-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:16:\"0001-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:16:\"0001-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:18:\"0001-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0001-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0001-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0001-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0001-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0001-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0001-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0001-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0001-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0001-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603132153\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:3:\"2.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0001.jpg\";}'),(2696,2720,'_edit_last','8'),(2697,2720,'_thumbnail_id','2724'),(2698,2720,'_wp_page_template','default'),(2699,2720,'ulisting_publish_date','2021-05-14 05:39'),(2700,2720,'ulisting_first_publish','1'),(2701,2720,'ulisting_publish_notification','0'),(2702,2720,'_edit_lock','1626382628:10'),(2800,2720,'stm_post_views','26'),(2801,2720,'stm_day_14','17'),(2802,2720,'stm_month_05','13'),(3147,2899,'_wp_page_template','template-homepage.php'),(3148,2899,'_elementor_edit_mode','builder'),(3149,2899,'_elementor_template_type','wp-page'),(3150,2899,'_elementor_version','2.9.9'),(3151,2899,'_elementor_pro_version','2.10.3'),(3152,2899,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Cool Number\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Cool Number\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a85bba\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Cool Number\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2799,2720,'floor_plans','		[]\r\n	'),(2804,2769,'inline_featured_image','0'),(2805,2770,'_wp_attached_file','2021/05/1620974688234.jpeg'),(2806,2770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:190;s:4:\"file\";s:26:\"2021/05/1620974688234.jpeg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"1620974688234-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:24:\"1620974688234-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:26:\"1620974688234-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:26:\"1620974688234-200x180.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"1620974688234.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"1620974688234.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:18:\"1620974688234.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"1620974688234.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"1620974688234.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";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:{}}}'),(2807,2769,'_edit_last','8'),(2808,2769,'_thumbnail_id','2770'),(2809,2769,'_wp_page_template','default'),(2810,2769,'ulisting_publish_date','2021-05-14 07:02'),(2811,2769,'ulisting_first_publish','1'),(2812,2769,'ulisting_publish_notification','0'),(2813,2769,'_edit_lock','1626382627:10'),(2814,2769,'floor_plans','		[]\r\n	'),(2815,2769,'stm_post_views','20'),(2816,2769,'stm_day_14','15'),(2817,2769,'stm_month_05','14'),(2820,2771,'_wp_attached_file','2021/05/0002-scaled.jpg'),(2821,2771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0002-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0002-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:17:\"0002-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:16:\"0002-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:16:\"0002-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:18:\"0002-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0002-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0002-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0002-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0002-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0002-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0002-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0002-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0002-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0002-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0002-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603122285\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0002.jpg\";}'),(2822,2772,'_wp_attached_file','2021/05/0003-scaled.jpg'),(2823,2772,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0003-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0003-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:17:\"0003-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:16:\"0003-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:16:\"0003-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:18:\"0003-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0003-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0003-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0003-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0003-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0003-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0003-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0003-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0003-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0003-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0003-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0003-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603130733\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0003.jpg\";}'),(2824,2773,'_wp_attached_file','2021/05/0004-scaled.jpg'),(2825,2773,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0004-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0004-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:17:\"0004-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:16:\"0004-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:16:\"0004-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:18:\"0004-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0004-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0004-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0004-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0004-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0004-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0004-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0004-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0004-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0004-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0004-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603131551\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0004.jpg\";}'),(2826,2774,'_wp_attached_file','2021/05/0005-scaled.jpg'),(2827,2774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0005-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0005-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:17:\"0005-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:16:\"0005-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:16:\"0005-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:18:\"0005-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0005-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0005-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0005-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0005-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0005-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0005-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0005-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0005-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0005-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0005-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603124911\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0005.jpg\";}'),(2828,2775,'_wp_attached_file','2021/05/0006-scaled.jpg'),(2829,2775,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0006-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0006-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:17:\"0006-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:16:\"0006-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:16:\"0006-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:18:\"0006-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0006-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0006-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0006-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0006-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0006-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0006-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0006-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0006-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0006-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0006-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603125198\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0006.jpg\";}'),(2830,2776,'_wp_attached_file','2021/05/0007-scaled.jpg'),(2831,2776,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0007-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0007-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:17:\"0007-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:16:\"0007-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:16:\"0007-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:18:\"0007-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0007-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0007-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0007-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0007-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0007-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0007-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0007-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0007-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0007-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0007-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0007-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603130511\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0007.jpg\";}'),(2832,2777,'_wp_attached_file','2021/05/0008-scaled.jpg'),(2833,2777,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0008-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0008-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:17:\"0008-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:16:\"0008-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:16:\"0008-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:18:\"0008-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0008-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0008-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0008-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0008-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0008-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0008-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0008-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0008-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0008-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0008-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0008-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603128753\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0008.jpg\";}'),(2834,2778,'_wp_attached_file','2021/05/0009-scaled.jpg'),(2835,2778,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0009-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0009-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:17:\"0009-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:16:\"0009-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:16:\"0009-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:18:\"0009-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0009-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0009-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0009-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0009-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0009-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0009-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0009-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0009-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0009-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0009-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0009-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603128923\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0009.jpg\";}'),(2836,2779,'inline_featured_image','0'),(2837,2780,'_wp_attached_file','2021/05/0010-scaled.jpg'),(2838,2780,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0010-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0010-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:17:\"0010-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:16:\"0010-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:16:\"0010-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:18:\"0010-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0010-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0010-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0010-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0010-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0010-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0010-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0010-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0010-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0010-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0010-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603131262\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0010.jpg\";}'),(2839,2779,'_edit_last','10'),(2840,2779,'_wp_page_template','default'),(2841,2779,'ulisting_publish_date','2021-05-14 07:13'),(2842,2779,'ulisting_first_publish','1'),(2843,2779,'ulisting_publish_notification','0'),(2844,2779,'_edit_lock','1626382619:10'),(2845,2781,'inline_featured_image','0'),(2846,2782,'_wp_attached_file','2021/05/0011-scaled.jpg'),(2847,2782,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0011-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0011-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:17:\"0011-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:16:\"0011-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:16:\"0011-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:18:\"0011-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0011-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0011-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0011-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0011-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0011-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0011-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0011-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0011-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0011-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0011-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0011-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603131725\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0011.jpg\";}'),(2848,2783,'_wp_attached_file','2021/05/0012-1-scaled.jpg'),(2849,2781,'_edit_last','10'),(2850,2781,'_wp_page_template','default'),(2851,2781,'ulisting_publish_date','2021-05-14 07:14'),(2852,2781,'ulisting_first_publish','1'),(2853,2781,'ulisting_publish_notification','0'),(2854,2781,'_edit_lock','1626382920:10'),(2855,2783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0012-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0012-1-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:19:\"0012-1-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:18:\"0012-1-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:18:\"0012-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0012-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0012-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0012-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0012-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0012-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0012-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0012-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0012-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0012-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0012-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0012-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0012-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603131812\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0012-1.jpg\";}'),(2856,2784,'inline_featured_image','0'),(2857,2785,'_wp_attached_file','2021/05/0013-scaled.jpg'),(2858,2785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0013-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0013-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:17:\"0013-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:16:\"0013-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:16:\"0013-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:18:\"0013-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0013-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0013-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0013-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0013-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0013-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0013-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0013-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0013-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0013-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0013-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0013-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603131983\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0013.jpg\";}'),(2859,2784,'_edit_last','10'),(2860,2784,'_wp_page_template','default'),(2861,2784,'ulisting_publish_date','2021-05-14 07:14'),(2862,2784,'ulisting_first_publish','1'),(2863,2784,'ulisting_publish_notification','0'),(2864,2784,'_edit_lock','1626382777:10'),(2865,2786,'inline_featured_image','0'),(2866,2787,'_wp_attached_file','2021/05/0014-scaled.jpg'),(2867,2787,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:23:\"2021/05/0014-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0014-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:17:\"0014-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:16:\"0014-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:16:\"0014-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:18:\"0014-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0014-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0014-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0014-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0014-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0014-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0014-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0014-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0014-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0014-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0014-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0014-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603122394\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0014.jpg\";}'),(2868,2786,'_edit_last','10'),(2869,2786,'_wp_page_template','default'),(2870,2786,'ulisting_publish_date','2021-05-14 07:14'),(2871,2786,'ulisting_first_publish','1'),(2872,2786,'ulisting_publish_notification','0'),(2873,2786,'_edit_lock','1626382905:10'),(2874,2788,'inline_featured_image','0'),(2875,2789,'_wp_attached_file','2021/05/0015-scaled.jpg'),(2876,2789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0015-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0015-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:17:\"0015-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:16:\"0015-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:16:\"0015-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:18:\"0015-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0015-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0015-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0015-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0015-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0015-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0015-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0015-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0015-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0015-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0015-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0015-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603122530\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0015.jpg\";}'),(2877,2788,'_edit_last','10'),(2878,2788,'_wp_page_template','default'),(2879,2788,'ulisting_publish_date','2021-05-14 07:15'),(2880,2788,'ulisting_first_publish','1'),(2881,2788,'ulisting_publish_notification','0'),(2882,2788,'_edit_lock','1626382980:10'),(2883,2790,'inline_featured_image','0'),(2884,2791,'_wp_attached_file','2021/05/0016-scaled.jpg'),(2885,2791,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0016-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0016-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:17:\"0016-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:16:\"0016-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:16:\"0016-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:18:\"0016-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0016-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0016-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0016-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0016-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0016-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0016-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0016-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0016-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0016-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0016-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0016-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603122552\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0016.jpg\";}'),(2886,2790,'_edit_last','10'),(2887,2790,'_wp_page_template','default'),(2888,2790,'ulisting_publish_date','2021-05-14 07:15'),(2889,2790,'ulisting_first_publish','1'),(2890,2790,'ulisting_publish_notification','0'),(2891,2790,'_edit_lock','1626383051:10'),(2892,2792,'_wp_attached_file','2021/05/0017-scaled.jpg'),(2893,2792,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0017-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0017-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:17:\"0017-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:16:\"0017-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:16:\"0017-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:18:\"0017-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0017-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0017-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0017-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0017-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0017-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0017-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0017-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0017-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0017-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0017-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0017-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603122844\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0017.jpg\";}'),(2894,2793,'_wp_attached_file','2021/05/0018-scaled.jpg'),(2895,2793,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0018-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0018-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:17:\"0018-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:16:\"0018-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:16:\"0018-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:18:\"0018-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0018-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0018-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0018-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0018-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0018-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0018-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0018-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0018-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0018-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0018-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0018-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603123167\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0018.jpg\";}'),(2896,2794,'_wp_attached_file','2021/05/0019-scaled.jpg'),(2897,2794,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0019-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0019-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:17:\"0019-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:16:\"0019-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:16:\"0019-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:18:\"0019-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0019-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0019-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0019-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0019-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0019-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0019-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0019-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0019-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0019-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0019-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0019-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603123449\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0019.jpg\";}'),(2898,2790,'stm_post_views','91'),(2899,2790,'stm_day_14','29'),(2900,2790,'stm_month_05','79'),(2901,2795,'_wp_attached_file','2021/05/0020-scaled.jpg'),(2902,2795,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0020-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0020-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:17:\"0020-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:16:\"0020-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:16:\"0020-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:18:\"0020-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0020-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0020-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0020-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0020-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0020-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0020-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0020-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0020-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0020-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0020-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0020-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603123474\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0020.jpg\";}'),(2903,2796,'_wp_attached_file','2021/05/0021-scaled.jpg'),(2904,2796,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0021-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0021-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:17:\"0021-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:16:\"0021-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:16:\"0021-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:18:\"0021-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0021-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0021-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0021-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0021-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0021-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0021-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0021-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0021-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0021-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0021-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0021-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603123593\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0021.jpg\";}'),(2905,2797,'_wp_attached_file','2021/05/0022-scaled.jpg'),(2906,2797,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0022-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0022-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:17:\"0022-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:16:\"0022-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:16:\"0022-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:18:\"0022-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0022-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0022-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0022-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0022-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0022-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0022-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0022-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0022-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0022-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0022-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0022-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603123910\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0022.jpg\";}'),(2907,2798,'_wp_attached_file','2021/05/0023-scaled.jpg'),(2908,2798,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:23:\"2021/05/0023-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0023-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:17:\"0023-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:16:\"0023-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:16:\"0023-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:18:\"0023-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:18:\"0023-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0023-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0023-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0023-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0023-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0023-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0023-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0023-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0023-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0023-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0023-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603124126\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0023.jpg\";}'),(2909,2799,'_wp_attached_file','2021/05/0024-scaled.jpg'),(2910,2799,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0024-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0024-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:17:\"0024-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:16:\"0024-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:16:\"0024-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:18:\"0024-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0024-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0024-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0024-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0024-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0024-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0024-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0024-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0024-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0024-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0024-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0024-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603124280\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0024.jpg\";}'),(2911,2800,'_wp_attached_file','2021/05/0025-scaled.jpg'),(2912,2800,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0025-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0025-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:17:\"0025-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:16:\"0025-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:16:\"0025-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:18:\"0025-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0025-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0025-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0025-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0025-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0025-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0025-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0025-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0025-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0025-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0025-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0025-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603124567\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0025.jpg\";}'),(2913,2801,'_wp_attached_file','2021/05/0026-scaled.jpg'),(3006,2841,'_wp_page_template','template-homepage.php'),(3007,2841,'_elementor_edit_mode','builder'),(3008,2841,'_elementor_template_type','wp-page'),(3009,2841,'_elementor_version','2.9.9'),(3010,2841,'_elementor_pro_version','2.10.3'),(3011,2841,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(2923,2803,'_wp_attached_file','2021/05/0027-scaled.jpg'),(2924,2803,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0027-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0027-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:17:\"0027-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:16:\"0027-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:16:\"0027-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:18:\"0027-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0027-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0027-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0027-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0027-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0027-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0027-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0027-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0027-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0027-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0027-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0027-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603125424\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0027.jpg\";}'),(2925,2804,'_wp_attached_file','2021/05/0028-scaled.jpg'),(2926,2804,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0028-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0028-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:17:\"0028-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:16:\"0028-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:16:\"0028-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:18:\"0028-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0028-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0028-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0028-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0028-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0028-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0028-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0028-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0028-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0028-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0028-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0028-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603125549\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0028.jpg\";}'),(2927,2805,'_wp_attached_file','2021/05/0029-scaled.jpg'),(2928,2805,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0029-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0029-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:17:\"0029-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:16:\"0029-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:16:\"0029-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:18:\"0029-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0029-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0029-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0029-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0029-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0029-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0029-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0029-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0029-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0029-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0029-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0029-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603125832\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0029.jpg\";}'),(2929,2806,'_wp_attached_file','2021/05/0030-scaled.jpg'),(2930,2806,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0030-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0030-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:17:\"0030-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:16:\"0030-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:16:\"0030-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:18:\"0030-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0030-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0030-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0030-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0030-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0030-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0030-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0030-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0030-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0030-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0030-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0030-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603126097\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0030.jpg\";}'),(2931,2807,'_wp_attached_file','2021/05/0031-scaled.jpg'),(2932,2807,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0031-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0031-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:17:\"0031-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:16:\"0031-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:16:\"0031-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:18:\"0031-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0031-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0031-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0031-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0031-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0031-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0031-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0031-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0031-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0031-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0031-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0031-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603126142\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0031.jpg\";}'),(2933,2808,'_wp_attached_file','2021/05/0032-scaled.jpg'),(2934,2808,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0032-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0032-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:17:\"0032-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:16:\"0032-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:16:\"0032-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:18:\"0032-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0032-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0032-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0032-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0032-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0032-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0032-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0032-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0032-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0032-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0032-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0032-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603126301\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0032.jpg\";}'),(2935,2809,'_wp_attached_file','2021/05/0033-scaled.jpg'),(2936,2809,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0033-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0033-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:17:\"0033-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:16:\"0033-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:16:\"0033-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:18:\"0033-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0033-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0033-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0033-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0033-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0033-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0033-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0033-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0033-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0033-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0033-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0033-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603126407\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0033.jpg\";}'),(2937,2810,'_wp_attached_file','2021/05/0034-scaled.jpg'),(2938,2810,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0034-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0034-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:17:\"0034-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:16:\"0034-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:16:\"0034-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:18:\"0034-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0034-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0034-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0034-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0034-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0034-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0034-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0034-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0034-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0034-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0034-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0034-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603126613\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0034.jpg\";}'),(2939,2811,'_wp_attached_file','2021/05/0035-scaled.jpg'),(2940,2811,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0035-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0035-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:17:\"0035-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:16:\"0035-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:16:\"0035-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:18:\"0035-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0035-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0035-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0035-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0035-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0035-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0035-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0035-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0035-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0035-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0035-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0035-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603126784\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0035.jpg\";}'),(2941,2812,'_wp_attached_file','2021/05/0036-scaled.jpg'),(2942,2812,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0036-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0036-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:17:\"0036-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:16:\"0036-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:16:\"0036-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:18:\"0036-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0036-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0036-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0036-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0036-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0036-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0036-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0036-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0036-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0036-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0036-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0036-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603126965\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0036.jpg\";}'),(2944,2813,'_wp_attached_file','2021/05/0037-scaled.jpg'),(2945,2813,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0037-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0037-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:17:\"0037-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:16:\"0037-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:16:\"0037-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:18:\"0037-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0037-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0037-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0037-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0037-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0037-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0037-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0037-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0037-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0037-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0037-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0037-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603127200\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0037.jpg\";}'),(2946,2814,'_wp_attached_file','2021/05/0038-scaled.jpg'),(2947,2814,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0038-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0038-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:17:\"0038-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:16:\"0038-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:16:\"0038-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:18:\"0038-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0038-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0038-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0038-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0038-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0038-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0038-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0038-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0038-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0038-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0038-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0038-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603127289\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0038.jpg\";}'),(2948,2815,'_wp_attached_file','2021/05/0039-scaled.jpg'),(2949,2815,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0039-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0039-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:17:\"0039-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:16:\"0039-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:16:\"0039-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:18:\"0039-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0039-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0039-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0039-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0039-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0039-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0039-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0039-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0039-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0039-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0039-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0039-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603127548\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0039.jpg\";}'),(2950,2816,'_wp_attached_file','2021/05/0040-scaled.jpg'),(2951,2816,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0040-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0040-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:17:\"0040-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:16:\"0040-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:16:\"0040-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:18:\"0040-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0040-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0040-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0040-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0040-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0040-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0040-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0040-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0040-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0040-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0040-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0040-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603127724\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0040.jpg\";}'),(2952,2817,'_wp_attached_file','2021/05/0041-scaled.jpg'),(2953,2817,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0041-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0041-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:17:\"0041-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:16:\"0041-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:16:\"0041-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:18:\"0041-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0041-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0041-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0041-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0041-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0041-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0041-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0041-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0041-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0041-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0041-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0041-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603127894\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0041.jpg\";}'),(2954,2818,'_wp_attached_file','2021/05/0042-scaled.jpg'),(2955,2818,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0042-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0042-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:17:\"0042-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:16:\"0042-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:16:\"0042-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:18:\"0042-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0042-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0042-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0042-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0042-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0042-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0042-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0042-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0042-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0042-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0042-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0042-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603128014\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0042.jpg\";}'),(2956,2819,'_wp_attached_file','2021/05/0043-scaled.jpg'),(2957,2819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0043-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0043-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:17:\"0043-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:16:\"0043-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:16:\"0043-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:18:\"0043-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0043-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0043-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0043-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0043-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0043-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0043-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0043-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0043-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0043-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0043-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0043-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603128524\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0043.jpg\";}'),(2958,2820,'_wp_attached_file','2021/05/0044-scaled.jpg'),(2959,2820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0044-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0044-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:17:\"0044-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:16:\"0044-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:16:\"0044-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:18:\"0044-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0044-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0044-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0044-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0044-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0044-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0044-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0044-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0044-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0044-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0044-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0044-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603129093\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0044.jpg\";}'),(2960,2821,'_wp_attached_file','2021/05/0045-scaled.jpg'),(2961,2821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0045-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0045-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:17:\"0045-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:16:\"0045-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:16:\"0045-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:18:\"0045-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0045-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0045-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0045-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0045-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0045-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0045-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0045-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0045-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0045-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0045-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0045-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603129984\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0045.jpg\";}'),(2962,2822,'_wp_attached_file','2021/05/0046-scaled.jpg'),(2963,2822,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0046-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0046-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:17:\"0046-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:16:\"0046-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:16:\"0046-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:18:\"0046-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0046-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0046-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0046-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0046-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0046-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0046-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0046-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0046-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0046-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0046-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0046-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603130163\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0046.jpg\";}'),(2964,2823,'_wp_attached_file','2021/05/0047-scaled.jpg'),(2965,2823,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0047-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0047-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:17:\"0047-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:16:\"0047-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:16:\"0047-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:18:\"0047-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0047-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0047-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0047-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0047-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0047-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0047-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0047-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0047-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0047-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0047-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0047-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603130304\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0047.jpg\";}'),(2966,2824,'_wp_attached_file','2021/05/0048-scaled.jpg'),(2967,2824,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0048-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0048-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:17:\"0048-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:16:\"0048-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:16:\"0048-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:18:\"0048-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0048-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0048-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0048-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0048-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0048-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0048-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0048-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0048-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0048-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0048-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0048-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603130994\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0048.jpg\";}'),(2968,2825,'_wp_attached_file','2021/05/0049-scaled.jpg'),(2969,2825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0049-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0049-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:17:\"0049-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:16:\"0049-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:16:\"0049-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:18:\"0049-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0049-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0049-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0049-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0049-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0049-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0049-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0049-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0049-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0049-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0049-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0049-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603131078\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0049.jpg\";}'),(2970,2826,'_wp_attached_file','2021/05/0050-scaled.jpg'),(2971,2826,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0050-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0050-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:17:\"0050-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:16:\"0050-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:16:\"0050-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:18:\"0050-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0050-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0050-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0050-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0050-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0050-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0050-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0050-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0050-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0050-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0050-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0050-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603131355\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0050.jpg\";}'),(2972,2827,'_wp_attached_file','2021/05/0051-scaled.jpg'),(2973,2827,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0051-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0051-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:17:\"0051-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:16:\"0051-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:16:\"0051-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:18:\"0051-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0051-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0051-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0051-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0051-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0051-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0051-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0051-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0051-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0051-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0051-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0051-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603132021\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0051.jpg\";}'),(2974,2828,'_wp_attached_file','2021/05/0052-scaled.jpg'),(2975,2828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0052-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0052-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:17:\"0052-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:16:\"0052-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:16:\"0052-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:18:\"0052-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0052-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0052-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0052-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0052-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0052-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0052-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0052-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0052-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0052-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0052-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0052-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603132811\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0052.jpg\";}'),(2976,2642,'_edit_last','8'),(2978,2829,'_wp_attached_file','2021/05/0053-scaled.jpg'),(2979,2829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0053-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0053-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:17:\"0053-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:16:\"0053-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:16:\"0053-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:18:\"0053-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0053-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0053-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0053-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0053-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0053-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0053-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0053-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0053-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0053-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0053-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0053-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603132887\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0053.jpg\";}'),(2981,2831,'_wp_attached_file','2021/05/0054-scaled.jpg'),(2984,2831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0054-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0054-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:17:\"0054-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:16:\"0054-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:16:\"0054-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:18:\"0054-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0054-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0054-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0054-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0054-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0054-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0054-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0054-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0054-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0054-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0054-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0054-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603132910\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0054.jpg\";}'),(2985,2832,'_wp_attached_file','2021/05/0055-scaled.jpg'),(2986,2832,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0055-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0055-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:17:\"0055-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:16:\"0055-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:16:\"0055-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:18:\"0055-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0055-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0055-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0055-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0055-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0055-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0055-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0055-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0055-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0055-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0055-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0055-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603132948\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0055.jpg\";}'),(2987,2833,'_wp_attached_file','2021/05/0056-scaled.jpg'),(2988,2833,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0056-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0056-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:17:\"0056-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:16:\"0056-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:16:\"0056-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:18:\"0056-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0056-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0056-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0056-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0056-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0056-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0056-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0056-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0056-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0056-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0056-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0056-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1603133678\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0056.jpg\";}'),(3926,2143,'stm_day_25','1'),(3927,2143,'stm_month_05','1'),(3928,2149,'stm_day_25','1'),(3929,2149,'stm_month_05','1'),(3930,2643,'stm_day_25','12'),(3924,1841,'stm_month_05','1'),(2994,2835,'_wp_attached_file','2021/05/0001-1-scaled.jpg'),(2995,2835,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0001-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0001-1-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:19:\"0001-1-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:18:\"0001-1-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:18:\"0001-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0001-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0001-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0001-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0001-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0001-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0001-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0001-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0001-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0001-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0001-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0001-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0001-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602691402\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0001-1.jpg\";}'),(2996,2836,'_wp_attached_file','2021/05/0002-1-scaled.jpg'),(2997,2836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0002-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0002-1-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:19:\"0002-1-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:18:\"0002-1-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:18:\"0002-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0002-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0002-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0002-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0002-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0002-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0002-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0002-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0002-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0002-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0002-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0002-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0002-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602691634\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0002-1.jpg\";}'),(2998,2837,'_wp_attached_file','2021/05/0003-1-scaled.jpg'),(2999,2837,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0003-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0003-1-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:19:\"0003-1-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:18:\"0003-1-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:18:\"0003-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0003-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0003-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0003-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0003-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0003-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0003-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0003-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0003-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0003-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0003-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0003-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0003-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602691800\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0003-1.jpg\";}'),(3000,2838,'_wp_attached_file','2021/05/0004-1-scaled.jpg'),(3001,2838,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0004-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0004-1-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:19:\"0004-1-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:18:\"0004-1-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:18:\"0004-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0004-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0004-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0004-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0004-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0004-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0004-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0004-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0004-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0004-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0004-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0004-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0004-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602692004\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0004-1.jpg\";}'),(3002,2839,'_wp_attached_file','2020/06/WB-Header-2-1.mp4'),(3003,2839,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:65827611;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:48;s:16:\"length_formatted\";s:4:\"0:48\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1620977006;}'),(3004,2840,'_wp_attached_file','2021/05/0005-1-scaled.jpg'),(3005,2840,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0005-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0005-1-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:19:\"0005-1-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:18:\"0005-1-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:18:\"0005-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0005-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0005-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0005-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0005-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0005-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0005-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0005-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0005-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0005-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0005-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0005-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0005-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602692294\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0005-1.jpg\";}'),(3061,2865,'_wp_page_template','template-homepage.php'),(3062,2865,'_elementor_edit_mode','builder'),(3063,2865,'_elementor_template_type','wp-page'),(3064,2865,'_elementor_version','2.9.9'),(3065,2865,'_elementor_pro_version','2.10.3'),(3066,2865,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3015,2842,'_wp_attached_file','2021/05/0006-1-scaled.jpg'),(3016,2842,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0006-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0006-1-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:19:\"0006-1-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:18:\"0006-1-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:18:\"0006-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0006-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0006-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0006-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0006-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0006-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0006-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0006-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0006-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0006-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0006-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0006-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0006-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602702047\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0006-1.jpg\";}'),(3017,2843,'_wp_attached_file','2021/05/0007-1-scaled.jpg'),(3018,2843,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0007-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0007-1-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:19:\"0007-1-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:18:\"0007-1-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:18:\"0007-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0007-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0007-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0007-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0007-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0007-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0007-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0007-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0007-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0007-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0007-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0007-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0007-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602694648\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0007-1.jpg\";}'),(3019,2844,'_wp_attached_file','2021/05/0008-1-scaled.jpg'),(3020,2844,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0008-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0008-1-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:19:\"0008-1-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:18:\"0008-1-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:18:\"0008-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0008-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0008-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0008-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0008-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0008-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0008-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0008-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0008-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0008-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0008-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0008-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0008-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602694296\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0008-1.jpg\";}'),(3021,2845,'_wp_attached_file','2021/05/0009-1-scaled.jpg'),(3022,2845,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0009-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0009-1-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:19:\"0009-1-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:18:\"0009-1-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:18:\"0009-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0009-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0009-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0009-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0009-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0009-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0009-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0009-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0009-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0009-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0009-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0009-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0009-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602692553\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0009-1.jpg\";}'),(3023,2846,'_wp_attached_file','2021/05/0010-1-scaled.jpg'),(3024,2846,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0010-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0010-1-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:19:\"0010-1-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:18:\"0010-1-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:18:\"0010-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0010-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0010-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0010-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0010-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0010-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0010-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0010-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0010-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0010-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0010-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0010-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0010-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602692737\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0010-1.jpg\";}'),(3025,2847,'_wp_attached_file','2021/05/0011-1-scaled.jpg'),(3026,2847,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0011-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0011-1-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:19:\"0011-1-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:18:\"0011-1-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:18:\"0011-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0011-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0011-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0011-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0011-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0011-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0011-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0011-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0011-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0011-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0011-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0011-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0011-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602692869\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0011-1.jpg\";}'),(3027,2848,'_wp_attached_file','2021/05/0012-2-scaled.jpg'),(3028,2848,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0012-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0012-2-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:19:\"0012-2-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:18:\"0012-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:18:\"0012-2-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:20:\"0012-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0012-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0012-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0012-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0012-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0012-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0012-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0012-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0012-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0012-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0012-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0012-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602693276\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0012-2.jpg\";}'),(3029,2849,'_wp_attached_file','2021/05/0013-1-scaled.jpg'),(3030,2849,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0013-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0013-1-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:19:\"0013-1-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:18:\"0013-1-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:18:\"0013-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0013-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0013-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0013-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0013-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0013-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0013-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0013-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0013-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0013-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0013-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0013-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0013-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602693538\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0013-1.jpg\";}'),(3031,2850,'_wp_attached_file','2021/05/0014-1-scaled.jpg'),(3032,2850,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0014-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0014-1-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:19:\"0014-1-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:18:\"0014-1-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:18:\"0014-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0014-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0014-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0014-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0014-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0014-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0014-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0014-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0014-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0014-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0014-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0014-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0014-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602693817\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0014-1.jpg\";}'),(3033,2851,'_wp_attached_file','2021/05/0015-1-scaled.jpg'),(3034,2851,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0015-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0015-1-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:19:\"0015-1-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:18:\"0015-1-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:18:\"0015-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0015-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0015-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0015-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0015-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0015-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0015-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0015-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0015-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0015-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0015-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0015-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0015-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602695206\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0015-1.jpg\";}'),(3035,2852,'_wp_attached_file','2021/05/0016-1-scaled.jpg'),(3036,2852,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0016-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0016-1-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:19:\"0016-1-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:18:\"0016-1-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:18:\"0016-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0016-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0016-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0016-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0016-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0016-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0016-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0016-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0016-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0016-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0016-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0016-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0016-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602695363\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0016-1.jpg\";}'),(3037,2853,'_wp_attached_file','2021/05/0017-1-scaled.jpg'),(3038,2853,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0017-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0017-1-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:19:\"0017-1-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:18:\"0017-1-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:18:\"0017-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0017-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0017-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0017-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0017-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0017-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0017-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0017-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0017-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0017-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0017-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0017-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0017-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602695598\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0017-1.jpg\";}'),(3039,2854,'_wp_attached_file','2021/05/0018-1-scaled.jpg'),(3040,2854,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0018-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0018-1-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:19:\"0018-1-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:18:\"0018-1-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:18:\"0018-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0018-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0018-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0018-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0018-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0018-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0018-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0018-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0018-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0018-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0018-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0018-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0018-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602695819\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0018-1.jpg\";}'),(3041,2855,'_wp_attached_file','2021/05/0019-1-scaled.jpg'),(3042,2855,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0019-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0019-1-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:19:\"0019-1-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:18:\"0019-1-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:18:\"0019-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0019-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0019-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0019-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0019-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0019-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0019-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0019-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0019-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0019-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0019-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0019-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0019-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602696044\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0019-1.jpg\";}'),(3043,2856,'_wp_attached_file','2021/05/0020-1-scaled.jpg'),(3044,2856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0020-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0020-1-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:19:\"0020-1-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:18:\"0020-1-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:18:\"0020-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0020-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0020-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0020-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0020-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0020-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0020-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0020-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0020-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0020-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0020-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0020-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0020-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602696125\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0020-1.jpg\";}'),(3045,2857,'_wp_attached_file','2021/05/0021-1-scaled.jpg'),(3046,2857,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0021-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0021-1-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:19:\"0021-1-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:18:\"0021-1-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:18:\"0021-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0021-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0021-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0021-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0021-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0021-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0021-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0021-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0021-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0021-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0021-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0021-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0021-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602696419\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0021-1.jpg\";}'),(3047,2858,'_wp_attached_file','2021/05/0022-1-scaled.jpg'),(3048,2858,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0022-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0022-1-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:19:\"0022-1-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:18:\"0022-1-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:18:\"0022-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0022-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0022-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0022-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0022-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0022-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0022-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0022-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0022-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0022-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0022-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0022-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0022-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602696595\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0022-1.jpg\";}'),(3049,2859,'_wp_attached_file','2021/05/0023-1-scaled.jpg'),(3050,2859,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0023-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0023-1-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:19:\"0023-1-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:18:\"0023-1-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:18:\"0023-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0023-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0023-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0023-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0023-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0023-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0023-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0023-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0023-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0023-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0023-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0023-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0023-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602696849\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0023-1.jpg\";}'),(3051,2860,'_wp_attached_file','2021/05/0024-1-scaled.jpg'),(3052,2860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0024-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0024-1-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:19:\"0024-1-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:18:\"0024-1-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:18:\"0024-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0024-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0024-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0024-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0024-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0024-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0024-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0024-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0024-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0024-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0024-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0024-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0024-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602697028\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0024-1.jpg\";}'),(3053,2861,'_wp_attached_file','2021/05/0025-1-scaled.jpg'),(3054,2861,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0025-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0025-1-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:19:\"0025-1-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:18:\"0025-1-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:18:\"0025-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0025-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0025-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0025-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0025-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0025-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0025-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0025-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0025-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0025-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0025-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0025-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0025-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602697182\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0025-1.jpg\";}'),(3055,2862,'_wp_attached_file','2021/05/0026-1-scaled.jpg'),(3056,2862,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0026-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0026-1-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:19:\"0026-1-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:18:\"0026-1-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:18:\"0026-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0026-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0026-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0026-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0026-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0026-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0026-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0026-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0026-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0026-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0026-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0026-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0026-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602697489\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0026-1.jpg\";}'),(3057,2863,'_wp_attached_file','2021/05/0027-1-scaled.jpg'),(3058,2863,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0027-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0027-1-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:19:\"0027-1-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:18:\"0027-1-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:18:\"0027-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0027-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0027-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0027-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0027-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0027-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0027-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0027-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0027-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0027-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0027-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0027-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0027-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602697648\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0027-1.jpg\";}'),(3059,2864,'_wp_attached_file','2021/05/0028-1-scaled.jpg'),(3060,2864,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0028-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0028-1-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:19:\"0028-1-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:18:\"0028-1-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:18:\"0028-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0028-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0028-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0028-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0028-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0028-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0028-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0028-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0028-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0028-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0028-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0028-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0028-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602698029\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0028-1.jpg\";}'),(3069,2866,'_wp_attached_file','2021/05/0029-1-scaled.jpg'),(3070,2866,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0029-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0029-1-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:19:\"0029-1-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:18:\"0029-1-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:18:\"0029-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0029-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0029-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0029-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0029-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0029-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0029-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0029-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0029-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0029-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0029-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0029-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0029-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602698376\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0029-1.jpg\";}'),(3071,2867,'_wp_attached_file','2021/05/0030-1-scaled.jpg'),(3072,2867,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0030-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0030-1-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:19:\"0030-1-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:18:\"0030-1-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:18:\"0030-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0030-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0030-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0030-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0030-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0030-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0030-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0030-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0030-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0030-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0030-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0030-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0030-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602698689\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0030-1.jpg\";}'),(3073,2868,'_wp_attached_file','2021/05/0031-1-scaled.jpg'),(3074,2868,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0031-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0031-1-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:19:\"0031-1-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:18:\"0031-1-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:18:\"0031-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0031-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0031-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0031-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0031-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0031-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0031-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0031-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0031-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0031-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0031-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0031-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0031-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602698834\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0031-1.jpg\";}'),(3075,2869,'_wp_attached_file','2021/05/0032-1-scaled.jpg'),(3076,2869,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0032-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0032-1-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:19:\"0032-1-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:18:\"0032-1-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:18:\"0032-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0032-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0032-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0032-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0032-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0032-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0032-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0032-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0032-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0032-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0032-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0032-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0032-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602699056\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0032-1.jpg\";}'),(3077,2870,'_wp_attached_file','2021/05/0033-1-scaled.jpg'),(3078,2870,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0033-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0033-1-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:19:\"0033-1-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:18:\"0033-1-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:18:\"0033-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0033-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0033-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0033-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0033-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0033-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0033-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0033-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0033-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0033-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0033-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0033-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0033-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602699234\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0033-1.jpg\";}'),(3079,2871,'_wp_attached_file','2021/05/0034-1-scaled.jpg'),(3080,2871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0034-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0034-1-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:19:\"0034-1-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:18:\"0034-1-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:18:\"0034-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0034-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0034-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0034-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0034-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0034-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0034-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0034-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0034-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0034-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0034-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0034-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0034-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602699371\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0034-1.jpg\";}'),(3081,2872,'_wp_attached_file','2021/05/0035-1-scaled.jpg'),(3082,2872,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0035-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0035-1-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:19:\"0035-1-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:18:\"0035-1-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:18:\"0035-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0035-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0035-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0035-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0035-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0035-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0035-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0035-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0035-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0035-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0035-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0035-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0035-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602699669\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0035-1.jpg\";}'),(3083,2873,'_wp_attached_file','2021/05/0036-1-scaled.jpg'),(3084,2873,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0036-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0036-1-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:19:\"0036-1-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:18:\"0036-1-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:18:\"0036-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0036-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0036-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0036-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0036-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0036-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0036-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0036-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0036-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0036-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0036-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0036-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0036-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602699852\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0036-1.jpg\";}'),(3085,2874,'_wp_attached_file','2021/05/0037-1-scaled.jpg'),(3086,2874,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0037-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0037-1-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:19:\"0037-1-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:18:\"0037-1-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:18:\"0037-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0037-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0037-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0037-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0037-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0037-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0037-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0037-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0037-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0037-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0037-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0037-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0037-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602700078\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0037-1.jpg\";}'),(3087,2875,'_wp_attached_file','2021/05/0038-1-scaled.jpg'),(3088,2875,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0038-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0038-1-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:19:\"0038-1-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:18:\"0038-1-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:18:\"0038-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0038-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0038-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0038-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0038-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0038-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0038-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0038-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0038-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0038-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0038-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0038-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0038-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602700287\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0038-1.jpg\";}'),(3089,2876,'_wp_attached_file','2021/05/0039-1-scaled.jpg'),(3090,2876,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0039-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0039-1-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:19:\"0039-1-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:18:\"0039-1-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:18:\"0039-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0039-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0039-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0039-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0039-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0039-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0039-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0039-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0039-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0039-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0039-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0039-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0039-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602700394\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0039-1.jpg\";}'),(3091,2877,'_wp_attached_file','2021/05/0040-1-scaled.jpg'),(3092,2877,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0040-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0040-1-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:19:\"0040-1-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:18:\"0040-1-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:18:\"0040-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0040-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0040-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0040-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0040-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0040-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0040-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0040-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0040-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0040-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0040-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0040-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0040-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602700536\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0040-1.jpg\";}'),(3093,2878,'_wp_attached_file','2021/05/0041-1-scaled.jpg'),(3094,2878,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0041-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0041-1-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:19:\"0041-1-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:18:\"0041-1-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:18:\"0041-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0041-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0041-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0041-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0041-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0041-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0041-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0041-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0041-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0041-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0041-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0041-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0041-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602700655\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0041-1.jpg\";}'),(3095,2879,'_wp_attached_file','2021/05/0042-1-scaled.jpg'),(3096,2879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0042-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0042-1-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:19:\"0042-1-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:18:\"0042-1-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:18:\"0042-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0042-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0042-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0042-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0042-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0042-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0042-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0042-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0042-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0042-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0042-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0042-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0042-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602700793\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0042-1.jpg\";}'),(3097,2880,'_wp_attached_file','2021/05/0043-1-scaled.jpg'),(3098,2880,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0043-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0043-1-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:19:\"0043-1-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:18:\"0043-1-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:18:\"0043-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0043-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0043-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0043-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0043-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0043-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0043-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0043-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0043-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0043-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0043-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0043-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0043-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602700959\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0043-1.jpg\";}'),(3099,2881,'_wp_attached_file','2021/05/0044-1-scaled.jpg'),(3100,2881,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0044-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0044-1-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:19:\"0044-1-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:18:\"0044-1-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:18:\"0044-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0044-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0044-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0044-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0044-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0044-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0044-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0044-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0044-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0044-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0044-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0044-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0044-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701166\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:1:\"2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0044-1.jpg\";}'),(3101,2882,'_wp_attached_file','2021/05/0045-1-scaled.jpg'),(3102,2882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0045-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0045-1-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:19:\"0045-1-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:18:\"0045-1-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:18:\"0045-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0045-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0045-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0045-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0045-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0045-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0045-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0045-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0045-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0045-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0045-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0045-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0045-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701377\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0045-1.jpg\";}'),(3103,2883,'_wp_attached_file','2021/05/0046-1-scaled.jpg'),(3170,2902,'_wp_page_template','template-homepage.php'),(3155,2900,'_wp_page_template','template-homepage.php'),(3156,2900,'_elementor_edit_mode','builder'),(3157,2900,'_elementor_template_type','wp-page'),(3158,2900,'_elementor_version','2.9.9'),(3159,2900,'_elementor_pro_version','2.10.3'),(3160,2900,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3171,2902,'_elementor_edit_mode','builder'),(3172,2902,'_elementor_template_type','wp-page'),(3173,2902,'_elementor_version','2.9.9'),(3174,2902,'_elementor_pro_version','2.10.3'),(3175,2902,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3140,2898,'_wp_page_template','template-homepage.php'),(3141,2898,'_elementor_edit_mode','builder'),(3142,2898,'_elementor_template_type','wp-page'),(3143,2898,'_elementor_version','2.9.9'),(3144,2898,'_elementor_pro_version','2.10.3'),(3145,2898,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Cool Number\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Cool Number\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a85bba\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Cool Number\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\"},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.73)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"real estate\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58b1ac0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Buying or selling\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9c557a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbcd9b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Draw your search\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/ihomefinder-search-form\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e482a50\",\"elType\":\"widget\",\"settings\":{\"title\":\"property\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8d0699b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Investment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70bfd23\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42e48b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3ca47c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-3.jpg\",\"id\":961},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.90000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"32d5eb9\",\"elType\":\"widget\",\"settings\":{\"title\":\"finance\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f451e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Consultancy\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bea4ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.<\\/p>\",\"align\":\"center\",\"text_color\":\"#B4B4B4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0f87b2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get A Quote\",\"align\":\"center\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#F5A44A\",\"background_color\":\"rgba(2, 1, 1, 0)\",\"hover_color\":\"#B1DC6F\",\"link\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/contact-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3111,2883,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0046-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0046-1-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:19:\"0046-1-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:18:\"0046-1-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:18:\"0046-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0046-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0046-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0046-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0046-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0046-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0046-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0046-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0046-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0046-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0046-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0046-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0046-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701541\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0046-1.jpg\";}'),(3112,2885,'_wp_attached_file','2021/05/0047-1-scaled.jpg'),(3113,2885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1721;s:4:\"file\";s:25:\"2021/05/0047-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0047-1-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"0047-1-1024x689.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:689;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"0047-1-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:18:\"0047-1-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0047-1-1536x1033.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1033;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0047-1-2048x1377.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1377;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0047-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0047-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0047-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0047-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0047-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0047-1-669x450.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0047-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0047-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0047-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0047-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1721;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701629\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0047-1.jpg\";}'),(3114,2886,'_wp_attached_file','2021/05/0048-1-scaled.jpg'),(3115,2886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:25:\"2021/05/0048-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0048-1-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:19:\"0048-1-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:18:\"0048-1-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:18:\"0048-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0048-1-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:20:\"0048-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0048-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0048-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0048-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0048-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0048-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0048-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0048-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0048-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0048-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0048-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701691\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0048-1.jpg\";}'),(3116,2887,'_wp_attached_file','2021/05/0049-1-scaled.jpg'),(3117,2887,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1714;s:4:\"file\";s:25:\"2021/05/0049-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0049-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"0049-1-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"0049-1-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:18:\"0049-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0049-1-1536x1029.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1029;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0049-1-2048x1371.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0049-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0049-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0049-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0049-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0049-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0049-1-672x450.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0049-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0049-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0049-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0049-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1714;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701708\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0049-1.jpg\";}'),(3118,2888,'_wp_attached_file','2021/05/0050-1-scaled.jpg'),(3119,2888,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:25:\"2021/05/0050-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0050-1-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:19:\"0050-1-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:18:\"0050-1-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:18:\"0050-1-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:20:\"0050-1-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0050-1-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0050-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0050-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0050-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0050-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0050-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0050-1-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0050-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0050-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0050-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0050-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701718\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0050-1.jpg\";}'),(3120,2889,'_wp_attached_file','2021/05/0051-1-scaled.jpg'),(3121,2889,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1715;s:4:\"file\";s:25:\"2021/05/0051-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0051-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"0051-1-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"0051-1-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:18:\"0051-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0051-1-1536x1029.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1029;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0051-1-2048x1372.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0051-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0051-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0051-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0051-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0051-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0051-1-672x450.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0051-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0051-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0051-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0051-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1715;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701732\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0051-1.jpg\";}'),(3122,2890,'_wp_attached_file','2021/05/0052-1-scaled.jpg'),(3123,2890,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1737;s:4:\"file\";s:25:\"2021/05/0052-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0052-1-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"0052-1-1024x695.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"0052-1-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:18:\"0052-1-768x521.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:521;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0052-1-1536x1042.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1042;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0052-1-2048x1390.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0052-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0052-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0052-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0052-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0052-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0052-1-663x450.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0052-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0052-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0052-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0052-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1737;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701749\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0052-1.jpg\";}'),(3124,2891,'_wp_attached_file','2021/05/0053-1-scaled.jpg'),(3125,2891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1711;s:4:\"file\";s:25:\"2021/05/0053-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0053-1-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:19:\"0053-1-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:18:\"0053-1-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:18:\"0053-1-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:20:\"0053-1-1536x1027.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0053-1-2048x1369.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0053-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0053-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0053-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0053-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0053-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0053-1-673x450.jpg\";s:5:\"width\";i:673;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0053-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0053-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0053-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0053-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701781\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0053-1.jpg\";}'),(3126,2892,'_wp_attached_file','2021/05/0054-1-scaled.jpg'),(3127,2892,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1712;s:4:\"file\";s:25:\"2021/05/0054-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0054-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"0054-1-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"0054-1-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:18:\"0054-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0054-1-1536x1027.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0054-1-2048x1370.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1370;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0054-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0054-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0054-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0054-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0054-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0054-1-673x450.jpg\";s:5:\"width\";i:673;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0054-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0054-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0054-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0054-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1712;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701800\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0054-1.jpg\";}'),(3128,2893,'_wp_attached_file','2021/05/0055-1-scaled.jpg'),(3129,2893,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1711;s:4:\"file\";s:25:\"2021/05/0055-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0055-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"0055-1-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"0055-1-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:18:\"0055-1-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:20:\"0055-1-1536x1027.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1027;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0055-1-2048x1369.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0055-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0055-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0055-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0055-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0055-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0055-1-673x450.jpg\";s:5:\"width\";i:673;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0055-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0055-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0055-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0055-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1711;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701813\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0055-1.jpg\";}'),(3130,2894,'_wp_attached_file','2021/05/0056-1-scaled.jpg'),(3131,2894,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:25:\"2021/05/0056-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0056-1-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:19:\"0056-1-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:18:\"0056-1-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:18:\"0056-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0056-1-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:20:\"0056-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0056-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0056-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0056-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0056-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0056-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0056-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0056-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0056-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0056-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0056-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602701835\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0056-1.jpg\";}'),(3132,2895,'_wp_attached_file','2021/05/0057-scaled.jpg'),(3133,2895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0057-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0057-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:17:\"0057-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:16:\"0057-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:16:\"0057-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:18:\"0057-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0057-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0057-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0057-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0057-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0057-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0057-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0057-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0057-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0057-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0057-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0057-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602702265\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0057.jpg\";}'),(3134,2896,'_wp_attached_file','2021/05/0058-scaled.jpg'),(3135,2896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0058-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0058-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:17:\"0058-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:16:\"0058-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:16:\"0058-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:18:\"0058-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0058-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0058-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0058-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0058-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0058-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0058-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0058-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0058-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0058-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0058-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0058-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602702550\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0058.jpg\";}'),(3136,2897,'_wp_attached_file','2021/05/0059-scaled.jpg'),(3137,2897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0059-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0059-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:17:\"0059-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:16:\"0059-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:16:\"0059-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:18:\"0059-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0059-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0059-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0059-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0059-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0059-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0059-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0059-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0059-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0059-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0059-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0059-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1602702899\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0059.jpg\";}'),(3225,2910,'_wp_page_template','template-homepage.php'),(3226,2910,'_elementor_edit_mode','builder'),(3227,2910,'_elementor_template_type','wp-page'),(3228,2910,'_elementor_version','2.9.9'),(3182,2905,'_wp_page_template','template-homepage.php'),(3183,2905,'_elementor_edit_mode','builder'),(3184,2905,'_elementor_template_type','wp-page'),(3185,2905,'_elementor_version','2.9.9'),(3186,2905,'_elementor_pro_version','2.10.3'),(3187,2905,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3177,2903,'_wp_attached_file','2020/06/2021-05-14.jpeg'),(3178,2903,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:851;s:6:\"height\";i:248;s:4:\"file\";s:23:\"2020/06/2021-05-14.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"2021-05-14-300x87.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"2021-05-14-150x150.jpeg\";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:23:\"2021-05-14-768x224.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"2021-05-14-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:23:\"2021-05-14-615x248.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:23:\"2021-05-14-615x248.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"2021-05-14-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"2021-05-14-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"2021-05-14.jpeg\";s:5:\"width\";i:851;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"2021-05-14.jpeg\";s:5:\"width\";i:851;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:15:\"2021-05-14.jpeg\";s:5:\"width\";i:851;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"2021-05-14.jpeg\";s:5:\"width\";i:851;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"2021-05-14.jpeg\";s:5:\"width\";i:851;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"2021-05-14.jpeg\";s:5:\"width\";i:851;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"2021-05-14.jpeg\";s:5:\"width\";i:850;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"2021-05-14.jpeg\";s:5:\"width\";i:851;s:6:\"height\";i:248;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:{}}}'),(3180,2904,'_wp_attached_file','2020/06/2021-05-14-updated-.jpeg'),(3181,2904,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:479;s:6:\"height\";i:223;s:4:\"file\";s:32:\"2020/06/2021-05-14-updated-.jpeg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"2021-05-14-updated--300x140.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"2021-05-14-updated--150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:30:\"2021-05-14-updated--80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:32:\"2021-05-14-updated--100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:32:\"2021-05-14-updated--290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:24:\"2021-05-14-updated-.jpeg\";s:5:\"width\";i:479;s:6:\"height\";i:223;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:{}}}'),(3190,2906,'_wp_page_template','template-homepage.php'),(3191,2906,'_elementor_edit_mode','builder'),(3192,2906,'_elementor_template_type','wp-page'),(3193,2906,'_elementor_version','2.9.9'),(3194,2906,'_elementor_pro_version','2.10.3'),(3195,2906,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"3896981\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our exclusives\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":2642,\"listing_posts_sort_by\":\"popular\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3207,2908,'_elementor_edit_mode','builder'),(3208,2908,'_elementor_template_type','page'),(3209,2908,'_elementor_version','2.9.9'),(3210,2908,'_elementor_pro_version','2.10.3'),(3211,2908,'_wp_page_template','default'),(3212,2908,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6124,3896,'_elementor_edit_mode','builder'),(6125,3896,'_elementor_template_type','page'),(6126,3896,'_elementor_version','2.9.9'),(6127,3896,'_elementor_pro_version','2.10.3'),(6128,3896,'_wp_page_template','default'),(6129,3896,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(3248,2915,'_wp_page_template','template-homepage.php'),(3249,2915,'_elementor_edit_mode','builder'),(3250,2915,'_elementor_template_type','wp-page'),(3251,2915,'_elementor_version','2.9.9'),(3252,2915,'_elementor_pro_version','2.10.3'),(3253,2915,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":\"2642\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\",\"listing_category_list\":\"vacation-rentals\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3234,2788,'stm_post_views','9'),(3235,2788,'stm_day_14','2'),(3236,2788,'stm_month_05','3'),(3237,2786,'stm_post_views','5'),(3238,2786,'stm_day_14','3'),(3239,2786,'stm_month_05','3'),(3240,2911,'_wp_attached_file','2021/05/0001-2-scaled.jpg'),(3241,2911,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0001-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0001-2-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:19:\"0001-2-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:18:\"0001-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:18:\"0001-2-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:20:\"0001-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0001-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0001-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0001-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0001-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0001-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0001-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0001-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0001-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0001-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0001-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0001-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611686570\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"2.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0001-2.jpg\";}'),(3242,2912,'_wp_attached_file','2021/05/0002-2-scaled.jpg'),(3243,2912,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0002-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0002-2-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:19:\"0002-2-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:18:\"0002-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:18:\"0002-2-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:20:\"0002-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0002-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0002-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0002-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0002-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0002-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0002-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0002-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0002-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0002-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0002-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0002-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685980\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0002-2.jpg\";}'),(3244,2913,'_wp_attached_file','2021/05/0003-2-scaled.jpg'),(3245,2913,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0003-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0003-2-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:19:\"0003-2-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:18:\"0003-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:18:\"0003-2-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:20:\"0003-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0003-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0003-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0003-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0003-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0003-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0003-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0003-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0003-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0003-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0003-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0003-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611686258\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"2.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0003-2.jpg\";}'),(3246,2914,'_wp_attached_file','2021/05/0004-2-scaled.jpg'),(3247,2914,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0004-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0004-2-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:19:\"0004-2-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:18:\"0004-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:18:\"0004-2-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:20:\"0004-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0004-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0004-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0004-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0004-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0004-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0004-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0004-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0004-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0004-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0004-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0004-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611669305\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0004-2.jpg\";}'),(3856,3196,'_wp_page_template','template-homepage.php'),(3857,3196,'_elementor_edit_mode','builder'),(3858,3196,'_elementor_template_type','wp-page'),(3859,3196,'_elementor_version','2.9.9'),(3860,3196,'_elementor_pro_version','2.10.3');
INSERT INTO `wpew_postmeta` VALUES (3861,3196,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":\"2642\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\",\"listing_category_list\":\"vacation-rentals\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beverly Hills\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3256,2916,'_wp_attached_file','2021/05/0005-2-scaled.jpg'),(3257,2916,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0005-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0005-2-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:19:\"0005-2-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:18:\"0005-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:18:\"0005-2-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:20:\"0005-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0005-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0005-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0005-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0005-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0005-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0005-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0005-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0005-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0005-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0005-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0005-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611669221\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0005-2.jpg\";}'),(3868,3197,'_wp_page_template','template-homepage.php'),(3869,3197,'_elementor_edit_mode','builder'),(3259,2917,'_wp_attached_file','2021/05/0006-2-scaled.jpg'),(3260,2917,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0006-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0006-2-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:19:\"0006-2-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:18:\"0006-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:18:\"0006-2-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:20:\"0006-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0006-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0006-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0006-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0006-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0006-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0006-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0006-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0006-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0006-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0006-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0006-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611683733\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0006-2.jpg\";}'),(3261,2918,'_wp_attached_file','2021/05/0007-2-scaled.jpg'),(3262,2918,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0007-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0007-2-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:19:\"0007-2-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:18:\"0007-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:18:\"0007-2-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:20:\"0007-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0007-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0007-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0007-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0007-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0007-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0007-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0007-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0007-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0007-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0007-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0007-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611684319\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0007-2.jpg\";}'),(3263,2919,'_wp_attached_file','2021/05/0008-2-scaled.jpg'),(3264,2919,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0008-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0008-2-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:19:\"0008-2-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:18:\"0008-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:18:\"0008-2-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:20:\"0008-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0008-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0008-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0008-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0008-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0008-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0008-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0008-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0008-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0008-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0008-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0008-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611683093\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0008-2.jpg\";}'),(3265,2920,'_wp_attached_file','2021/05/0009-2-scaled.jpg'),(3266,2920,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0009-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0009-2-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:19:\"0009-2-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:18:\"0009-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:18:\"0009-2-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:20:\"0009-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0009-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0009-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0009-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0009-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0009-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0009-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0009-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0009-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0009-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0009-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0009-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611683355\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0009-2.jpg\";}'),(3267,2921,'_wp_attached_file','2021/05/0010-2-scaled.jpg'),(3268,2921,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0010-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0010-2-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:19:\"0010-2-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:18:\"0010-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:18:\"0010-2-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:20:\"0010-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0010-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0010-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0010-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0010-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0010-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0010-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0010-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0010-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0010-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0010-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0010-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611683985\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0010-2.jpg\";}'),(3269,2922,'_wp_attached_file','2021/05/0011-2-scaled.jpg'),(3270,2922,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:25:\"2021/05/0011-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0011-2-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:19:\"0011-2-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:18:\"0011-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:18:\"0011-2-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:20:\"0011-2-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:20:\"0011-2-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0011-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0011-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0011-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0011-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0011-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0011-2-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0011-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0011-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0011-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0011-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611684580\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0011-2.jpg\";}'),(3271,2923,'_wp_attached_file','2021/05/0012-3-scaled.jpg'),(3272,2923,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0012-3-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0012-3-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:19:\"0012-3-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:18:\"0012-3-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:18:\"0012-3-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:20:\"0012-3-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0012-3-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0012-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0012-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0012-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0012-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0012-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0012-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0012-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0012-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0012-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0012-3-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611682480\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0012-3.jpg\";}'),(3273,2924,'_wp_attached_file','2021/05/0013-2-scaled.jpg'),(3274,2924,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0013-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0013-2-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:19:\"0013-2-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:18:\"0013-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:18:\"0013-2-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:20:\"0013-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0013-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0013-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0013-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0013-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0013-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0013-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0013-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0013-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0013-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0013-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0013-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611684677\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0013-2.jpg\";}'),(3275,2925,'_wp_attached_file','2021/05/0014-2-scaled.jpg'),(3276,2925,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0014-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0014-2-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:19:\"0014-2-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:18:\"0014-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:18:\"0014-2-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:20:\"0014-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0014-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0014-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0014-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0014-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0014-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0014-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0014-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0014-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0014-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0014-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0014-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685079\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0014-2.jpg\";}'),(3277,2926,'_wp_attached_file','2021/05/0015-2-scaled.jpg'),(3278,2926,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:25:\"2021/05/0015-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0015-2-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:19:\"0015-2-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:18:\"0015-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:18:\"0015-2-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:20:\"0015-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0015-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0015-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0015-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0015-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0015-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0015-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0015-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0015-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0015-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0015-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0015-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611680456\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0015-2.jpg\";}'),(3279,2927,'_wp_attached_file','2021/05/0016-2-scaled.jpg'),(3280,2927,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0016-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0016-2-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:19:\"0016-2-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:18:\"0016-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:18:\"0016-2-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:20:\"0016-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0016-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0016-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0016-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0016-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0016-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0016-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0016-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0016-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0016-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0016-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0016-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611680300\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0016-2.jpg\";}'),(3281,2928,'_wp_attached_file','2021/05/0017-2-scaled.jpg'),(3282,2928,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0017-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0017-2-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:19:\"0017-2-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:18:\"0017-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:18:\"0017-2-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:20:\"0017-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0017-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0017-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0017-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0017-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0017-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0017-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0017-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0017-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0017-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0017-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0017-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611684883\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0017-2.jpg\";}'),(3283,2929,'_wp_attached_file','2021/05/0018-2-scaled.jpg'),(3284,2929,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0018-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0018-2-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:19:\"0018-2-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:18:\"0018-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:18:\"0018-2-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:20:\"0018-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0018-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0018-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0018-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0018-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0018-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0018-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0018-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0018-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0018-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0018-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0018-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611681310\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0018-2.jpg\";}'),(3285,2930,'_wp_attached_file','2021/05/0019-2-scaled.jpg'),(3286,2930,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0019-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0019-2-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:19:\"0019-2-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:18:\"0019-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:18:\"0019-2-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:20:\"0019-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0019-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0019-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0019-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0019-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0019-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0019-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0019-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0019-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0019-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0019-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0019-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611681526\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0019-2.jpg\";}'),(3287,2931,'_wp_attached_file','2021/05/0020-2-scaled.jpg'),(3288,2931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0020-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0020-2-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:19:\"0020-2-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:18:\"0020-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:18:\"0020-2-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:20:\"0020-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0020-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0020-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0020-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0020-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0020-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0020-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0020-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0020-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0020-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0020-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0020-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611681973\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0020-2.jpg\";}'),(3289,2932,'_wp_attached_file','2021/05/0021-2-scaled.jpg'),(3290,2932,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0021-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0021-2-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:19:\"0021-2-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:18:\"0021-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:18:\"0021-2-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:20:\"0021-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0021-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0021-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0021-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0021-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0021-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0021-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0021-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0021-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0021-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0021-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0021-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611682192\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0021-2.jpg\";}'),(3291,2933,'_wp_attached_file','2021/05/0022-2-scaled.jpg'),(3292,2933,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0022-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0022-2-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:19:\"0022-2-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:18:\"0022-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:18:\"0022-2-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:20:\"0022-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0022-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0022-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0022-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0022-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0022-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0022-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0022-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0022-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0022-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0022-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0022-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611682311\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0022-2.jpg\";}'),(3293,2934,'_wp_attached_file','2021/05/0023-2-scaled.jpg'),(3294,2934,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0023-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0023-2-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:19:\"0023-2-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:18:\"0023-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:18:\"0023-2-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:20:\"0023-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0023-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0023-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0023-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0023-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0023-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0023-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0023-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0023-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0023-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0023-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0023-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611673204\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0023-2.jpg\";}'),(3295,2935,'_wp_attached_file','2021/05/0024-2-scaled.jpg'),(3296,2935,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0024-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0024-2-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:19:\"0024-2-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:18:\"0024-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:18:\"0024-2-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:20:\"0024-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0024-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0024-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0024-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0024-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0024-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0024-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0024-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0024-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0024-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0024-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0024-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611672773\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0024-2.jpg\";}'),(3297,2936,'_wp_attached_file','2021/05/0025-2-scaled.jpg'),(3298,2936,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0025-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0025-2-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:19:\"0025-2-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:18:\"0025-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:18:\"0025-2-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:20:\"0025-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0025-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0025-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0025-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0025-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0025-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0025-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0025-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0025-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0025-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0025-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0025-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611687251\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0025-2.jpg\";}'),(3299,2937,'_wp_attached_file','2021/05/0026-2-scaled.jpg'),(3300,2937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0026-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0026-2-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:19:\"0026-2-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:18:\"0026-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:18:\"0026-2-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:20:\"0026-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0026-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0026-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0026-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0026-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0026-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0026-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0026-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0026-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0026-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0026-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0026-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611687194\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0026-2.jpg\";}'),(3301,2938,'_wp_attached_file','2021/05/0027-2-scaled.jpg'),(3302,2938,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0027-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0027-2-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:19:\"0027-2-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:18:\"0027-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:18:\"0027-2-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:20:\"0027-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0027-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0027-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0027-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0027-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0027-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0027-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0027-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0027-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0027-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0027-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0027-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611672915\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0027-2.jpg\";}'),(3303,2939,'_wp_attached_file','2021/05/0028-2-scaled.jpg'),(3304,2939,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0028-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0028-2-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:19:\"0028-2-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:18:\"0028-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:18:\"0028-2-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:20:\"0028-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0028-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0028-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0028-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0028-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0028-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0028-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0028-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0028-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0028-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0028-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0028-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611673086\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0028-2.jpg\";}'),(3305,2940,'_wp_attached_file','2021/05/0029-2-scaled.jpg'),(3306,2940,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0029-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0029-2-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:19:\"0029-2-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:18:\"0029-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:18:\"0029-2-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:20:\"0029-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0029-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0029-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0029-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0029-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0029-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0029-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0029-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0029-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0029-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0029-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0029-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611687455\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0029-2.jpg\";}'),(3307,2941,'_wp_attached_file','2021/05/0030-2-scaled.jpg'),(3308,2941,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0030-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0030-2-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:19:\"0030-2-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:18:\"0030-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:18:\"0030-2-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:20:\"0030-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0030-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0030-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0030-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0030-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0030-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0030-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0030-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0030-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0030-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0030-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0030-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611687154\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0030-2.jpg\";}'),(3309,2942,'_wp_attached_file','2021/05/0031-2-scaled.jpg'),(3310,2942,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0031-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0031-2-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:19:\"0031-2-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:18:\"0031-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:18:\"0031-2-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:20:\"0031-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0031-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0031-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0031-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0031-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0031-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0031-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0031-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0031-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0031-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0031-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0031-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611687286\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0031-2.jpg\";}'),(3311,2943,'_wp_attached_file','2021/05/0032-2-scaled.jpg'),(3312,2943,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0032-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0032-2-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:19:\"0032-2-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:18:\"0032-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:18:\"0032-2-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:20:\"0032-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0032-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0032-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0032-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0032-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0032-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0032-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0032-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0032-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0032-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0032-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0032-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611673509\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0032-2.jpg\";}'),(3313,2944,'_wp_attached_file','2021/05/0033-2-scaled.jpg'),(3314,2944,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0033-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0033-2-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:19:\"0033-2-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:18:\"0033-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:18:\"0033-2-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:20:\"0033-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0033-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0033-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0033-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0033-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0033-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0033-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0033-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0033-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0033-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0033-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0033-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611673667\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0033-2.jpg\";}'),(3315,2945,'_wp_attached_file','2021/05/0034-2-scaled.jpg'),(3316,2945,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0034-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0034-2-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:19:\"0034-2-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:18:\"0034-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:18:\"0034-2-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:20:\"0034-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0034-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0034-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0034-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0034-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0034-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0034-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0034-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0034-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0034-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0034-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0034-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611687366\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0034-2.jpg\";}'),(3317,2946,'_wp_attached_file','2021/05/0035-2-scaled.jpg'),(3318,2946,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0035-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0035-2-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:19:\"0035-2-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:18:\"0035-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:18:\"0035-2-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:20:\"0035-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0035-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0035-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0035-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0035-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0035-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0035-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0035-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0035-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0035-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0035-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0035-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611687415\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0035-2.jpg\";}'),(3319,2947,'_wp_attached_file','2021/05/0036-2-scaled.jpg'),(3320,2947,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0036-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0036-2-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:19:\"0036-2-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:18:\"0036-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:18:\"0036-2-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:20:\"0036-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0036-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0036-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0036-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0036-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0036-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0036-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0036-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0036-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0036-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0036-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0036-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611673888\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0036-2.jpg\";}'),(3321,2948,'_wp_attached_file','2021/05/0037-2-scaled.jpg'),(3322,2948,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0037-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0037-2-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:19:\"0037-2-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:18:\"0037-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:18:\"0037-2-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:20:\"0037-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0037-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0037-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0037-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0037-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0037-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0037-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0037-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0037-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0037-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0037-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0037-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611674274\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0037-2.jpg\";}'),(3323,2949,'_wp_attached_file','2021/05/0038-2-scaled.jpg'),(3324,2949,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0038-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0038-2-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:19:\"0038-2-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:18:\"0038-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:18:\"0038-2-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:20:\"0038-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0038-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0038-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0038-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0038-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0038-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0038-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0038-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0038-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0038-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0038-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0038-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611686926\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0038-2.jpg\";}'),(3325,2950,'_wp_attached_file','2021/05/0039-2-scaled.jpg'),(3326,2950,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0039-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0039-2-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:19:\"0039-2-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:18:\"0039-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:18:\"0039-2-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:20:\"0039-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0039-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0039-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0039-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0039-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0039-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0039-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0039-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0039-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0039-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0039-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0039-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611674055\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0039-2.jpg\";}'),(3327,2951,'_wp_attached_file','2021/05/0040-2-scaled.jpg'),(3328,2951,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0040-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0040-2-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:19:\"0040-2-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:18:\"0040-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:18:\"0040-2-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:20:\"0040-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0040-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0040-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0040-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0040-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0040-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0040-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0040-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0040-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0040-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0040-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0040-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611686857\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0040-2.jpg\";}'),(3329,2952,'_wp_attached_file','2021/05/0041-2-scaled.jpg'),(3330,2952,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0041-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0041-2-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:19:\"0041-2-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:18:\"0041-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:18:\"0041-2-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:20:\"0041-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0041-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0041-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0041-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0041-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0041-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0041-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0041-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0041-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0041-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0041-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0041-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611674787\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0041-2.jpg\";}'),(3331,2953,'_wp_attached_file','2021/05/0042-2-scaled.jpg'),(3332,2953,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0042-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0042-2-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:19:\"0042-2-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:18:\"0042-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:18:\"0042-2-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:20:\"0042-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0042-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0042-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0042-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0042-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0042-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0042-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0042-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0042-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0042-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0042-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0042-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611686995\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0042-2.jpg\";}'),(3333,2954,'_wp_attached_file','2021/05/0043-2-scaled.jpg'),(3334,2954,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0043-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0043-2-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:19:\"0043-2-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:18:\"0043-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:18:\"0043-2-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:20:\"0043-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0043-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0043-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0043-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0043-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0043-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0043-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0043-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0043-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0043-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0043-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0043-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611674941\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0043-2.jpg\";}'),(3335,2955,'_wp_attached_file','2021/05/0044-2-scaled.jpg'),(3336,2955,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0044-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0044-2-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:19:\"0044-2-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:18:\"0044-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:18:\"0044-2-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:20:\"0044-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0044-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0044-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0044-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0044-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0044-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0044-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0044-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0044-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0044-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0044-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0044-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611686958\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0044-2.jpg\";}'),(3337,2956,'_wp_attached_file','2021/05/0045-2-scaled.jpg'),(3338,2956,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0045-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0045-2-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:19:\"0045-2-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:18:\"0045-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:18:\"0045-2-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:20:\"0045-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0045-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0045-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0045-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0045-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0045-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0045-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0045-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0045-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0045-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0045-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0045-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611687076\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0045-2.jpg\";}'),(3339,2957,'_wp_attached_file','2021/05/0046-2-scaled.jpg'),(3340,2957,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0046-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0046-2-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:19:\"0046-2-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:18:\"0046-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:18:\"0046-2-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:20:\"0046-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0046-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0046-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0046-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0046-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0046-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0046-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0046-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0046-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0046-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0046-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0046-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611675138\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0046-2.jpg\";}'),(3341,2958,'_wp_attached_file','2021/05/0047-2-scaled.jpg'),(3342,2958,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0047-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0047-2-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:19:\"0047-2-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:18:\"0047-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:18:\"0047-2-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:20:\"0047-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0047-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0047-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0047-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0047-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0047-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0047-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0047-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0047-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0047-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0047-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0047-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611675282\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0047-2.jpg\";}'),(3343,2959,'_wp_attached_file','2021/05/0048-2-scaled.jpg'),(3344,2959,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0048-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0048-2-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:19:\"0048-2-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:18:\"0048-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:18:\"0048-2-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:20:\"0048-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0048-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0048-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0048-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0048-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0048-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0048-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0048-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0048-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0048-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0048-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0048-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611687025\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0048-2.jpg\";}'),(3345,2960,'_wp_attached_file','2021/05/0049-2-scaled.jpg'),(3346,2960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0049-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0049-2-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:19:\"0049-2-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:18:\"0049-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:18:\"0049-2-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:20:\"0049-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0049-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0049-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0049-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0049-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0049-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0049-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0049-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0049-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0049-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0049-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0049-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611675431\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0049-2.jpg\";}'),(3347,2961,'_wp_attached_file','2021/05/0050-2-scaled.jpg'),(3348,2961,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0050-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0050-2-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:19:\"0050-2-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:18:\"0050-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:18:\"0050-2-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:20:\"0050-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0050-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0050-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0050-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0050-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0050-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0050-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0050-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0050-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0050-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0050-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0050-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611675813\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0050-2.jpg\";}'),(3349,2962,'_wp_attached_file','2021/05/0051-2-scaled.jpg'),(3350,2962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0051-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0051-2-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:19:\"0051-2-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:18:\"0051-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:18:\"0051-2-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:20:\"0051-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0051-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0051-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0051-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0051-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0051-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0051-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0051-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0051-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0051-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0051-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0051-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611671259\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0051-2.jpg\";}'),(3351,2963,'_wp_attached_file','2021/05/0052-2-scaled.jpg'),(3352,2963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0052-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0052-2-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:19:\"0052-2-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:18:\"0052-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:18:\"0052-2-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:20:\"0052-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0052-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0052-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0052-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0052-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0052-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0052-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0052-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0052-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0052-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0052-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0052-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611672246\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0052-2.jpg\";}'),(3353,2964,'_wp_attached_file','2021/05/0053-2-scaled.jpg'),(3354,2964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0053-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0053-2-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:19:\"0053-2-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:18:\"0053-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:18:\"0053-2-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:20:\"0053-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0053-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0053-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0053-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0053-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0053-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0053-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0053-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0053-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0053-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0053-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0053-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611671865\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0053-2.jpg\";}'),(3355,2965,'_wp_attached_file','2021/05/0054-2-scaled.jpg'),(3356,2965,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0054-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0054-2-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:19:\"0054-2-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:18:\"0054-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:18:\"0054-2-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:20:\"0054-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0054-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0054-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0054-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0054-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0054-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0054-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0054-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0054-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0054-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0054-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0054-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611671983\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0054-2.jpg\";}'),(3357,2966,'_wp_attached_file','2021/05/0055-2-scaled.jpg'),(3358,2966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0055-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0055-2-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:19:\"0055-2-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:18:\"0055-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:18:\"0055-2-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:20:\"0055-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0055-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0055-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0055-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0055-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0055-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0055-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0055-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0055-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0055-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0055-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0055-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611672481\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0055-2.jpg\";}'),(3359,2967,'_wp_attached_file','2021/05/0056-2-scaled.jpg'),(3360,2967,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0056-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0056-2-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:19:\"0056-2-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:18:\"0056-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:18:\"0056-2-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:20:\"0056-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0056-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0056-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0056-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0056-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0056-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0056-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0056-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0056-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0056-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0056-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0056-2-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611672117\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0056-2.jpg\";}'),(3361,2968,'_wp_attached_file','2021/05/0057-1-scaled.jpg'),(3362,2968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0057-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0057-1-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:19:\"0057-1-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:18:\"0057-1-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:18:\"0057-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0057-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0057-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0057-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0057-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0057-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0057-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0057-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0057-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0057-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0057-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0057-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0057-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611672538\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0057-1.jpg\";}'),(3363,2969,'_wp_attached_file','2021/05/0058-1-scaled.jpg'),(3364,2969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0058-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0058-1-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:19:\"0058-1-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:18:\"0058-1-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:18:\"0058-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0058-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0058-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0058-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0058-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0058-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0058-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0058-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0058-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0058-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0058-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0058-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0058-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611676005\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0058-1.jpg\";}'),(3365,2970,'_wp_attached_file','2021/05/0059-1-scaled.jpg'),(3366,2970,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/05/0059-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0059-1-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:19:\"0059-1-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:18:\"0059-1-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:18:\"0059-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0059-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0059-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0059-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0059-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0059-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0059-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0059-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0059-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0059-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0059-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0059-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0059-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611676599\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0059-1.jpg\";}'),(3367,2971,'_wp_attached_file','2021/05/0060-scaled.jpg'),(3368,2971,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0060-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0060-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:17:\"0060-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:16:\"0060-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:16:\"0060-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:18:\"0060-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0060-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0060-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0060-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0060-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0060-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0060-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0060-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0060-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0060-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0060-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0060-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685454\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0060.jpg\";}'),(3369,2972,'_wp_attached_file','2021/05/0061-scaled.jpg'),(3370,2972,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0061-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0061-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:17:\"0061-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:16:\"0061-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:16:\"0061-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:18:\"0061-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0061-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0061-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0061-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0061-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0061-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0061-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0061-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0061-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0061-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0061-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0061-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611676750\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0061.jpg\";}'),(3371,2973,'_wp_attached_file','2021/05/0062-scaled.jpg'),(3372,2973,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0062-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0062-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:17:\"0062-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:16:\"0062-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:16:\"0062-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:18:\"0062-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0062-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0062-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0062-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0062-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0062-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0062-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0062-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0062-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0062-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0062-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0062-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611676968\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0062.jpg\";}'),(3373,2974,'_wp_attached_file','2021/05/0063-scaled.jpg'),(3374,2974,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0063-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0063-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:17:\"0063-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:16:\"0063-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:16:\"0063-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:18:\"0063-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0063-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0063-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0063-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0063-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0063-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0063-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0063-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0063-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0063-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0063-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0063-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611678181\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0063.jpg\";}'),(3375,2975,'_wp_attached_file','2021/05/0064-scaled.jpg'),(3376,2975,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0064-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0064-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:17:\"0064-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:16:\"0064-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:16:\"0064-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:18:\"0064-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0064-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0064-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0064-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0064-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0064-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0064-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0064-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0064-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0064-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0064-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0064-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685561\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0064.jpg\";}'),(3377,2976,'_wp_attached_file','2021/05/0065-scaled.jpg'),(3378,2976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0065-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0065-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:17:\"0065-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:16:\"0065-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:16:\"0065-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:18:\"0065-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0065-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0065-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0065-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0065-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0065-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0065-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0065-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0065-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0065-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0065-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0065-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611678309\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0065.jpg\";}'),(3379,2977,'_wp_attached_file','2021/05/0066-scaled.jpg'),(3380,2977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0066-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0066-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:17:\"0066-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:16:\"0066-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:16:\"0066-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:18:\"0066-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0066-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0066-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0066-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0066-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0066-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0066-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0066-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0066-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0066-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0066-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0066-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611677215\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0066.jpg\";}'),(3381,2978,'_wp_attached_file','2021/05/0067-scaled.jpg'),(3382,2978,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0067-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0067-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:17:\"0067-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:16:\"0067-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:16:\"0067-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:18:\"0067-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0067-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0067-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0067-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0067-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0067-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0067-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0067-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0067-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0067-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0067-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0067-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611677392\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0067.jpg\";}'),(3383,2979,'_wp_attached_file','2021/05/0068-scaled.jpg'),(3384,2979,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0068-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0068-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:17:\"0068-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:16:\"0068-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:16:\"0068-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:18:\"0068-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0068-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0068-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0068-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0068-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0068-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0068-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0068-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0068-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0068-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0068-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0068-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611677514\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0068.jpg\";}'),(3385,2980,'_wp_attached_file','2021/05/0069-scaled.jpg'),(3386,2980,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0069-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0069-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:17:\"0069-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:16:\"0069-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:16:\"0069-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:18:\"0069-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0069-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0069-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0069-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0069-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0069-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0069-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0069-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0069-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0069-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0069-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0069-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685256\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0069.jpg\";}'),(3387,2981,'_wp_attached_file','2021/05/0070-scaled.jpg'),(3388,2981,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0070-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0070-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:17:\"0070-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:16:\"0070-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:16:\"0070-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:18:\"0070-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0070-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0070-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0070-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0070-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0070-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0070-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0070-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0070-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0070-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0070-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0070-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685394\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0070.jpg\";}'),(3389,2982,'_wp_attached_file','2021/05/0071-scaled.jpg'),(3390,2982,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:23:\"2021/05/0071-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0071-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"0071-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0071-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:17:\"0071-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"0071-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0071-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0071-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0071-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0071-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0071-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0071-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0071-300x450.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0071-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0071-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0071-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0071-scaled.jpg\";s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685302\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0071.jpg\";}'),(3391,2983,'_wp_attached_file','2021/05/0072-scaled.jpg'),(3392,2983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0072-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0072-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:17:\"0072-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:16:\"0072-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:16:\"0072-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:18:\"0072-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0072-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0072-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0072-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0072-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0072-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0072-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0072-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0072-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0072-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0072-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0072-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611677910\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0072.jpg\";}'),(3393,2984,'_wp_attached_file','2021/05/0073-scaled.jpg'),(3394,2984,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0073-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0073-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:17:\"0073-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:16:\"0073-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:16:\"0073-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:18:\"0073-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0073-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0073-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0073-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0073-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0073-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0073-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0073-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0073-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0073-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0073-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0073-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685196\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0073.jpg\";}'),(3395,2985,'_wp_attached_file','2021/05/0074-scaled.jpg'),(3396,2985,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0074-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0074-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:17:\"0074-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:16:\"0074-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:16:\"0074-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:18:\"0074-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0074-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0074-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0074-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0074-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0074-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0074-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0074-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0074-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0074-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0074-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0074-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611678426\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0074.jpg\";}'),(3397,2986,'_wp_attached_file','2021/05/0075-scaled.jpg'),(3398,2986,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0075-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0075-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:17:\"0075-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:16:\"0075-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:16:\"0075-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:18:\"0075-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0075-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0075-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0075-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0075-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0075-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0075-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0075-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0075-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0075-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0075-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0075-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685642\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0075.jpg\";}'),(3399,2987,'_wp_attached_file','2021/05/0076-scaled.jpg'),(3400,2987,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0076-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0076-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:17:\"0076-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:16:\"0076-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:16:\"0076-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:18:\"0076-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0076-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0076-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0076-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0076-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0076-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0076-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0076-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0076-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0076-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0076-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0076-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611678605\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0076.jpg\";}'),(3401,2988,'_wp_attached_file','2021/05/0077-scaled.jpg'),(3402,2988,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0077-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0077-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:17:\"0077-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:16:\"0077-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:16:\"0077-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:18:\"0077-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0077-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0077-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0077-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0077-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0077-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0077-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0077-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0077-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0077-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0077-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0077-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685827\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0077.jpg\";}'),(3403,2989,'_wp_attached_file','2021/05/0078-scaled.jpg'),(3404,2989,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0078-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0078-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:17:\"0078-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:16:\"0078-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:16:\"0078-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:18:\"0078-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0078-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0078-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0078-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0078-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0078-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0078-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0078-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0078-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0078-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0078-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0078-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611685779\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0078.jpg\";}'),(3405,2990,'_wp_attached_file','2021/05/0079-scaled.jpg'),(3406,2990,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0079-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0079-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:17:\"0079-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:16:\"0079-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:16:\"0079-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:18:\"0079-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0079-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0079-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0079-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0079-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0079-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0079-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0079-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0079-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0079-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0079-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0079-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611678790\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0079.jpg\";}'),(3407,2991,'_wp_attached_file','2021/05/0080-scaled.jpg'),(3408,2991,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0080-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0080-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:17:\"0080-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:16:\"0080-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:16:\"0080-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:18:\"0080-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0080-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0080-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0080-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0080-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0080-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0080-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0080-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0080-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0080-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0080-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0080-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611689206\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0080.jpg\";}'),(3409,2992,'_wp_attached_file','2021/05/0081-scaled.jpg'),(3410,2992,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0081-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0081-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:17:\"0081-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:16:\"0081-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:16:\"0081-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:18:\"0081-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0081-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0081-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0081-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0081-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0081-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0081-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0081-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0081-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0081-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0081-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0081-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611678976\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0081.jpg\";}'),(3411,2993,'_wp_attached_file','2021/05/0082-scaled.jpg'),(3412,2993,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0082-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0082-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:17:\"0082-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:16:\"0082-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:16:\"0082-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:18:\"0082-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0082-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0082-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0082-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0082-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0082-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0082-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0082-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0082-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0082-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0082-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0082-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611679103\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0082.jpg\";}'),(3413,2994,'_wp_attached_file','2021/05/0083-scaled.jpg'),(3414,2994,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0083-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0083-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:17:\"0083-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:16:\"0083-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:16:\"0083-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:18:\"0083-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0083-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0083-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0083-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0083-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0083-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0083-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0083-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0083-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0083-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0083-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0083-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611679126\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0083.jpg\";}'),(3415,2995,'_wp_attached_file','2021/05/0084-scaled.jpg'),(3416,2995,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0084-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0084-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:17:\"0084-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:16:\"0084-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:16:\"0084-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:18:\"0084-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0084-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0084-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0084-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0084-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0084-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0084-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0084-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0084-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0084-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0084-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0084-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611679248\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0084.jpg\";}'),(3417,2996,'_wp_attached_file','2021/05/0085-scaled.jpg'),(3418,2996,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0085-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0085-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:17:\"0085-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:16:\"0085-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:16:\"0085-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:18:\"0085-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0085-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0085-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0085-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0085-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0085-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0085-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0085-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0085-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0085-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0085-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0085-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611689264\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0085.jpg\";}'),(3419,2997,'_wp_attached_file','2021/05/0086-scaled.jpg'),(3420,2997,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0086-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0086-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:17:\"0086-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:16:\"0086-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:16:\"0086-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:18:\"0086-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0086-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0086-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0086-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0086-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0086-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0086-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0086-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0086-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0086-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0086-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0086-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611679385\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0086.jpg\";}'),(3421,2998,'_wp_attached_file','2021/05/0087-scaled.jpg'),(3422,2998,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0087-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0087-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:17:\"0087-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:16:\"0087-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:16:\"0087-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:18:\"0087-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0087-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0087-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0087-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0087-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0087-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0087-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0087-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0087-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0087-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0087-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0087-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611679678\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0087.jpg\";}'),(3423,2999,'_wp_attached_file','2021/05/0088-scaled.jpg'),(3424,2999,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0088-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0088-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:17:\"0088-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:16:\"0088-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:16:\"0088-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:18:\"0088-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0088-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0088-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0088-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0088-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0088-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0088-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0088-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0088-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0088-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0088-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0088-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611688876\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0088.jpg\";}'),(3425,3000,'_wp_attached_file','2021/05/0089-scaled.jpg'),(3426,3000,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0089-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0089-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:17:\"0089-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:16:\"0089-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:16:\"0089-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:18:\"0089-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0089-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0089-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0089-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0089-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0089-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0089-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0089-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0089-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0089-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0089-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0089-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611688910\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0089.jpg\";}'),(3427,3001,'_wp_attached_file','2021/05/0090-scaled.jpg'),(3428,3001,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0090-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0090-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:17:\"0090-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:16:\"0090-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:16:\"0090-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:18:\"0090-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0090-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0090-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0090-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0090-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0090-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0090-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0090-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0090-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0090-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0090-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0090-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611688993\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0090.jpg\";}'),(3429,3002,'_wp_attached_file','2021/05/0091-scaled.jpg'),(3430,3002,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/0091-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0091-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:17:\"0091-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:16:\"0091-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:16:\"0091-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:18:\"0091-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0091-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0091-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0091-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0091-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0091-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0091-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0091-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0091-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0091-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0091-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0091-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1611688945\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0091.jpg\";}'),(3431,2779,'_thumbnail_id','2911'),(3432,2779,'stm_post_views','29'),(3433,2779,'stm_day_14','10'),(3434,2779,'stm_month_05','12'),(3441,3006,'_wp_attached_file','2021/05/4.jpg'),(3442,3006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:13:\"2021/05/4.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-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:14:\"4-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:13:\"4-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:13:\"4-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:15:\"4-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"4-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"4.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546966833\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3443,3007,'_wp_attached_file','2021/05/5.jpg'),(3444,3007,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:13:\"2021/05/5.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"5-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:14:\"5-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:13:\"5-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:13:\"5-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:15:\"5-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"5-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"5-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"5-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"5-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"5-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"5-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"5.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546967172\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3445,3008,'_wp_attached_file','2021/05/8.jpg'),(3446,3008,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1218;s:4:\"file\";s:13:\"2021/05/8.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"8-300x203.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"8-1024x693.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"8-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:13:\"8-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"8-1536x1039.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1039;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"8-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"8-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"8-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"8-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"8-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"8-665x450.jpg\";s:5:\"width\";i:665;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"8-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"8-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"8.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1218;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546966491\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3447,3009,'_wp_attached_file','2021/05/9.jpg'),(3448,3009,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:13:\"2021/05/9.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"9-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:14:\"9-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:13:\"9-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:13:\"9-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:15:\"9-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"9-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"9-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"9-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"9-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"9-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"9-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"9.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546967328\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3449,3010,'_wp_attached_file','2021/05/10.jpg'),(3450,3010,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/10.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"10-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:15:\"10-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:14:\"10-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:14:\"10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"10-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"10-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"10-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"10-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"10-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"10-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"10-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"10.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546963486\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3451,3011,'_wp_attached_file','2021/05/11.jpg'),(3452,3011,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/11.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"11-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:15:\"11-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:14:\"11-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:14:\"11-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:16:\"11-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"11-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"11-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"11-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"11-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"11-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"11-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"11-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"11-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"11.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546963640\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3453,3012,'_wp_attached_file','2021/05/12.jpg'),(3454,3012,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/12.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"12-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:15:\"12-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:14:\"12-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:14:\"12-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:16:\"12-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"12-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"12-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"12-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"12-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"12-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"12-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"12-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"12-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"12.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546966224\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3455,3013,'_wp_attached_file','2021/05/15.jpg'),(3456,3013,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/15.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"15-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:15:\"15-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:14:\"15-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:14:\"15-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:16:\"15-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"15-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"15-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"15-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"15-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"15-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"15-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"15-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"15-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"15.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546966132\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3457,3014,'_wp_attached_file','2021/05/16.jpg'),(3458,3014,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/16.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"16-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:15:\"16-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:14:\"16-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:14:\"16-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:16:\"16-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"16-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"16-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"16-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"16-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"16-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"16-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"16-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"16-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"16.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546966174\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3459,3015,'_wp_attached_file','2021/05/17_.jpg'),(3460,3015,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:15:\"2021/05/17_.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"17_-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:16:\"17_-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:15:\"17_-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:15:\"17_-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:17:\"17_-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"17_-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"17_-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"17_-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"17_-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"17_-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"17_-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"17_-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"17_-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"17_-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"17_.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546968009\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3461,3016,'_wp_attached_file','2021/05/18.jpg'),(3462,3016,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/18.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"18-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:15:\"18-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:14:\"18-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:14:\"18-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:16:\"18-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"18-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"18-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"18-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"18-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"18-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"18-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"18-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"18-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"18.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546967387\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3463,3017,'_wp_attached_file','2021/05/19.jpg'),(3464,3017,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/19.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"19-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:15:\"19-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:14:\"19-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:14:\"19-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:16:\"19-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"19-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"19-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"19-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"19-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"19-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"19-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"19-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"19-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"19.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546964300\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3465,3018,'_wp_attached_file','2021/05/22.jpg'),(3466,3018,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/22.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"22-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:15:\"22-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:14:\"22-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:14:\"22-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:16:\"22-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"22-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"22-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"22-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"22-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"22-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"22-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"22-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"22-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"22-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"22.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546964055\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3467,3019,'_wp_attached_file','2021/05/23.jpg'),(3468,3019,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/23.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"23-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:15:\"23-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:14:\"23-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:14:\"23-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:16:\"23-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"23-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"23-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"23-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"23-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"23-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"23-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"23-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"23-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"23-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"23.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546964137\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3469,3020,'_wp_attached_file','2021/05/24.jpg'),(3470,3020,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/24.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"24-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:15:\"24-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:14:\"24-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:14:\"24-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:16:\"24-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"24-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"24-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"24-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"24-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"24-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"24-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"24-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"24-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"24-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"24.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546964185\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3471,3021,'_wp_attached_file','2021/05/25.jpg'),(3472,3021,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/25.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"25-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:15:\"25-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:14:\"25-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:14:\"25-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:16:\"25-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"25-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"25-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"25-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"25-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"25-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"25-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"25-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"25-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"25-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"25.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546966801\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3473,3022,'_wp_attached_file','2021/05/26.jpg'),(3474,3022,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/26.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"26-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:15:\"26-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:14:\"26-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:14:\"26-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:16:\"26-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"26-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"26-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"26-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"26-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"26-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"26-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"26-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"26-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"26-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"26.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546967245\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3475,3023,'_wp_attached_file','2021/05/29.jpg'),(3476,3023,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1011;s:4:\"file\";s:14:\"2021/05/29.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"29-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:15:\"29-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"29-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:14:\"29-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"29-1536x863.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:863;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"29-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"29-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"29-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"29-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"29-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"29-801x450.jpg\";s:5:\"width\";i:801;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"29-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"29-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"29-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"29.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1011;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:6:\"FC6310\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1547043180\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"8.8\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3477,3024,'_wp_attached_file','2021/05/30.jpg'),(3478,3024,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/30.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"30-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:15:\"30-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:14:\"30-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:14:\"30-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:16:\"30-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"30-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"30-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"30-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"30-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"30-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"30-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"30-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"30-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"30-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"30.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546965870\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3479,3025,'_wp_attached_file','2021/05/31.jpg'),(3480,3025,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/31.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"31-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:15:\"31-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:14:\"31-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:14:\"31-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:16:\"31-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"31-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"31-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"31-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"31-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"31-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"31-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"31-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"31-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"31-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"31.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;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:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546965782\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3481,3026,'_wp_attached_file','2021/05/32.jpg'),(3482,3026,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/32.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"32-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:15:\"32-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:14:\"32-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:14:\"32-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:16:\"32-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"32-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"32-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"32-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"32-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"32-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"32-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"32-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"32-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"32-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"32.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546973219\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"3.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3483,3027,'_wp_attached_file','2021/05/33.jpg'),(3484,3027,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/33.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"33-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:15:\"33-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:14:\"33-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:14:\"33-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:16:\"33-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"33-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"33-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"33-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"33-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"33-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"33-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"33-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"33-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"33-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"33.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546973440\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:1:\"5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3485,3028,'_wp_attached_file','2021/05/36.jpg'),(3486,3028,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/36.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"36-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:15:\"36-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:14:\"36-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:14:\"36-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:16:\"36-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"36-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"36-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"36-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"36-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"36-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"36-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"36-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"36-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"36-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"36.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546965548\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3487,3029,'_wp_attached_file','2021/05/37.jpg'),(3488,3029,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:4:\"file\";s:14:\"2021/05/37.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"37-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:15:\"37-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:14:\"37-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:14:\"37-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:16:\"37-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"37-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"37-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"37-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"37-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"37-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"37-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"37-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"37-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"37-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"37.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546965696\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3489,3030,'_wp_attached_file','2021/05/38.jpg'),(3490,3030,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:1209;s:4:\"file\";s:14:\"2021/05/38.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"38-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"38-1024x688.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"38-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:14:\"38-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"38-1536x1032.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1032;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"38-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"38-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"38-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"38-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"38-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"38-670x450.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"38-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"38-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"38-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"38.jpg\";s:5:\"width\";i:1800;s:6:\"height\";i:1209;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1546965615\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3491,2781,'_thumbnail_id','3027'),(3492,3031,'_wp_attached_file','2021/05/DZ5A2659-1-scaled.jpg'),(3493,3031,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:29:\"2021/05/DZ5A2659-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"DZ5A2659-1-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:\"DZ5A2659-1-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:\"DZ5A2659-1-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:\"DZ5A2659-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"DZ5A2659-1-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:24:\"DZ5A2659-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"DZ5A2659-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"DZ5A2659-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"DZ5A2659-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"DZ5A2659-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"DZ5A2659-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"DZ5A2659-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:22:\"DZ5A2659-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"DZ5A2659-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"DZ5A2659-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:21:\"DZ5A2659-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618349593\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"DZ5A2659-1.jpg\";}'),(3494,3032,'_wp_attached_file','2021/05/DZ5A2663-scaled.jpg'),(3495,3032,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2663-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2663-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:21:\"DZ5A2663-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:20:\"DZ5A2663-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:20:\"DZ5A2663-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:22:\"DZ5A2663-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:22:\"DZ5A2663-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2663-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2663-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2663-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2663-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2663-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2663-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2663-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2663-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2663-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2663-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618349642\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2663.jpg\";}'),(3496,3033,'_wp_attached_file','2021/05/DZ5A2667-scaled.jpg'),(3497,3033,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2667-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2667-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:21:\"DZ5A2667-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:20:\"DZ5A2667-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:20:\"DZ5A2667-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:22:\"DZ5A2667-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:22:\"DZ5A2667-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2667-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2667-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2667-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2667-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2667-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2667-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2667-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2667-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2667-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2667-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618349680\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2667.jpg\";}'),(3498,3034,'_wp_attached_file','2021/05/DZ5A2675-scaled.jpg'),(3499,3034,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2675-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2675-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:21:\"DZ5A2675-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:20:\"DZ5A2675-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:20:\"DZ5A2675-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:22:\"DZ5A2675-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:22:\"DZ5A2675-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2675-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2675-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2675-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2675-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2675-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2675-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2675-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2675-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2675-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2675-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618350583\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2675.jpg\";}'),(3500,3035,'_wp_attached_file','2021/05/DZ5A2679-scaled.jpg'),(3501,3035,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2679-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2679-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:21:\"DZ5A2679-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:20:\"DZ5A2679-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:20:\"DZ5A2679-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:22:\"DZ5A2679-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:22:\"DZ5A2679-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2679-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2679-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2679-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2679-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2679-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2679-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2679-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2679-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2679-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2679-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618350614\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2679.jpg\";}'),(3502,3036,'_wp_attached_file','2021/05/DZ5A2687-scaled.jpg'),(3503,3036,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2687-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2687-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:21:\"DZ5A2687-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:20:\"DZ5A2687-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:20:\"DZ5A2687-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:22:\"DZ5A2687-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:22:\"DZ5A2687-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2687-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2687-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2687-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2687-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2687-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2687-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2687-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2687-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2687-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2687-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618350691\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2687.jpg\";}'),(3504,3037,'_wp_attached_file','2021/05/DZ5A2695-scaled.jpg'),(3505,3037,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2695-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2695-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:21:\"DZ5A2695-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:20:\"DZ5A2695-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:20:\"DZ5A2695-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:22:\"DZ5A2695-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:22:\"DZ5A2695-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2695-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2695-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2695-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2695-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2695-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2695-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2695-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2695-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2695-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2695-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618350835\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2695.jpg\";}'),(3506,3038,'_wp_attached_file','2021/05/DZ5A2699-scaled.jpg'),(3507,3038,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2699-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2699-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:21:\"DZ5A2699-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:20:\"DZ5A2699-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:20:\"DZ5A2699-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:22:\"DZ5A2699-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:22:\"DZ5A2699-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2699-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2699-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2699-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2699-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2699-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2699-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2699-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2699-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2699-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2699-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618350887\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2699.jpg\";}'),(3508,3039,'_wp_attached_file','2021/05/DZ5A2724-scaled.jpg'),(3509,3039,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2724-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2724-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:21:\"DZ5A2724-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:20:\"DZ5A2724-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:20:\"DZ5A2724-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:22:\"DZ5A2724-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:22:\"DZ5A2724-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2724-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2724-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2724-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2724-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2724-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2724-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2724-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2724-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2724-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2724-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618351859\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2724.jpg\";}'),(3510,3040,'_wp_attached_file','2021/05/DZ5A2728-scaled.jpg'),(3511,3040,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2728-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2728-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:21:\"DZ5A2728-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:20:\"DZ5A2728-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:20:\"DZ5A2728-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:22:\"DZ5A2728-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:22:\"DZ5A2728-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2728-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2728-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2728-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2728-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2728-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2728-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2728-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2728-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2728-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2728-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618352018\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2728.jpg\";}'),(3512,3041,'_wp_attached_file','2021/05/DZ5A2730-scaled.jpg'),(3513,3041,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2730-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2730-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:21:\"DZ5A2730-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:20:\"DZ5A2730-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:20:\"DZ5A2730-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:22:\"DZ5A2730-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:22:\"DZ5A2730-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2730-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2730-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2730-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2730-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2730-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2730-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2730-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2730-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2730-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2730-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618352088\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2730.jpg\";}'),(3514,3042,'_wp_attached_file','2021/05/DZ5A2737-scaled.jpg'),(3515,3042,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2737-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2737-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:21:\"DZ5A2737-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:20:\"DZ5A2737-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:20:\"DZ5A2737-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:22:\"DZ5A2737-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:22:\"DZ5A2737-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2737-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2737-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2737-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2737-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2737-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2737-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2737-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2737-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2737-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2737-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618352198\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2737.jpg\";}'),(3516,3043,'_wp_attached_file','2021/05/DZ5A2740-scaled.jpg'),(3517,3043,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2740-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2740-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:21:\"DZ5A2740-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:20:\"DZ5A2740-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:20:\"DZ5A2740-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:22:\"DZ5A2740-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:22:\"DZ5A2740-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2740-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2740-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2740-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2740-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2740-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2740-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2740-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2740-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2740-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2740-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618352349\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2740.jpg\";}'),(3518,3044,'_wp_attached_file','2021/05/DZ5A2744-scaled.jpg'),(3519,3044,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2744-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2744-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:21:\"DZ5A2744-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:20:\"DZ5A2744-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:20:\"DZ5A2744-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:22:\"DZ5A2744-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:22:\"DZ5A2744-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2744-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2744-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2744-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2744-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2744-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2744-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2744-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2744-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2744-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2744-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618352658\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2744.jpg\";}'),(3520,3045,'_wp_attached_file','2021/05/DZ5A2747-scaled.jpg'),(3521,3045,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2747-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2747-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:21:\"DZ5A2747-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:20:\"DZ5A2747-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:20:\"DZ5A2747-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:22:\"DZ5A2747-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:22:\"DZ5A2747-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2747-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2747-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2747-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2747-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2747-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2747-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2747-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2747-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2747-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2747-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618352884\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2747.jpg\";}'),(3522,3046,'_wp_attached_file','2021/05/DZ5A2751-scaled.jpg'),(3523,3046,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2751-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2751-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:21:\"DZ5A2751-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:20:\"DZ5A2751-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:20:\"DZ5A2751-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:22:\"DZ5A2751-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:22:\"DZ5A2751-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2751-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2751-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2751-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2751-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2751-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2751-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2751-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2751-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2751-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2751-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618353426\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2751.jpg\";}'),(3524,3047,'_wp_attached_file','2021/05/DZ5A2755-scaled.jpg'),(3525,3047,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2755-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2755-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:21:\"DZ5A2755-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:20:\"DZ5A2755-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:20:\"DZ5A2755-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:22:\"DZ5A2755-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:22:\"DZ5A2755-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2755-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2755-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2755-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2755-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2755-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2755-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2755-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2755-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2755-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2755-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;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:10:\"1618353555\";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:{}}s:14:\"original_image\";s:12:\"DZ5A2755.jpg\";}'),(3526,3048,'_wp_attached_file','2021/05/DZ5A2761-scaled.jpg'),(3527,3048,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2761-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2761-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:21:\"DZ5A2761-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:20:\"DZ5A2761-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:20:\"DZ5A2761-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:22:\"DZ5A2761-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:22:\"DZ5A2761-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2761-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2761-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2761-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2761-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2761-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2761-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2761-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2761-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2761-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2761-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;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:10:\"1618353632\";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:{}}s:14:\"original_image\";s:12:\"DZ5A2761.jpg\";}'),(3528,3049,'_wp_attached_file','2021/05/DZ5A2765-scaled.jpg'),(3529,3049,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2765-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2765-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:21:\"DZ5A2765-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:20:\"DZ5A2765-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:20:\"DZ5A2765-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:22:\"DZ5A2765-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:22:\"DZ5A2765-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2765-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2765-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2765-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2765-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2765-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2765-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2765-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2765-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2765-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2765-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;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:10:\"1618353696\";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:{}}s:14:\"original_image\";s:12:\"DZ5A2765.jpg\";}'),(3530,3050,'_wp_attached_file','2021/05/DZ5A2768-scaled.jpg'),(3531,3050,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2768-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2768-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:21:\"DZ5A2768-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:20:\"DZ5A2768-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:20:\"DZ5A2768-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:22:\"DZ5A2768-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:22:\"DZ5A2768-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2768-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2768-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2768-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2768-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2768-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2768-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2768-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2768-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2768-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2768-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;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:10:\"1618353742\";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:{}}s:14:\"original_image\";s:12:\"DZ5A2768.jpg\";}'),(3532,3051,'_wp_attached_file','2021/05/DZ5A2774-scaled.jpg'),(3533,3051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2774-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2774-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:21:\"DZ5A2774-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:20:\"DZ5A2774-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:20:\"DZ5A2774-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:22:\"DZ5A2774-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:22:\"DZ5A2774-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2774-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2774-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2774-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2774-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2774-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2774-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2774-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2774-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2774-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2774-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;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:10:\"1618353832\";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:{}}s:14:\"original_image\";s:12:\"DZ5A2774.jpg\";}'),(3534,3052,'_wp_attached_file','2021/05/DZ5A2778-scaled.jpg'),(3535,3052,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2778-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2778-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:21:\"DZ5A2778-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:20:\"DZ5A2778-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:20:\"DZ5A2778-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:22:\"DZ5A2778-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:22:\"DZ5A2778-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2778-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2778-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2778-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2778-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2778-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2778-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2778-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2778-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2778-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2778-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;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:10:\"1618354163\";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:{}}s:14:\"original_image\";s:12:\"DZ5A2778.jpg\";}'),(3536,3053,'_wp_attached_file','2021/05/DZ5A2782-scaled.jpg'),(3537,3053,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2782-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2782-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:21:\"DZ5A2782-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:20:\"DZ5A2782-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:20:\"DZ5A2782-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:22:\"DZ5A2782-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:22:\"DZ5A2782-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2782-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2782-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2782-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2782-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2782-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2782-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2782-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2782-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2782-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2782-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;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:10:\"1618354291\";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:{}}s:14:\"original_image\";s:12:\"DZ5A2782.jpg\";}'),(3538,3054,'_wp_attached_file','2021/05/DZ5A2790-scaled.jpg'),(3539,3054,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2790-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2790-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:21:\"DZ5A2790-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:20:\"DZ5A2790-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:20:\"DZ5A2790-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:22:\"DZ5A2790-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:22:\"DZ5A2790-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2790-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2790-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2790-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2790-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2790-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2790-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2790-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2790-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2790-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2790-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618354388\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2790.jpg\";}'),(3540,3055,'_wp_attached_file','2021/05/DZ5A2794-scaled.jpg'),(3541,3055,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2794-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2794-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:21:\"DZ5A2794-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:20:\"DZ5A2794-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:20:\"DZ5A2794-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:22:\"DZ5A2794-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:22:\"DZ5A2794-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2794-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2794-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2794-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2794-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2794-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2794-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2794-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2794-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2794-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2794-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618354485\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"1.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2794.jpg\";}'),(3542,3056,'_wp_attached_file','2021/05/DZ5A2799-scaled.jpg'),(3543,3056,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2799-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2799-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:21:\"DZ5A2799-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:20:\"DZ5A2799-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:20:\"DZ5A2799-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:22:\"DZ5A2799-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:22:\"DZ5A2799-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2799-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2799-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2799-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2799-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2799-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2799-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2799-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2799-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2799-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2799-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618354887\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2799.jpg\";}'),(3544,3057,'_wp_attached_file','2021/05/DZ5A2803-scaled.jpg'),(3545,3057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2803-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2803-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:21:\"DZ5A2803-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:20:\"DZ5A2803-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:20:\"DZ5A2803-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:22:\"DZ5A2803-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:22:\"DZ5A2803-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2803-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2803-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2803-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2803-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2803-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2803-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2803-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2803-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2803-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2803-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355000\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2803.jpg\";}'),(3546,3058,'_wp_attached_file','2021/05/DZ5A2808-scaled.jpg'),(3547,3058,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2808-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2808-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:21:\"DZ5A2808-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:20:\"DZ5A2808-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:20:\"DZ5A2808-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:22:\"DZ5A2808-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:22:\"DZ5A2808-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2808-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2808-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2808-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2808-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2808-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2808-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2808-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2808-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2808-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2808-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355058\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2808.jpg\";}'),(3548,3059,'_wp_attached_file','2021/05/DZ5A2812-scaled.jpg'),(3549,3059,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2812-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2812-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:21:\"DZ5A2812-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:20:\"DZ5A2812-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:20:\"DZ5A2812-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:22:\"DZ5A2812-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:22:\"DZ5A2812-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2812-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2812-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2812-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2812-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2812-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2812-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2812-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2812-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2812-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2812-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355121\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2812.jpg\";}'),(3550,3060,'_wp_attached_file','2021/05/DZ5A2815-scaled.jpg'),(3551,3060,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2815-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2815-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:21:\"DZ5A2815-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:20:\"DZ5A2815-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:20:\"DZ5A2815-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:22:\"DZ5A2815-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:22:\"DZ5A2815-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2815-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2815-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2815-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2815-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2815-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2815-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2815-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2815-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2815-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2815-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2815.jpg\";}'),(3552,3061,'_wp_attached_file','2021/05/DZ5A2816-scaled.jpg'),(3553,3061,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2816-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2816-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:21:\"DZ5A2816-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:20:\"DZ5A2816-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:20:\"DZ5A2816-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:22:\"DZ5A2816-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:22:\"DZ5A2816-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2816-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2816-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2816-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2816-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2816-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2816-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2816-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2816-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2816-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2816-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355259\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:1:\"1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2816.jpg\";}'),(3554,3062,'_wp_attached_file','2021/05/DZ5A2821-scaled.jpg'),(3555,3062,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2821-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2821-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:21:\"DZ5A2821-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:20:\"DZ5A2821-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:20:\"DZ5A2821-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:22:\"DZ5A2821-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:22:\"DZ5A2821-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2821-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2821-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2821-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2821-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2821-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2821-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2821-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2821-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2821-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2821-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2821.jpg\";}'),(3556,3063,'_wp_attached_file','2021/05/DZ5A2825-scaled.jpg'),(3557,3063,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2825-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2825-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:21:\"DZ5A2825-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:20:\"DZ5A2825-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:20:\"DZ5A2825-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:22:\"DZ5A2825-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:22:\"DZ5A2825-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2825-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2825-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2825-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2825-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2825-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2825-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2825-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2825-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2825-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2825-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355400\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2825.jpg\";}'),(3558,3064,'_wp_attached_file','2021/05/DZ5A2826-scaled.jpg'),(3559,3064,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2826-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2826-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:21:\"DZ5A2826-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:20:\"DZ5A2826-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:20:\"DZ5A2826-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:22:\"DZ5A2826-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:22:\"DZ5A2826-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2826-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2826-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2826-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2826-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2826-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2826-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2826-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2826-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2826-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2826-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355437\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2826.jpg\";}'),(3560,3065,'_wp_attached_file','2021/05/DZ5A2833-scaled.jpg'),(3561,3065,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2833-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2833-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:21:\"DZ5A2833-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:20:\"DZ5A2833-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:20:\"DZ5A2833-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:22:\"DZ5A2833-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:22:\"DZ5A2833-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2833-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2833-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2833-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2833-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2833-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2833-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2833-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2833-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2833-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2833-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355515\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2833.jpg\";}'),(3562,3066,'_wp_attached_file','2021/05/DZ5A2838-scaled.jpg'),(3563,3066,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2838-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2838-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:21:\"DZ5A2838-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:20:\"DZ5A2838-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:20:\"DZ5A2838-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:22:\"DZ5A2838-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:22:\"DZ5A2838-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2838-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2838-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2838-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2838-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2838-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2838-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2838-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2838-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2838-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2838-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355640\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2838.jpg\";}'),(3564,3067,'_wp_attached_file','2021/05/DZ5A2843-scaled.jpg'),(3565,3067,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2843-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2843-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:21:\"DZ5A2843-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:20:\"DZ5A2843-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:20:\"DZ5A2843-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:22:\"DZ5A2843-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:22:\"DZ5A2843-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2843-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2843-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2843-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2843-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2843-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2843-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2843-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2843-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2843-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2843-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355698\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2843.jpg\";}'),(3566,3068,'_wp_attached_file','2021/05/DZ5A2845-scaled.jpg'),(3567,3068,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2845-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2845-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:21:\"DZ5A2845-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:20:\"DZ5A2845-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:20:\"DZ5A2845-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:22:\"DZ5A2845-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:22:\"DZ5A2845-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2845-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2845-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2845-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2845-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2845-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2845-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2845-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2845-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2845-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2845-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355769\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2845.jpg\";}'),(3568,3069,'_wp_attached_file','2021/05/DZ5A2853-scaled.jpg'),(3569,3069,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2853-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2853-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:21:\"DZ5A2853-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:20:\"DZ5A2853-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:20:\"DZ5A2853-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:22:\"DZ5A2853-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:22:\"DZ5A2853-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2853-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2853-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2853-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2853-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2853-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2853-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2853-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2853-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2853-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2853-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618355981\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2853.jpg\";}'),(3570,3070,'_wp_attached_file','2021/05/DZ5A2860-scaled.jpg'),(3571,3070,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2860-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2860-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:21:\"DZ5A2860-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:20:\"DZ5A2860-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:20:\"DZ5A2860-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:22:\"DZ5A2860-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:22:\"DZ5A2860-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2860-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2860-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2860-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2860-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2860-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2860-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2860-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2860-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2860-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2860-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618356117\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2860.jpg\";}'),(3572,3071,'_wp_attached_file','2021/05/DZ5A2865-scaled.jpg'),(3573,3071,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2865-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2865-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:21:\"DZ5A2865-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:20:\"DZ5A2865-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:20:\"DZ5A2865-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:22:\"DZ5A2865-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:22:\"DZ5A2865-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2865-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2865-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2865-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2865-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2865-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2865-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2865-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2865-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2865-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2865-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618356216\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2865.jpg\";}'),(3574,3072,'_wp_attached_file','2021/05/DZ5A2870-scaled.jpg'),(3575,3072,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2870-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2870-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:21:\"DZ5A2870-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:20:\"DZ5A2870-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:20:\"DZ5A2870-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:22:\"DZ5A2870-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:22:\"DZ5A2870-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2870-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2870-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2870-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2870-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2870-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2870-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2870-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2870-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2870-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618356339\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2870.jpg\";}'),(3576,3073,'_wp_attached_file','2021/05/DZ5A2870-1-scaled.jpg'),(3577,3073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:29:\"2021/05/DZ5A2870-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"DZ5A2870-1-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:\"DZ5A2870-1-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:\"DZ5A2870-1-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:\"DZ5A2870-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"DZ5A2870-1-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:24:\"DZ5A2870-1-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"DZ5A2870-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"DZ5A2870-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"DZ5A2870-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"DZ5A2870-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"DZ5A2870-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"DZ5A2870-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:22:\"DZ5A2870-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"DZ5A2870-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"DZ5A2870-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:21:\"DZ5A2870-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618356339\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"DZ5A2870-1.jpg\";}'),(3578,3074,'_wp_attached_file','2021/05/DZ5A2873-scaled.jpg'),(3579,3074,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2873-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2873-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:21:\"DZ5A2873-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:20:\"DZ5A2873-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:20:\"DZ5A2873-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:22:\"DZ5A2873-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:22:\"DZ5A2873-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2873-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2873-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2873-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2873-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2873-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2873-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2873-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2873-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2873-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2873-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618356401\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2873.jpg\";}'),(3580,3075,'_wp_attached_file','2021/05/DZ5A2876-scaled.jpg'),(3581,3075,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2876-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2876-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:21:\"DZ5A2876-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:20:\"DZ5A2876-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:20:\"DZ5A2876-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:22:\"DZ5A2876-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:22:\"DZ5A2876-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2876-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2876-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2876-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2876-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2876-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2876-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2876-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2876-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2876-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2876-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618356527\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2876.jpg\";}'),(3582,3076,'_wp_attached_file','2021/05/DZ5A2880-scaled.jpg'),(3583,3076,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2880-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2880-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:21:\"DZ5A2880-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:20:\"DZ5A2880-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:20:\"DZ5A2880-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:22:\"DZ5A2880-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:22:\"DZ5A2880-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2880-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2880-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2880-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2880-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2880-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2880-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2880-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2880-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2880-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2880-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618356680\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2880.jpg\";}'),(3584,3077,'_wp_attached_file','2021/05/DZ5A2890-scaled.jpg'),(3585,3077,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:27:\"2021/05/DZ5A2890-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"DZ5A2890-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:21:\"DZ5A2890-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:20:\"DZ5A2890-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:20:\"DZ5A2890-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:22:\"DZ5A2890-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:22:\"DZ5A2890-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"DZ5A2890-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"DZ5A2890-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"DZ5A2890-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2890-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"DZ5A2890-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"DZ5A2890-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"DZ5A2890-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"DZ5A2890-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"DZ5A2890-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:19:\"DZ5A2890-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618356886\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DZ5A2890.jpg\";}'),(3586,2790,'_thumbnail_id','3033'),(3587,3078,'_wp_attached_file','2021/05/1-1-scaled.jpg'),(3588,3078,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:22:\"2021/05/1-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-1-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:16:\"1-1-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:15:\"1-1-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:15:\"1-1-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:17:\"1-1-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:17:\"1-1-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"1-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"1-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"1-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"1-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"1-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"1-1-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"1-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"1-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:14:\"1-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1710;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:7:\"1-1.jpg\";}'),(3589,3079,'_wp_attached_file','2021/05/2-1.jpg'),(3590,3079,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:15:\"2021/05/2-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"2-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"2-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"2-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"2-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"2-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"2-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:426;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:{}}}'),(3591,3080,'_wp_attached_file','2021/05/3-1.jpg'),(3592,3080,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:15:\"2021/05/3-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"3-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"3-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"3-1-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"3-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"3-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"3-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3593,3081,'_wp_attached_file','2021/05/4-1.jpg'),(3594,3081,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:15:\"2021/05/4-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"4-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"4-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"4-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"4-1-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"4-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"4-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"4-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"4-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3595,3082,'_wp_attached_file','2021/05/5-1.jpg'),(3596,3082,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:15:\"2021/05/5-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"5-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"5-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"5-1-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"5-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"5-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"5-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"5-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3597,3083,'_wp_attached_file','2021/05/6.jpg'),(3598,3083,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:13:\"2021/05/6.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"6-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"6-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"6-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"6-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"6.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:5:\"6.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3599,3084,'_wp_attached_file','2021/05/7.jpg'),(3600,3084,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:13:\"2021/05/7.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"7-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"7-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"7-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"7-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"7.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:5:\"7.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3601,3085,'_wp_attached_file','2021/05/8-1.jpg'),(3602,3085,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:15:\"2021/05/8-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"8-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"8-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"8-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"8-1-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"8-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"8-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"8-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"8-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3603,3086,'_wp_attached_file','2021/05/9-1-scaled.jpg'),(3604,3086,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1601;s:4:\"file\";s:22:\"2021/05/9-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"9-1-1024x641.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:641;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9-1-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:15:\"9-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"9-1-1536x961.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:961;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:17:\"9-1-2048x1281.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"9-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"9-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"9-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"9-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"9-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"9-1-719x450.jpg\";s:5:\"width\";i:719;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"9-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"9-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"9-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:14:\"9-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1601;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:7:\"9-1.jpg\";}'),(3605,3087,'_wp_attached_file','2021/05/10-1.jpg'),(3606,3087,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:16:\"2021/05/10-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"10-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"10-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"10-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"10-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"10-1-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"10-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"10-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"10-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"10-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3607,3088,'_wp_attached_file','2021/05/11-1.jpg'),(3608,3088,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:16:\"2021/05/11-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"11-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"11-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"11-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"11-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"11-1-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"11-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"11-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"11-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"11-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3609,3089,'_wp_attached_file','2021/05/12-1.jpg'),(3610,3089,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:16:\"2021/05/12-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"12-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"12-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"12-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"12-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"12-1-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"12-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"12-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"12-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"12-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3611,3090,'_wp_attached_file','2021/05/13.jpg'),(3612,3090,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:14:\"2021/05/13.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"13-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"13-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"13-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"13-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"13-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"13.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"13.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3613,3091,'_wp_attached_file','2021/05/14-scaled.jpg'),(3614,3091,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:21:\"2021/05/14-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"14-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:15:\"14-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:14:\"14-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:14:\"14-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:16:\"14-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"14-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"14-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"14-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"14-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"14-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"14-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"14-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"14-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"14-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:13:\"14-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:6:\"14.jpg\";}'),(3615,3092,'_wp_attached_file','2021/05/17-scaled.jpg'),(3616,3092,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1720;s:4:\"file\";s:21:\"2021/05/17-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"17-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"17-1024x688.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"17-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:14:\"17-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"17-1536x1032.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1032;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"17-2048x1376.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1376;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"17-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"17-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"17-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"17-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"17-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"17-670x450.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"17-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"17-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:13:\"17-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1720;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:6:\"17.jpg\";}'),(3617,3093,'_wp_attached_file','2021/05/18-1-scaled.jpg'),(3618,3093,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/18-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"18-1-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:17:\"18-1-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:16:\"18-1-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:16:\"18-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"18-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"18-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"18-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"18-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"18-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"18-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"18-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"18-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"18-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"18-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"18-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"18-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"18-1.jpg\";}'),(3619,3094,'_wp_attached_file','2021/05/19-1-scaled.jpg'),(3620,3094,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1576;s:4:\"file\";s:23:\"2021/05/19-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"19-1-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"19-1-1024x630.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"19-1-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:16:\"19-1-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"19-1-1536x945.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:945;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"19-1-2048x1260.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"19-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"19-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"19-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"19-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"19-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"19-1-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"19-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"19-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"19-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"19-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1576;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"19-1.jpg\";}'),(3621,3095,'_wp_attached_file','2021/05/20-scaled.jpg'),(3622,3095,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:21:\"2021/05/20-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"20-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:15:\"20-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:14:\"20-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:14:\"20-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:16:\"20-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"20-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"20-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"20-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"20-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"20-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"20-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"20-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"20-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"20-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"20-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:13:\"20-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:6:\"20.jpg\";}'),(3623,3096,'_wp_attached_file','2021/05/21-scaled.jpg'),(3624,3096,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:21:\"2021/05/21-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"21-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:15:\"21-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:14:\"21-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:14:\"21-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:16:\"21-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"21-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"21-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"21-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"21-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"21-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"21-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"21-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"21-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"21-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"21-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:13:\"21-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:6:\"21.jpg\";}'),(3625,3097,'_wp_attached_file','2021/05/22-1-scaled.jpg'),(3626,3097,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1625;s:4:\"file\";s:23:\"2021/05/22-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"22-1-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"22-1-1024x650.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"22-1-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:16:\"22-1-768x487.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"22-1-1536x975.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:975;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"22-1-2048x1300.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"22-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"22-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"22-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"22-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"22-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"22-1-709x450.jpg\";s:5:\"width\";i:709;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"22-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"22-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"22-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"22-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1625;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"22-1.jpg\";}'),(3627,3098,'_wp_attached_file','2021/05/23-1-scaled.jpg'),(3628,3098,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/05/23-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"23-1-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:17:\"23-1-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:16:\"23-1-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:16:\"23-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"23-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"23-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"23-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"23-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"23-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"23-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"23-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"23-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"23-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"23-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"23-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"23-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"23-1.jpg\";}'),(3629,3099,'_wp_attached_file','2021/05/24-1-scaled.jpg'),(3630,3099,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1606;s:4:\"file\";s:23:\"2021/05/24-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"24-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"24-1-1024x642.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:642;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"24-1-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:16:\"24-1-768x482.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"24-1-1536x964.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:964;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"24-1-2048x1285.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1285;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"24-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"24-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"24-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"24-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"24-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"24-1-717x450.jpg\";s:5:\"width\";i:717;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"24-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"24-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"24-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"24-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1606;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"24-1.jpg\";}'),(3631,3100,'_wp_attached_file','2021/05/25-1.jpg'),(3632,3100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:321;s:4:\"file\";s:16:\"2021/05/25-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"25-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"25-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"25-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"25-1-615x321.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"25-1-615x321.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"25-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"25-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"25-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"25-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:321;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:{}}}'),(3633,3101,'_wp_attached_file','2021/05/26-1.jpg'),(3634,3101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:320;s:4:\"file\";s:16:\"2021/05/26-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"26-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"26-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"26-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"26-1-615x320.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"26-1-615x320.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"26-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"26-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"26-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"26-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3635,3102,'_wp_attached_file','2021/05/27.jpg'),(3636,3102,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:14:\"2021/05/27.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"27-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"27-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"27-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"27-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"27-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"27-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"27-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"27.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"27.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3637,3103,'_wp_attached_file','2021/05/28.jpg'),(3638,3103,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:14:\"2021/05/28.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"28-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"28-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"28-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"28-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"28-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"28-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"28-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"28.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"28.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3639,3104,'_wp_attached_file','2021/05/29-1.jpg'),(3640,3104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:338;s:4:\"file\";s:16:\"2021/05/29-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"29-1-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"29-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"29-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"29-1-615x338.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"29-1-615x338.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"29-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"29-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"29-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"29-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:338;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:{}}}'),(3641,3105,'_wp_attached_file','2021/05/30-1.jpg'),(3642,3105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:16:\"2021/05/30-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"30-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"30-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"30-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"30-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"30-1-615x423.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"30-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"30-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"30-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"30-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;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:{}}}'),(3643,3106,'_wp_attached_file','2021/05/31-1-scaled.jpg'),(3644,3106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1685;s:4:\"file\";s:23:\"2021/05/31-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"31-1-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"31-1-1024x674.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:674;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"31-1-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:16:\"31-1-768x505.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"31-1-1536x1011.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1011;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"31-1-2048x1348.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1348;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"31-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"31-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"31-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"31-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"31-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"31-1-684x450.jpg\";s:5:\"width\";i:684;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"31-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"31-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"31-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"31-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1685;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"31-1.jpg\";}'),(3645,3107,'_wp_attached_file','2021/05/32-1.jpg'),(3646,3107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:16:\"2021/05/32-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"32-1-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:16:\"32-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"32-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"32-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"32-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"32-1-640x450.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"32-1-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"32-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"32-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"32-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:480;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:{}}}'),(3647,3108,'_wp_attached_file','2021/05/101-scaled.jpg'),(3648,3108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:22:\"2021/05/101-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"101-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:16:\"101-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:15:\"101-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:15:\"101-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:17:\"101-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:17:\"101-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"101-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"101-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"101-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"101-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"101-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"101-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"101-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"101-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"101-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:14:\"101-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1710;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:7:\"101.jpg\";}'),(3649,2788,'_thumbnail_id','3078'),(3650,3109,'_wp_attached_file','2021/05/0001-3.jpg'),(3651,3109,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0001-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0001-3-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:19:\"0001-3-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:18:\"0001-3-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:18:\"0001-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0001-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0001-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0001-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0001-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0001-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0001-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0001-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0001-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0001-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0001-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560702667\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3652,3110,'_wp_attached_file','2021/05/0002-3.jpg'),(3653,3110,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0002-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0002-3-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:19:\"0002-3-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:18:\"0002-3-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:18:\"0002-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0002-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0002-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0002-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0002-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0002-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0002-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0002-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0002-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0002-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0002-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560700645\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3654,3111,'_wp_attached_file','2021/05/00003.jpg'),(3655,3111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:17:\"2021/05/00003.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"00003-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:18:\"00003-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:17:\"00003-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:17:\"00003-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"00003-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"00003-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"00003-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"00003-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:17:\"00003-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:17:\"00003-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:17:\"00003-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"00003-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"00003-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"00003.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560707989\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3656,3112,'_wp_attached_file','2021/05/00005.jpg'),(3657,3112,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:17:\"2021/05/00005.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"00005-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:18:\"00005-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:17:\"00005-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:17:\"00005-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"00005-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"00005-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"00005-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"00005-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:17:\"00005-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:17:\"00005-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:17:\"00005-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"00005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"00005-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"00005.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560704307\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3658,3113,'_wp_attached_file','2021/05/00006.jpg'),(3659,3113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:17:\"2021/05/00006.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"00006-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:18:\"00006-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:17:\"00006-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:17:\"00006-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:19:\"00006-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"00006-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"00006-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"00006-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"00006-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:17:\"00006-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:17:\"00006-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:17:\"00006-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"00006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"00006-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"00006.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618257172\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3660,3114,'_wp_attached_file','2021/05/00007.jpg'),(3661,3114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:17:\"2021/05/00007.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"00007-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:18:\"00007-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:17:\"00007-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:17:\"00007-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:19:\"00007-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"00007-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"00007-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"00007-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"00007-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:17:\"00007-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:17:\"00007-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:17:\"00007-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"00007-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"00007-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"00007.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618257346\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3662,3115,'_wp_attached_file','2021/05/00008.jpg'),(3663,3115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:17:\"2021/05/00008.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"00008-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:18:\"00008-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:17:\"00008-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:17:\"00008-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:19:\"00008-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"00008-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"00008-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"00008-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"00008-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:17:\"00008-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:17:\"00008-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:17:\"00008-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"00008-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"00008-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"00008.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618258316\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3664,3116,'_wp_attached_file','2021/05/00009.jpg'),(3665,3116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:17:\"2021/05/00009.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"00009-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:18:\"00009-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:17:\"00009-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:17:\"00009-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"00009-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"00009-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"00009-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"00009-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:17:\"00009-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:17:\"00009-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:17:\"00009-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"00009-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"00009-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"00009.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560705154\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3666,3117,'_wp_attached_file','2021/05/0015-3.jpg'),(3667,3117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0015-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0015-3-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:19:\"0015-3-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:18:\"0015-3-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:18:\"0015-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0015-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0015-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0015-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0015-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0015-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0015-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0015-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0015-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0015-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0015-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560706607\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3668,3118,'_wp_attached_file','2021/05/000016.jpg'),(3669,3118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:18:\"2021/05/000016.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"000016-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:19:\"000016-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:18:\"000016-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:18:\"000016-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:20:\"000016-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"000016-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"000016-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"000016-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"000016-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"000016-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"000016-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"000016-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"000016-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"000016-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"000016.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618258444\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3670,3119,'_wp_attached_file','2021/05/0000017.jpg'),(3671,3119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:19:\"2021/05/0000017.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"0000017-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:20:\"0000017-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:19:\"0000017-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"0000017-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:21:\"0000017-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"0000017-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"0000017-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"0000017-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"0000017-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"0000017-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"0000017-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"0000017-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"0000017-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"0000017-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"0000017.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618258774\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3672,3120,'_wp_attached_file','2021/05/0000018.jpg'),(3673,3120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:19:\"2021/05/0000018.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"0000018-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:20:\"0000018-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:19:\"0000018-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"0000018-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:21:\"0000018-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"0000018-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"0000018-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"0000018-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"0000018-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"0000018-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"0000018-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"0000018-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"0000018-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"0000018-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"0000018.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618259194\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3674,3121,'_wp_attached_file','2021/05/000019.jpg'),(3675,3121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:18:\"2021/05/000019.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"000019-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:19:\"000019-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:18:\"000019-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:18:\"000019-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:20:\"000019-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"000019-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"000019-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"000019-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"000019-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"000019-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"000019-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"000019-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"000019-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"000019-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"000019.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618260150\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3676,3122,'_wp_attached_file','2021/05/000020.jpg'),(3677,3122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:18:\"2021/05/000020.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"000020-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:19:\"000020-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:18:\"000020-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:18:\"000020-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:20:\"000020-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"000020-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"000020-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"000020-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"000020-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"000020-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"000020-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"000020-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"000020-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"000020-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"000020.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618259994\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3678,3123,'_wp_attached_file','2021/05/000021.jpg'),(3679,3123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:18:\"2021/05/000021.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"000021-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:19:\"000021-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:18:\"000021-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:18:\"000021-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:20:\"000021-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"000021-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"000021-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"000021-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"000021-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"000021-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"000021-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"000021-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"000021-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"000021-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"000021.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618258952\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3680,3124,'_wp_attached_file','2021/05/000022.jpg'),(3681,3124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:18:\"2021/05/000022.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"000022-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:19:\"000022-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:18:\"000022-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:18:\"000022-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:20:\"000022-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"000022-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"000022-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"000022-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"000022-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"000022-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"000022-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"000022-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"000022-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"000022-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"000022.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618259345\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3682,3125,'_wp_attached_file','2021/05/000023.jpg'),(3683,3125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:18:\"2021/05/000023.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"000023-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:19:\"000023-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:18:\"000023-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:18:\"000023-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:20:\"000023-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"000023-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"000023-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"000023-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"000023-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"000023-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"000023-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"000023-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"000023-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"000023-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"000023.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618260259\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3684,3126,'_wp_attached_file','2021/05/000024.jpg'),(3685,3126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:18:\"2021/05/000024.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"000024-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:19:\"000024-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:18:\"000024-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:18:\"000024-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:20:\"000024-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"000024-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"000024-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"000024-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"000024-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"000024-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"000024-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"000024-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"000024-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"000024-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"000024.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS R5\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1618257805\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3686,3127,'_wp_attached_file','2021/05/0024-3.jpg'),(3687,3127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0024-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0024-3-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:19:\"0024-3-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:18:\"0024-3-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:18:\"0024-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0024-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0024-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0024-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0024-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0024-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0024-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0024-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0024-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0024-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0024-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560710208\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3688,3128,'_wp_attached_file','2021/05/000025.jpg'),(3689,3128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1309;s:6:\"height\";i:873;s:4:\"file\";s:18:\"2021/05/000025.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"000025-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:19:\"000025-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:18:\"000025-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:18:\"000025-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"000025-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"000025-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"000025-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"000025-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"000025-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"000025-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"000025-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"000025-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"000025-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"000025.jpg\";s:5:\"width\";i:1309;s:6:\"height\";i:873;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560709931\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3690,3129,'_wp_attached_file','2021/05/0025-3.jpg'),(3691,3129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0025-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0025-3-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:19:\"0025-3-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:18:\"0025-3-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:18:\"0025-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0025-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0025-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0025-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0025-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0025-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0025-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0025-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0025-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0025-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0025-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560710701\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3692,3130,'_wp_attached_file','2021/05/0000026.jpg'),(3693,3130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1364;s:6:\"height\";i:915;s:4:\"file\";s:19:\"2021/05/0000026.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"0000026-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"0000026-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"0000026-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"0000026-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"0000026-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"0000026-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"0000026-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"0000026-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:19:\"0000026-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:19:\"0000026-671x450.jpg\";s:5:\"width\";i:671;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:19:\"0000026-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"0000026-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"0000026-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:11:\"0000026.jpg\";s:5:\"width\";i:1364;s:6:\"height\";i:915;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560710089\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3694,3131,'_wp_attached_file','2021/05/0026-3.jpg'),(3695,3131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0026-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0026-3-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:19:\"0026-3-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:18:\"0026-3-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:18:\"0026-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0026-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0026-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0026-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0026-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0026-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0026-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0026-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0026-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0026-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0026-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560710838\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3696,3132,'_wp_attached_file','2021/05/0027-3.jpg'),(3697,3132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0027-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0027-3-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:19:\"0027-3-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:18:\"0027-3-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:18:\"0027-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0027-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0027-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0027-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0027-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0027-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0027-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0027-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0027-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0027-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0027-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560718137\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3698,3133,'_wp_attached_file','2021/05/0028-3.jpg'),(3699,3133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0028-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0028-3-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:19:\"0028-3-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:18:\"0028-3-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:18:\"0028-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0028-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0028-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0028-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0028-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0028-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0028-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0028-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0028-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0028-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0028-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560711044\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3700,3134,'_wp_attached_file','2021/05/0029-3.jpg'),(3701,3134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0029-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0029-3-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:19:\"0029-3-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:18:\"0029-3-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:18:\"0029-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0029-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0029-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0029-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0029-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0029-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0029-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0029-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0029-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0029-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0029-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560711229\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3702,3135,'_wp_attached_file','2021/05/0030-3.jpg'),(3703,3135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0030-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0030-3-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:19:\"0030-3-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:18:\"0030-3-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:18:\"0030-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0030-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0030-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0030-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0030-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0030-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0030-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0030-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0030-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0030-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0030-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560699820\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3704,3136,'_wp_attached_file','2021/05/0031-3.jpg'),(3705,3136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0031-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0031-3-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:19:\"0031-3-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:18:\"0031-3-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:18:\"0031-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0031-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0031-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0031-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0031-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0031-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0031-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0031-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0031-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0031-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0031-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560700005\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3706,3137,'_wp_attached_file','2021/05/0032-3.jpg'),(3707,3137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0032-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0032-3-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:19:\"0032-3-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:18:\"0032-3-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:18:\"0032-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0032-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0032-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0032-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0032-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0032-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0032-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0032-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0032-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0032-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0032-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560700187\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3708,3138,'_wp_attached_file','2021/05/0033-3.jpg'),(3709,3138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0033-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0033-3-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:19:\"0033-3-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:18:\"0033-3-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:18:\"0033-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0033-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0033-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0033-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0033-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0033-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0033-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0033-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0033-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0033-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0033-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560711441\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3710,3139,'_wp_attached_file','2021/05/0034-3.jpg'),(3711,3139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0034-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0034-3-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:19:\"0034-3-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:18:\"0034-3-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:18:\"0034-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0034-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0034-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0034-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0034-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0034-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0034-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0034-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0034-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0034-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0034-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560711668\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3712,3140,'_wp_attached_file','2021/05/0035-3.jpg'),(3713,3140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0035-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0035-3-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:19:\"0035-3-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:18:\"0035-3-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:18:\"0035-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0035-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0035-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0035-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0035-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0035-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0035-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0035-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0035-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0035-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0035-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560711766\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3714,3141,'_wp_attached_file','2021/05/0036-3.jpg'),(3715,3141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0036-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0036-3-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:19:\"0036-3-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:18:\"0036-3-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:18:\"0036-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0036-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0036-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0036-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0036-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0036-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0036-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0036-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0036-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0036-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0036-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560712031\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3716,3142,'_wp_attached_file','2021/05/0037-3.jpg'),(3717,3142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0037-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0037-3-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:19:\"0037-3-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:18:\"0037-3-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:18:\"0037-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0037-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0037-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0037-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0037-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0037-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0037-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0037-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0037-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0037-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0037-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560712234\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3718,3143,'_wp_attached_file','2021/05/0038-3.jpg'),(3719,3143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0038-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0038-3-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:19:\"0038-3-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:18:\"0038-3-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:18:\"0038-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0038-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0038-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0038-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0038-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0038-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0038-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0038-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0038-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0038-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0038-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560712789\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3720,3144,'_wp_attached_file','2021/05/0039-3.jpg'),(3721,3144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1374;s:6:\"height\";i:916;s:4:\"file\";s:18:\"2021/05/0039-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0039-3-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:19:\"0039-3-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:18:\"0039-3-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:18:\"0039-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0039-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0039-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0039-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0039-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0039-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0039-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0039-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0039-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0039-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0039-3.jpg\";s:5:\"width\";i:1374;s:6:\"height\";i:916;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560712973\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3722,3145,'_wp_attached_file','2021/05/0040-3.jpg'),(3723,3145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0040-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0040-3-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:19:\"0040-3-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:18:\"0040-3-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:18:\"0040-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0040-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0040-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0040-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0040-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0040-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0040-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0040-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0040-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0040-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0040-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560713174\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3724,3146,'_wp_attached_file','2021/05/0041-3.jpg'),(3725,3146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:18:\"2021/05/0041-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0041-3-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:19:\"0041-3-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:18:\"0041-3-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:18:\"0041-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0041-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0041-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0041-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0041-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0041-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0041-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0041-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0041-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0041-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"0041-3.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560713289\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3726,3147,'_wp_attached_file','2021/05/45.jpg'),(3727,3147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:14:\"2021/05/45.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"45-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:15:\"45-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:14:\"45-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:14:\"45-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"45-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"45-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"45-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"45-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"45-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"45-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"45-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"45-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"45-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"45.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560717068\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3728,3148,'_wp_attached_file','2021/05/46.jpg'),(3729,3148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1355;s:6:\"height\";i:903;s:4:\"file\";s:14:\"2021/05/46.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"46-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:15:\"46-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"46-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:14:\"46-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"46-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"46-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"46-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"46-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"46-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"46-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"46-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"46-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"46-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"46.jpg\";s:5:\"width\";i:1355;s:6:\"height\";i:903;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560708478\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3730,3149,'_wp_attached_file','2021/05/47.jpg'),(3731,3149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:14:\"2021/05/47.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"47-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:15:\"47-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:14:\"47-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:14:\"47-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"47-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"47-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"47-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"47-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"47-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"47-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"47-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"47-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"47-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"47.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560707382\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3732,3150,'_wp_attached_file','2021/05/48.jpg'),(3733,3150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:14:\"2021/05/48.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"48-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:15:\"48-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:14:\"48-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:14:\"48-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"48-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"48-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"48-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"48-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"48-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"48-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"48-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"48-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"48-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"48.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560708284\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3734,3151,'_wp_attached_file','2021/05/49.jpg'),(3735,3151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:14:\"2021/05/49.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"49-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:15:\"49-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:14:\"49-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:14:\"49-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"49-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"49-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"49-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"49-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"49-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"49-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"49-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"49-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"49-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"49.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560718653\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3736,3152,'_wp_attached_file','2021/05/50.jpg'),(3737,3152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:14:\"2021/05/50.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"50-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:15:\"50-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:14:\"50-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:14:\"50-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"50-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"50-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"50-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"50-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"50-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"50-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"50-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"50-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"50-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"50.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560717212\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3738,3153,'_wp_attached_file','2021/05/51.jpg'),(3739,3153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1347;s:6:\"height\";i:898;s:4:\"file\";s:14:\"2021/05/51.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"51-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:15:\"51-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:14:\"51-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:14:\"51-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"51-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"51-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"51-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"51-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"51-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"51-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"51-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"51-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"51-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"51.jpg\";s:5:\"width\";i:1347;s:6:\"height\";i:898;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560716579\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3740,3154,'_wp_attached_file','2021/05/52.jpg'),(3741,3154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1382;s:6:\"height\";i:922;s:4:\"file\";s:14:\"2021/05/52.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"52-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:15:\"52-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:14:\"52-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:14:\"52-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"52-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"52-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"52-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"52-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"52-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"52-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"52-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"52-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"52-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"52.jpg\";s:5:\"width\";i:1382;s:6:\"height\";i:922;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1560715658\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3742,2786,'_thumbnail_id','3154'),(3743,3155,'_wp_attached_file','2021/05/1-2.jpg'),(3744,3155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/1-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"1-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"1-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"1-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"1-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"1-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"1-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"1-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"1-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"1-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"1-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3745,3156,'_wp_attached_file','2021/05/2-2.jpg'),(3746,3156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/2-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"2-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"2-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"2-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"2-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"2-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"2-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"2-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"2-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"2-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"2-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3747,3157,'_wp_attached_file','2021/05/3-2.jpg'),(3748,3157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/3-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"3-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"3-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"3-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"3-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"3-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"3-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:7:\"3-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"3-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"3-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"3-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"3-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"3-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3749,3158,'_wp_attached_file','2021/05/4-2.jpg'),(3750,3158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/4-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"4-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"4-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"4-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"4-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"4-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"4-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"4-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"4-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"4-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"4-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"4-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"4-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601489147\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3751,3159,'_wp_attached_file','2021/05/5-2.jpg'),(3752,3159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/5-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"5-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"5-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"5-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"5-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"5-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"5-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"5-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"5-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"5-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"5-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3753,3160,'_wp_attached_file','2021/05/6-1.jpg'),(3754,3160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/6-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"6-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"6-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"6-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"6-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"6-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"6-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"6-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"6-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"6-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"6-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"6-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3755,3161,'_wp_attached_file','2021/05/7-1.jpg'),(3756,3161,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/7-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"7-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"7-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"7-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"7-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"7-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"7-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"7-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"7-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"7-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"7-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"7-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"7-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3757,3162,'_wp_attached_file','2021/05/8-2.jpg'),(3758,3162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/8-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"8-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"8-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"8-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"8-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"8-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"8-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"8-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"8-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"8-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"8-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"8-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3759,3163,'_wp_attached_file','2021/05/9-2.jpg'),(3760,3163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/9-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"9-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"9-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"9-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"9-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"9-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"9-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"9-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"9-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"9-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"9-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601489799\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3761,3164,'_wp_attached_file','2021/05/10-2.jpg'),(3762,3164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/10-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"10-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"10-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"10-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"10-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"10-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"10-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"10-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"10-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"10-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"10-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"10-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"10-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601490313\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3763,3165,'_wp_attached_file','2021/05/11-2.jpg'),(3764,3165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/11-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"11-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"11-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"11-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"11-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"11-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"11-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"11-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"11-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"11-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"11-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"11-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"11-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601490086\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3765,3166,'_wp_attached_file','2021/05/12-2.jpg'),(3766,3166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/12-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"12-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"12-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"12-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"12-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"12-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"12-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"12-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"12-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"12-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"12-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"12-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"12-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601487313\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3767,3167,'_wp_attached_file','2021/05/13-1.jpg'),(3768,3167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/13-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"13-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"13-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"13-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"13-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"13-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"13-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"13-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"13-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"13-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"13-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"13-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"13-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601493249\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3769,3168,'_wp_attached_file','2021/05/14-1.jpg'),(3770,3168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/14-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"14-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"14-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"14-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"14-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"14-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"14-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"14-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"14-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"14-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"14-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"14-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"14-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601489938\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3771,3169,'_wp_attached_file','2021/05/15-1.jpg'),(3772,3169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/15-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"15-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"15-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"15-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"15-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"15-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"15-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"15-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"15-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"15-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"15-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"15-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"15-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601486790\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3773,3170,'_wp_attached_file','2021/05/16-1.jpg'),(3774,3170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/16-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"16-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"16-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"16-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"16-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"16-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"16-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"16-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"16-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"16-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"16-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"16-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"16-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601487086\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3775,3171,'_wp_attached_file','2021/05/17-1.jpg'),(3776,3171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/17-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"17-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"17-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"17-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"17-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"17-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"17-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"17-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"17-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"17-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"17-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"17-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"17-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3777,3172,'_wp_attached_file','2021/05/18-2.jpg'),(3778,3172,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/18-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"18-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"18-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"18-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"18-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"18-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"18-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"18-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"18-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"18-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"18-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"18-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"18-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3779,3173,'_wp_attached_file','2021/05/19-2.jpg'),(3780,3173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/19-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"19-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"19-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"19-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"19-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"19-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"19-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"19-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"19-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"19-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"19-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"19-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"19-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601493620\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3781,3174,'_wp_attached_file','2021/05/20-1.jpg'),(3782,3174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/20-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"20-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"20-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"20-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"20-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"20-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"20-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"20-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"20-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"20-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"20-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"20-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"20-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601490502\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3783,3175,'_wp_attached_file','2021/05/21-1.jpg'),(3784,3175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/21-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"21-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"21-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"21-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"21-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"21-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"21-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"21-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"21-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"21-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"21-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"21-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"21-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601490657\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3785,3176,'_wp_attached_file','2021/05/22-2.jpg'),(3786,3176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/22-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"22-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"22-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"22-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"22-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"22-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"22-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"22-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"22-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"22-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"22-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"22-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"22-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601491154\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3787,3177,'_wp_attached_file','2021/05/23-2.jpg'),(3788,3177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/23-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"23-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"23-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"23-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"23-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"23-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"23-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"23-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"23-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"23-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"23-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"23-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"23-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601490984\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3789,3178,'_wp_attached_file','2021/05/24-2.jpg'),(3790,3178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/24-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"24-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"24-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"24-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"24-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"24-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"24-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"24-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"24-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"24-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"24-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"24-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"24-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601494581\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"2.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3791,3179,'_wp_attached_file','2021/05/25-2.jpg'),(3792,3179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/25-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"25-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"25-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"25-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"25-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"25-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"25-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"25-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"25-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"25-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"25-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"25-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"25-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;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:{}}}'),(3793,3180,'_wp_attached_file','2021/05/26-2.jpg'),(3794,3180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/26-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"26-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"26-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"26-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"26-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"26-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"26-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"26-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"26-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"26-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"26-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"26-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"26-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601396455\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3795,3181,'_wp_attached_file','2021/05/27-1.jpg'),(3796,3181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/27-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"27-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"27-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"27-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"27-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"27-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"27-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"27-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"27-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"27-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"27-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"27-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"27-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601396865\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3797,3182,'_wp_attached_file','2021/05/28-1.jpg'),(3798,3182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/28-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"28-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"28-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"28-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"28-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"28-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"28-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"28-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"28-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"28-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"28-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"28-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"28-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601397075\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3799,3183,'_wp_attached_file','2021/05/29-2.jpg'),(3800,3183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/29-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"29-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"29-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"29-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"29-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"29-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"29-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"29-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"29-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"29-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"29-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"29-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"29-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601397345\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3801,3184,'_wp_attached_file','2021/05/30-2.jpg'),(3802,3184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/30-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"30-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"30-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"30-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"30-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"30-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"30-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"30-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"30-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"30-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"30-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"30-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"30-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601491539\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3803,3185,'_wp_attached_file','2021/05/31-2.jpg'),(3804,3185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/31-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"31-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"31-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"31-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"31-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"31-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"31-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"31-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"31-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"31-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"31-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"31-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"31-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601491634\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3805,3186,'_wp_attached_file','2021/05/32-2.jpg'),(3806,3186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/32-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"32-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"32-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"32-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"32-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"32-2-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"32-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"32-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"32-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"32-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"32-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"32-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"32-2.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601493746\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3807,3187,'_wp_attached_file','2021/05/33-1.jpg'),(3808,3187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/33-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"33-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"33-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"33-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"33-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"33-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"33-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"33-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"33-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"33-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"33-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"33-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"33-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601494762\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3809,3188,'_wp_attached_file','2021/05/34.jpg'),(3810,3188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:14:\"2021/05/34.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"34-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"34-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"34-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"34-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"34-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"34-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"34-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"34.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:6:\"34.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"34.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:6:\"34.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:6:\"34.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601493892\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3811,3189,'_wp_attached_file','2021/05/35.jpg'),(3812,3189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:14:\"2021/05/35.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"35-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"35-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"35-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"35-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"35-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"35-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"35-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"35.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:6:\"35.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"35.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:6:\"35.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:6:\"35.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601494022\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3813,3190,'_wp_attached_file','2021/05/36-1.jpg'),(3814,3190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/36-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"36-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"36-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"36-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"36-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"36-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"36-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"36-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"36-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"36-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"36-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"36-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"36-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601494119\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3815,3191,'_wp_attached_file','2021/05/37-1.jpg'),(3816,3191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/37-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"37-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"37-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"37-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"37-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"37-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"37-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"37-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"37-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"37-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"37-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"37-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"37-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601494328\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3817,3192,'_wp_attached_file','2021/05/38.jpeg'),(3818,3192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/38.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"38-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"38-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"38-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"38-615x360.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"38-615x427.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"38-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"38-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"38.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"38.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"38.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"38.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"38.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601492698\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"33\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3819,3193,'_wp_attached_file','2021/05/38-1.jpg'),(3820,3193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2021/05/38-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"38-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"38-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"38-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"38-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"38-1-615x427.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"38-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"38-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"38-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:8:\"38-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"38-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:8:\"38-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:8:\"38-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601492816\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3821,3194,'_wp_attached_file','2021/05/39.jpeg'),(3822,3194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/39.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"39-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"39-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"39-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"39-615x360.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"39-615x427.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"39-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"39-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"39.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"39.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"39.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"39.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"39.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601492986\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:1:\"4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3823,3195,'_wp_attached_file','2021/05/40.jpeg'),(3824,3195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:15:\"2021/05/40.jpeg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"40-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"40-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"40-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"40-615x360.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"40-615x427.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"40-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"40-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"40.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:7:\"40.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"40.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"rentex-ulisting-thumbnail\";a:4:{s:4:\"file\";s:7:\"40.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:7:\"40.jpeg\";s:5:\"width\";i:640;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1601492548\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:1:\"5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3825,2784,'_thumbnail_id','3157'),(3826,2784,'stm_post_views','14'),(3827,2784,'stm_day_14','9'),(3828,2784,'stm_month_05','11'),(3966,2650,'_elementor_page_settings','a:11:{s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:15:\"container_width\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:4:\"1290\";}s:21:\"global_image_lightbox\";s:3:\"yes\";s:21:\"space_between_widgets\";a:2:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";}s:11:\"viewport_md\";s:0:\"\";s:11:\"viewport_lg\";s:0:\"\";s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#6EC1E4\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#54595F\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#61CE70\";}}s:13:\"custom_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:8:\"10264f1b\";s:5:\"title\";s:14:\"Saved Color #5\";s:5:\"color\";s:7:\"#4054B2\";}i:1;a:3:{s:3:\"_id\";s:8:\"697fb8d6\";s:5:\"title\";s:14:\"Saved Color #6\";s:5:\"color\";s:7:\"#23A455\";}i:2;a:3:{s:3:\"_id\";s:8:\"25ff33e9\";s:5:\"title\";s:14:\"Saved Color #7\";s:5:\"color\";s:4:\"#FFF\";}i:3;a:3:{s:3:\"_id\";s:7:\"31dde33\";s:5:\"title\";s:14:\"Saved Color #8\";s:5:\"color\";s:4:\"#000\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:16:\"Primary Headline\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:0:\"\";s:22:\"typography_font_weight\";s:0:\"\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:18:\"Secondary Headline\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:0:\"\";s:22:\"typography_font_weight\";s:0:\"\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:9:\"Body Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:0:\"\";s:22:\"typography_font_weight\";s:0:\"\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:11:\"Accent Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:0:\"\";s:22:\"typography_font_weight\";s:0:\"\";}}s:15:\"viewport_mobile\";s:0:\"\";s:15:\"viewport_tablet\";s:0:\"\";}'),(4009,2779,'stm_month_06','13'),(3853,2781,'stm_post_views','14'),(3854,2781,'stm_day_14','8'),(3855,2781,'stm_month_05','5'),(3870,3197,'_elementor_template_type','wp-page'),(3871,3197,'_elementor_version','2.9.9'),(3872,3197,'_elementor_pro_version','2.10.3'),(3873,3197,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases California\'s Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":\"2642\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\",\"listing_category_list\":\"vacation-rentals\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(3866,2779,'stm_day_16','1'),(3867,2779,'stm_day_17','2'),(3876,3198,'_wp_page_template','template-homepage.php'),(3877,3198,'_elementor_edit_mode','builder'),(3878,3198,'_elementor_template_type','wp-page'),(3879,3198,'_elementor_version','2.9.9'),(3880,3198,'_elementor_pro_version','2.10.3'),(3881,3198,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases California\'s Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d889b1d\",\"elType\":\"widget\",\"settings\":{\"listing_posts_type_list\":\"2642\",\"listing_posts_styles\":\"grid-style-2\",\"listing_posts_styles_layout\":\"layout-metro-2\",\"listing_posts_per_page\":\"5\",\"listing_posts_item_columns\":\"3\",\"ulisting_posts_carousel_speed\":\"5000\",\"listing_category_list\":\"vacation-rentals\"},\"elements\":[],\"widgetType\":\"rentex_listing_posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"100\",\"_id\":\"6c9b5a1\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"}}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1773a67\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Seattle, WA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677}},{\"testimonial_content\":\"We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"New York, NY\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"e472b0b\"},{\"testimonial_content\":\"Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!\",\"testimonial_name\":\"Samantha Thompson\",\"testimonial_job\":\"Las Vegas, NV\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"testimonial_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/81674-designer-diamond-gold-yellow-free-download-png-hq.png\",\"id\":2677},\"_id\":\"03e888b\"}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"column\":\"2\",\"column_tablet\":\"1\",\"enable_carousel\":\"yes\",\"testimonial_alignment_mobile\":\"center\",\"image_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#12A5DD\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#D8D8D8\",\"testimonial_alignment\":\"center\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4007,881,'stm_day_9','4'),(3964,2642,'stm_day_28','7'),(3965,2790,'stm_day_28','6'),(3960,2788,'stm_day_27','1'),(3961,881,'stm_day_28','29'),(3962,2643,'stm_day_28','6'),(3958,2790,'stm_day_26','6'),(3959,2790,'stm_day_27','2'),(3886,2790,'stm_day_17','1'),(3887,2784,'stm_day_18','1'),(3888,881,'stm_day_18','15'),(3889,652,'stm_day_18','2'),(3890,652,'stm_month_05','2'),(3891,650,'_edit_lock','1621310752:8'),(3944,2779,'stm_day_26','1'),(3943,881,'stm_day_26','19'),(3894,2642,'stm_day_18','12'),(3895,2790,'stm_day_18','25'),(3896,3201,'inline_featured_image','0'),(3897,3201,'_edit_last','8'),(3898,3201,'_wp_page_template','default'),(3899,3201,'payment_type','one_time'),(3900,3201,'type','feature'),(3901,3201,'price','1000'),(3902,3201,'feature_limit','2'),(3903,3201,'duration','30'),(3904,3201,'duration_type','days'),(3905,3201,'status','active'),(3906,3201,'_edit_lock','1621315549:8'),(3907,3201,'stm_post_views','4'),(3908,3201,'stm_day_18','4'),(3909,3201,'stm_month_05','4'),(3910,651,'_edit_lock','1621314998:8'),(3948,2781,'stm_day_26','1'),(3946,2642,'stm_day_26','5'),(3947,2643,'stm_day_26','6'),(4006,881,'stm_day_4','25'),(3920,2779,'stm_day_19','1'),(3921,2781,'stm_day_19','1'),(3980,3209,'_elementor_css','a:6:{s:4:\"time\";i:1622193561;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(3982,3210,'_wp_page_template','default'),(3983,3210,'_elementor_edit_mode','builder'),(3984,3210,'_elementor_template_type','wp-page'),(3985,3210,'_elementor_version','3.2.4'),(3986,3210,'_elementor_pro_version','2.10.3'),(3987,3210,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(4041,3216,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(4046,3218,'_wp_page_template','elementor_header_footer'),(4047,3218,'_elementor_edit_mode','builder'),(4048,3218,'_elementor_template_type','wp-page'),(4049,3218,'_elementor_version','2.9.9'),(4050,3218,'_elementor_pro_version','2.10.3'),(4051,3218,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5397,1119,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"layer_1\" x=\"0\" y=\"0\" viewBox=\"0 0 79.5 79.5\" xml:space=\"preserve\"><style>.st0{fill:#f5f5ef}.st1{fill:#fff}.st2{fill:#dbd8c1}.st3{fill:#231f20}</style><circle class=\"st0\" cx=\"65.5\" cy=\"36.54\" r=\"14\"/><circle class=\"st0\" cx=\"32.72\" cy=\"12\" r=\"12\"/><circle class=\"st0\" cx=\"20\" cy=\"59.5\" r=\"20\"/><path class=\"st1\" d=\"M58.75 72.75h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40c0 6.63-5.37 12-12 12z\"/><path class=\"st2\" d=\"M58.75 72.75h-39c0-23.75 19.25-43 43-43h8v31c0 6.63-5.37 12-12 12z\"/><path class=\"st3\" d=\"M58.75 73.5h-40C11.72 73.5 6 67.78 6 60.75v-40C6 13.72 11.72 8 18.75 8h40c7.03 0 12.75 5.72 12.75 12.75v40c0 7.03-5.72 12.75-12.75 12.75zm-40-64c-6.2 0-11.25 5.05-11.25 11.25v40C7.5 66.95 12.55 72 18.75 72h40C64.95 72 70 66.95 70 60.75v-40c0-6.2-5.05-11.25-11.25-11.25h-40z\"/><path transform=\"rotate(-44.996 49.538 51.538)\" class=\"st1\" d=\"M46.71 48.71h5.67v5.67h-5.67z\"/><path class=\"st3\" d=\"M50.51 57.76c-.19 0-.38-.07-.53-.22l-5.47-5.47a.754.754 0 0 1 0-1.06l4.5-4.5c.29-.29.77-.29 1.06 0l5.47 5.47c.29.29.29.77 0 1.06l-4.5 4.5c-.15.15-.34.22-.53.22zm-4.41-6.22l4.41 4.41 3.44-3.44-4.41-4.41-3.44 3.44z\"/><path transform=\"rotate(-45.001 55.121 57.125)\" class=\"st1\" d=\"M50.44 52.59h9.38v9.08h-9.38z\"/><path class=\"st2\" d=\"M59.31 59.36l-4.29 4.29-4.45-4.45 2.87-2.87c.78-.78 2.05-.78 2.83 0l3.04 3.03z\"/><path class=\"st3\" d=\"M55.02 64.4c-.19 0-.38-.07-.53-.22l-6.42-6.42a.75.75 0 0 1 0-1.06l6.63-6.63c.29-.29.77-.29 1.06 0l6.42 6.42a.75.75 0 0 1 0 1.06l-6.63 6.63c-.15.15-.34.22-.53.22zm-5.36-7.17l5.36 5.36 5.57-5.57-5.36-5.36-5.57 5.57z\"/><path class=\"st1\" d=\"M62.83 62.63l-2.21 2.21a3.126 3.126 0 0 1-4.42 0l-1.19-1.19 6.63-6.63 1.19 1.18a3.138 3.138 0 0 1 0 4.43z\"/><path class=\"st1\" d=\"M61.97 62.03l.73.73.13-.13a3.126 3.126 0 0 0 0-4.42l-1.19-1.18-6.63 6.63 1.19 1.19c.13.13.27.24.42.34l3.14-3.14c.61-.63 1.6-.63 2.21-.02z\"/><path class=\"st2\" d=\"M60.62 64.83l2.08-2.08-.73-.73c-.61-.61-1.6-.61-2.21 0l-3.14 3.14c1.22.87 2.91.77 4-.33z\"/><path class=\"st3\" d=\"M58.41 66.5c-.99 0-1.98-.38-2.74-1.13l-1.19-1.19a.754.754 0 0 1 0-1.06l6.63-6.63c.29-.29.77-.29 1.06 0l1.19 1.18a3.88 3.88 0 0 1 0 5.48l-2.21 2.21c-.75.76-1.74 1.14-2.74 1.14zm-2.33-2.85l.65.66c.93.92 2.43.92 3.36 0l2.21-2.21c.93-.93.93-2.43 0-3.36l-.65-.65-5.57 5.56zm6.75-1.02z\"/><path class=\"st1\" d=\"M19.7 21.7c7.93-7.93 20.79-7.93 28.73 0 7.93 7.93 7.93 20.79 0 28.73-7.93 7.93-20.79 7.93-28.73 0-7.93-7.94-7.93-20.8 0-28.73z\"/><path class=\"st2\" d=\"M48.43 21.7c-2.88-2.88-6.41-4.7-10.12-5.49-3.71.79-7.24 2.61-10.12 5.49-7.93 7.93-7.93 20.79 0 28.73 2.88 2.88 6.41 4.7 10.12 5.49 3.71-.79 7.24-2.61 10.12-5.49 7.93-7.94 7.93-20.8 0-28.73z\"/><circle class=\"st1\" cx=\"34.06\" cy=\"36.06\" r=\"14\"/><path class=\"st2\" d=\"M43.96 26.16a13.939 13.939 0 0 0-4.16-2.86c-4.86 2.19-8.25 7.07-8.25 12.75s3.39 10.56 8.26 12.76c1.5-.68 2.92-1.62 4.16-2.85 5.46-5.46 5.46-14.33-.01-19.8z\"/><path class=\"st3\" d=\"M34.06 50.81c-8.13 0-14.75-6.62-14.75-14.75s6.62-14.75 14.75-14.75 14.75 6.62 14.75 14.75-6.61 14.75-14.75 14.75zm0-28c-7.31 0-13.25 5.94-13.25 13.25s5.94 13.25 13.25 13.25 13.25-5.94 13.25-13.25c0-7.3-5.94-13.25-13.25-13.25z\"/><circle class=\"st1\" cx=\"55.75\" cy=\"17.75\" r=\"2\"/><path class=\"st3\" d=\"M55.75 20.5c-1.52 0-2.75-1.23-2.75-2.75S54.23 15 55.75 15s2.75 1.23 2.75 2.75-1.23 2.75-2.75 2.75zm0-4a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5z\"/><circle class=\"st1\" cx=\"64.75\" cy=\"35.75\" r=\"2\"/><path class=\"st3\" d=\"M64.75 38.5c-1.52 0-2.75-1.23-2.75-2.75S63.23 33 64.75 33s2.75 1.23 2.75 2.75-1.23 2.75-2.75 2.75zm0-4a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5z\"/><circle class=\"st1\" cx=\"61.75\" cy=\"45.75\" r=\"2\"/><path class=\"st3\" d=\"M61.75 48.5c-1.52 0-2.75-1.23-2.75-2.75S60.23 43 61.75 43s2.75 1.23 2.75 2.75-1.23 2.75-2.75 2.75zm0-4a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5zM34.06 57.13C22.45 57.13 13 47.68 13 36.06 13 24.45 22.45 15 34.06 15s21.06 9.45 21.06 21.06c.01 11.62-9.44 21.07-21.06 21.07zm0-40.63c-10.79 0-19.56 8.78-19.56 19.56s8.78 19.56 19.56 19.56 19.56-8.78 19.56-19.56S44.85 16.5 34.06 16.5z\"/><path class=\"st1\" d=\"M43.45 33.92l-3.84-3.84-7.35 7.33-4.08-4.08-3.84 3.84 7.92 7.91z\"/><path class=\"st3\" d=\"M32.26 45.83c-.19 0-.38-.07-.53-.22l-7.91-7.92a.754.754 0 0 1 0-1.06l3.84-3.84a.75.75 0 0 1 1.06 0l3.55 3.55 6.82-6.8c.29-.29.77-.29 1.06 0l3.84 3.84a.75.75 0 0 1 0 1.06l-11.2 11.17c-.15.15-.34.22-.53.22zm-6.86-8.66l6.85 6.86 10.13-10.1-2.78-2.78-6.82 6.8c-.29.29-.77.29-1.06 0l-3.55-3.55-2.77 2.77zM49.03 69.5c-.41 0-.75-.34-.75-.75v-4c0-.41.34-.75.75-.75s.75.34.75.75v4c0 .41-.34.75-.75.75z\"/><path class=\"st3\" d=\"M51.03 67.5h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4c.41 0 .75.34.75.75s-.34.75-.75.75z\"/><circle class=\"st3\" cx=\"43.02\" cy=\"66.75\" r=\".75\"/><circle class=\"st3\" cx=\"40.02\" cy=\"66.75\" r=\".75\"/><circle class=\"st3\" cx=\"36.02\" cy=\"66.75\" r=\".75\"/><circle class=\"st3\" cx=\"30.02\" cy=\"66.75\" r=\".75\"/><path class=\"st3\" d=\"M17.27 64.5c-.41 0-.75-.34-.75-.75v-4c0-.41.34-.75.75-.75s.75.34.75.75v4c0 .41-.33.75-.75.75z\"/><path class=\"st3\" d=\"M19.27 62.5h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4a.749.749 0 1 1 0 1.5z\"/><circle class=\"st3\" cx=\"23.27\" cy=\"61.75\" r=\".75\"/><circle class=\"st3\" cx=\"27.27\" cy=\"61.75\" r=\".75\"/><circle class=\"st3\" cx=\"32.27\" cy=\"61.75\" r=\".75\"/><circle class=\"st3\" cx=\"39.27\" cy=\"61.75\" r=\".75\"/></svg>'),(4052,3218,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(4053,3218,'_elementor_css','a:5:{s:4:\"time\";i:1623705719;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(4060,3223,'_wp_page_template','elementor_header_footer'),(4061,3223,'_elementor_edit_mode','builder'),(4062,3223,'_elementor_template_type','wp-page'),(4063,3223,'_elementor_version','2.9.9'),(4064,3223,'_elementor_pro_version','2.10.3'),(4065,3223,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6871,3703,'stm_day_15','1'),(6870,3741,'stm_day_15','1'),(4066,3223,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(4067,3223,'_elementor_css','a:5:{s:4:\"time\";i:1623706528;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6097,3893,'_wp_page_template','elementor_header_footer'),(6098,3893,'_elementor_edit_mode','builder'),(6099,3893,'_elementor_template_type','wp-page'),(6100,3893,'_elementor_version','2.9.9'),(6101,3893,'_elementor_pro_version','2.10.3');
INSERT INTO `wpew_postmeta` VALUES (6102,3893,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(4070,2790,'stm_day_15','5'),(4071,581,'stm_day_15','1'),(5353,3296,'stm_day_22','1'),(4073,3225,'inline_featured_image','0'),(4074,3225,'_edit_last','10'),(4075,3225,'_wp_page_template','default'),(4076,3225,'ulisting_publish_date','2021-06-15 05:27'),(4077,3225,'ulisting_first_publish','1'),(4078,3225,'ulisting_publish_notification','0'),(4079,3225,'_edit_lock','1626383054:10'),(4080,3225,'stm_post_views','4'),(4081,3225,'stm_day_15','3'),(4082,3225,'stm_month_06','1'),(4083,3226,'_wp_attached_file','2021/06/0001-scaled.jpg'),(4084,3226,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0001-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0001-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:17:\"0001-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:16:\"0001-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:16:\"0001-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:18:\"0001-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0001-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0001-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0001-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0001-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0001-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0001-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0001-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0001-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0001-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599129396\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0001.jpg\";}'),(4085,3227,'_wp_attached_file','2021/06/0002-scaled.jpg'),(4086,3227,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0002-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0002-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:17:\"0002-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:16:\"0002-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:16:\"0002-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:18:\"0002-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0002-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0002-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0002-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0002-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0002-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0002-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0002-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0002-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0002-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0002-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599129833\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0002.jpg\";}'),(4087,3228,'_wp_attached_file','2021/06/0003-scaled.jpg'),(4088,3228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0003-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0003-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:17:\"0003-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:16:\"0003-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:16:\"0003-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:18:\"0003-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0003-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0003-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0003-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0003-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0003-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0003-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0003-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0003-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0003-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0003-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0003-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599130137\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0003.jpg\";}'),(4089,3229,'_wp_attached_file','2021/06/0004-scaled.jpg'),(4090,3229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0004-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0004-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:17:\"0004-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:16:\"0004-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:16:\"0004-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:18:\"0004-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0004-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0004-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0004-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0004-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0004-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0004-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0004-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0004-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0004-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0004-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599130362\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0004.jpg\";}'),(4091,3230,'_wp_attached_file','2021/06/0005-scaled.jpg'),(4092,3230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0005-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0005-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:17:\"0005-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:16:\"0005-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:16:\"0005-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:18:\"0005-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0005-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0005-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0005-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0005-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0005-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0005-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0005-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0005-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0005-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0005-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599131038\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0005.jpg\";}'),(4093,3231,'_wp_attached_file','2021/06/0006-scaled.jpg'),(4094,3231,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0006-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0006-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:17:\"0006-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:16:\"0006-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:16:\"0006-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:18:\"0006-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0006-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0006-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0006-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0006-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0006-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0006-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0006-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0006-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0006-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0006-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599132305\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0006.jpg\";}'),(4095,3232,'_wp_attached_file','2021/06/0007-scaled.jpg'),(4096,3232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0007-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0007-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:17:\"0007-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:16:\"0007-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:16:\"0007-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:18:\"0007-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0007-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0007-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0007-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0007-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0007-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0007-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0007-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0007-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0007-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0007-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0007-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599134318\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0007.jpg\";}'),(4097,3233,'_wp_attached_file','2021/06/0008-scaled.jpg'),(4098,3233,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0008-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0008-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:17:\"0008-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:16:\"0008-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:16:\"0008-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:18:\"0008-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0008-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0008-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0008-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0008-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0008-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0008-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0008-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0008-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0008-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0008-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0008-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599134840\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0008.jpg\";}'),(4099,3234,'_wp_attached_file','2021/06/0009-scaled.jpg'),(4100,3234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0009-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0009-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:17:\"0009-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:16:\"0009-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:16:\"0009-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:18:\"0009-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0009-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0009-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0009-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0009-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0009-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0009-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0009-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0009-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0009-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0009-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0009-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599136311\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0009.jpg\";}'),(4101,3235,'_wp_attached_file','2021/06/0010-scaled.jpg'),(4102,3235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0010-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0010-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:17:\"0010-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:16:\"0010-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:16:\"0010-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:18:\"0010-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0010-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0010-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0010-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0010-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0010-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0010-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0010-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0010-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0010-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0010-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599142767\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0010.jpg\";}'),(4103,3236,'_wp_attached_file','2021/06/0011-scaled.jpg'),(4104,3236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0011-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0011-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:17:\"0011-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:16:\"0011-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:16:\"0011-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:18:\"0011-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0011-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0011-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0011-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0011-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0011-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0011-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0011-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0011-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0011-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0011-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0011-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599135167\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0011.jpg\";}'),(4105,3237,'_wp_attached_file','2021/06/0012-scaled.jpg'),(4106,3237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0012-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0012-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:17:\"0012-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:16:\"0012-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:16:\"0012-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:18:\"0012-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0012-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0012-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0012-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0012-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0012-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0012-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0012-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0012-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0012-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0012-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0012-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599135388\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0012.jpg\";}'),(4107,3238,'_wp_attached_file','2021/06/0013-scaled.jpg'),(4108,3238,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0013-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0013-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:17:\"0013-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:16:\"0013-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:16:\"0013-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:18:\"0013-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0013-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0013-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0013-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0013-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0013-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0013-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0013-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0013-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0013-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0013-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0013-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599135807\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0013.jpg\";}'),(4109,3239,'_wp_attached_file','2021/06/0014-scaled.jpg'),(4110,3239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0014-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0014-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:17:\"0014-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:16:\"0014-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:16:\"0014-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:18:\"0014-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0014-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0014-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0014-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0014-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0014-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0014-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0014-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0014-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0014-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0014-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0014-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599140335\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0014.jpg\";}'),(4111,3240,'_wp_attached_file','2021/06/0015-scaled.jpg'),(4112,3240,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0015-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0015-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:17:\"0015-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:16:\"0015-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:16:\"0015-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:18:\"0015-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0015-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0015-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0015-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0015-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0015-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0015-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0015-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0015-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0015-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0015-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0015-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599137048\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0015.jpg\";}'),(4113,3241,'_wp_attached_file','2021/06/0016-scaled.jpg'),(4114,3241,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0016-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0016-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:17:\"0016-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:16:\"0016-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:16:\"0016-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:18:\"0016-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0016-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0016-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0016-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0016-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0016-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0016-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0016-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0016-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0016-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0016-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0016-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599142545\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0016.jpg\";}'),(4115,3242,'_wp_attached_file','2021/06/0017-scaled.jpg'),(4116,3242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0017-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0017-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:17:\"0017-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:16:\"0017-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:16:\"0017-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:18:\"0017-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0017-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0017-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0017-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0017-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0017-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0017-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0017-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0017-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0017-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0017-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0017-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599137699\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0017.jpg\";}'),(4117,3243,'_wp_attached_file','2021/06/0018-scaled.jpg'),(4118,3243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0018-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0018-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:17:\"0018-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:16:\"0018-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:16:\"0018-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:18:\"0018-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0018-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0018-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0018-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0018-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0018-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0018-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0018-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0018-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0018-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0018-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0018-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599142092\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0018.jpg\";}'),(4119,3244,'_wp_attached_file','2021/06/0019-scaled.jpg'),(4120,3244,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0019-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0019-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:17:\"0019-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:16:\"0019-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:16:\"0019-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:18:\"0019-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0019-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0019-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0019-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0019-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0019-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0019-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0019-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0019-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0019-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0019-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0019-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599137325\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0019.jpg\";}'),(4121,3245,'_wp_attached_file','2021/06/0020-scaled.jpg'),(4122,3245,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0020-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0020-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:17:\"0020-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:16:\"0020-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:16:\"0020-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:18:\"0020-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0020-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0020-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0020-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0020-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0020-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0020-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0020-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0020-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0020-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0020-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0020-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599138405\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0020.jpg\";}'),(4123,3246,'_wp_attached_file','2021/06/0021-scaled.jpg'),(4124,3246,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0021-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0021-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:17:\"0021-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:16:\"0021-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:16:\"0021-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:18:\"0021-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0021-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0021-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0021-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0021-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0021-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0021-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0021-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0021-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0021-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0021-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0021-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599138875\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0021.jpg\";}'),(4125,3247,'_wp_attached_file','2021/06/0022-scaled.jpg'),(4126,3247,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0022-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0022-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:17:\"0022-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:16:\"0022-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:16:\"0022-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:18:\"0022-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0022-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0022-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0022-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0022-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0022-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0022-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0022-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0022-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0022-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0022-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0022-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599140053\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0022.jpg\";}'),(4127,3248,'_wp_attached_file','2021/06/0023-scaled.jpg'),(4128,3248,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0023-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0023-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:17:\"0023-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:16:\"0023-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:16:\"0023-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:18:\"0023-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0023-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0023-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0023-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0023-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0023-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0023-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0023-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0023-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0023-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0023-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0023-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599140754\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0023.jpg\";}'),(4129,3249,'_wp_attached_file','2021/06/0024-scaled.jpg'),(4130,3249,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0024-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0024-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:17:\"0024-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:16:\"0024-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:16:\"0024-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:18:\"0024-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0024-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0024-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0024-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0024-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0024-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0024-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0024-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0024-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0024-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0024-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0024-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599140915\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0024.jpg\";}'),(4131,3250,'_wp_attached_file','2021/06/0025-scaled.jpg'),(4132,3250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:23:\"2021/06/0025-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0025-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"0025-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0025-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:17:\"0025-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"0025-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0025-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0025-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0025-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0025-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0025-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0025-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0025-300x450.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0025-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0025-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0025-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0025-scaled.jpg\";s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599141293\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0025.jpg\";}'),(4133,3251,'_wp_attached_file','2021/06/0026-scaled.jpg'),(4134,3251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0026-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0026-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:17:\"0026-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:16:\"0026-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:16:\"0026-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:18:\"0026-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0026-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0026-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0026-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0026-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0026-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0026-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0026-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0026-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0026-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0026-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0026-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599144200\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0026.jpg\";}'),(4135,3252,'_wp_attached_file','2021/06/0027-scaled.jpg'),(4136,3252,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0027-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0027-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:17:\"0027-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:16:\"0027-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:16:\"0027-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:18:\"0027-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0027-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0027-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0027-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0027-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0027-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0027-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0027-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0027-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0027-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0027-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0027-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599145027\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0027.jpg\";}'),(4137,3253,'_wp_attached_file','2021/06/0028-scaled.jpg'),(4138,3253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0028-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0028-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:17:\"0028-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:16:\"0028-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:16:\"0028-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:18:\"0028-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0028-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0028-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0028-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0028-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0028-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0028-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0028-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0028-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0028-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0028-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0028-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599144595\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0028.jpg\";}'),(4139,3254,'_wp_attached_file','2021/06/0029-scaled.jpg'),(4140,3254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0029-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0029-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:17:\"0029-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:16:\"0029-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:16:\"0029-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:18:\"0029-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0029-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0029-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0029-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0029-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0029-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0029-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0029-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0029-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0029-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0029-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0029-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599145162\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0029.jpg\";}'),(4141,3255,'_wp_attached_file','2021/06/0030-scaled.jpg'),(4142,3255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0030-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0030-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:17:\"0030-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:16:\"0030-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:16:\"0030-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:18:\"0030-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0030-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0030-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0030-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0030-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0030-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0030-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0030-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0030-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0030-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0030-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0030-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599145291\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0030.jpg\";}'),(4143,3256,'_wp_attached_file','2021/06/0031-scaled.jpg'),(4144,3256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0031-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0031-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:17:\"0031-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:16:\"0031-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:16:\"0031-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:18:\"0031-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0031-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0031-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0031-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0031-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0031-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0031-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0031-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0031-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0031-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0031-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0031-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599145386\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0031.jpg\";}'),(4145,3257,'_wp_attached_file','2021/06/0032-scaled.jpg'),(4146,3257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1701;s:4:\"file\";s:23:\"2021/06/0032-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0032-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"0032-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0032-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:16:\"0032-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"0032-1536x1021.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1021;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0032-2048x1361.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1361;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0032-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0032-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0032-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0032-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0032-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0032-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0032-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0032-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0032-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0032-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1701;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599145499\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0032.jpg\";}'),(4147,3258,'_wp_attached_file','2021/06/0033-scaled.jpg'),(4148,3258,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0033-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0033-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:17:\"0033-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:16:\"0033-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:16:\"0033-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:18:\"0033-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0033-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0033-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0033-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0033-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0033-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0033-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0033-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0033-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0033-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0033-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0033-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599143598\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0033.jpg\";}'),(4149,3259,'_wp_attached_file','2021/06/0034-scaled.jpg'),(4150,3259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0034-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0034-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:17:\"0034-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:16:\"0034-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:16:\"0034-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:18:\"0034-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0034-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0034-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0034-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0034-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0034-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0034-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0034-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0034-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0034-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0034-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0034-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599143847\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0034.jpg\";}'),(4151,3260,'_wp_attached_file','2021/06/0035-scaled.jpg'),(4152,3260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0035-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0035-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:17:\"0035-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:16:\"0035-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:16:\"0035-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:18:\"0035-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0035-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0035-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0035-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0035-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0035-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0035-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0035-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0035-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0035-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0035-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0035-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599143336\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0035.jpg\";}'),(4153,3261,'_wp_attached_file','2021/06/0036-scaled.jpg'),(4154,3261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0036-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0036-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:17:\"0036-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:16:\"0036-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:16:\"0036-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:18:\"0036-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0036-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0036-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0036-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0036-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0036-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0036-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0036-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0036-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0036-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0036-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0036-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599143147\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0036.jpg\";}'),(4155,3262,'_wp_attached_file','2021/06/0037-scaled.jpg'),(4156,3262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/0037-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0037-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:17:\"0037-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:16:\"0037-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:16:\"0037-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:18:\"0037-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"0037-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0037-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0037-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0037-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0037-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0037-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0037-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0037-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0037-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0037-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:15:\"0037-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599143413\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"0037.jpg\";}'),(4157,3225,'_thumbnail_id','3246'),(4158,3225,'_wp_old_slug','8469-franklin'),(4159,3263,'inline_featured_image','0'),(4160,3263,'_edit_last','10'),(4161,3263,'_wp_page_template','default'),(4162,3263,'ulisting_publish_date','2021-06-15 06:00'),(4163,3263,'ulisting_first_publish','1'),(4164,3263,'ulisting_publish_notification','0'),(4165,3263,'_edit_lock','1626437159:10'),(4166,3264,'_wp_attached_file','2021/06/1.jpg'),(4167,3264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:413;s:4:\"file\";s:13:\"2021/06/1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-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:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"1-550x360.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"1.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:5:\"1.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:413;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:{}}}'),(4168,3265,'_wp_attached_file','2021/06/2.jpg'),(4169,3265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:740;s:4:\"file\";s:13:\"2021/06/2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-300x217.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x555.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:555;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"2-623x450.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"2.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:740;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:{}}}'),(4170,3266,'_wp_attached_file','2021/06/3.jpg'),(4171,3266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:13:\"2021/06/3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"3.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4172,3267,'_wp_attached_file','2021/06/4.jpg'),(4173,3267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:13:\"2021/06/4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"4-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4174,3268,'_wp_attached_file','2021/06/5.jpg'),(4175,3268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:657;s:4:\"file\";s:13:\"2021/06/5.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"5-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"5-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:13:\"5-768x493.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"5-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"5-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"5-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"5-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"5-701x450.jpg\";s:5:\"width\";i:701;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"5-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"5.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:657;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:{}}}'),(4176,3269,'_wp_attached_file','2021/06/6.jpg'),(4177,3269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:13:\"2021/06/6.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"6-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:13:\"6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"6-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"6-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"6-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"6-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"6-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"6-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"6-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"6.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4178,3270,'_wp_attached_file','2021/06/7.jpg'),(4179,3270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:768;s:4:\"file\";s:13:\"2021/06/7.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"7-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:13:\"7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:13:\"7-512x565.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"7-512x360.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"7-512x450.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"7-512x450.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"7-300x450.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"7-512x600.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"7-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"7.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:768;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:{}}}'),(4180,3271,'_wp_attached_file','2021/06/8.jpg'),(4181,3271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:13:\"2021/06/8.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"8-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:13:\"8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"8-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"8-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"8-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"8-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"8-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"8-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"8-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"8-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"8.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4182,3272,'_wp_attached_file','2021/06/9.jpg'),(4183,3272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:13:\"2021/06/9.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"9-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:13:\"9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"9-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:11:\"9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:13:\"9-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:13:\"9-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:13:\"9-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:13:\"9-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:13:\"9-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:13:\"9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:13:\"9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:5:\"9.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4184,3273,'_wp_attached_file','2021/06/10.jpg'),(4185,3273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/10.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"10-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:14:\"10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"10-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"10-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"10-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"10-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"10-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"10-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"10.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4186,3274,'_wp_attached_file','2021/06/11.jpg'),(4187,3274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/11.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"11-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:14:\"11-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"11-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"11-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"11-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"11-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"11-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"11-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"11-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"11-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"11.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4188,3275,'_wp_attached_file','2021/06/12.jpg'),(4189,3275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:768;s:4:\"file\";s:14:\"2021/06/12.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"12-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:14:\"12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"12-512x565.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"12-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"12-512x360.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"12-512x450.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"12-512x450.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"12-300x450.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"12-512x600.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"12-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"12.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:768;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:{}}}'),(4190,3276,'_wp_attached_file','2021/06/13.jpg'),(4191,3276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/13.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"13-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:14:\"13-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"13-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"13-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"13-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"13-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"13-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"13-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"13-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"13-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"13.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4192,3277,'_wp_attached_file','2021/06/14.jpg'),(4193,3277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/14.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"14-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:14:\"14-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"14-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"14-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"14-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"14-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"14-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"14-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"14-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"14-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"14.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4194,3278,'_wp_attached_file','2021/06/15.jpg'),(4195,3278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/15.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"15-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:14:\"15-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"15-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"15-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"15-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"15-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"15-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"15-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"15-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"15-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"15.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4196,3279,'_wp_attached_file','2021/06/16.jpg'),(4197,3279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/16.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"16-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:14:\"16-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"16-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"16-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"16-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"16-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"16-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"16-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"16-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"16-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"16.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4198,3280,'_wp_attached_file','2021/06/17.jpg'),(4199,3280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/17.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"17-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:14:\"17-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"17-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"17-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"17-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"17-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"17-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"17-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"17-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"17-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"17.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4200,3281,'_wp_attached_file','2021/06/18.jpg'),(4201,3281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/18.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"18-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:14:\"18-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"18-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"18-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"18-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"18-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"18-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"18-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"18-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"18-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"18.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4202,3282,'_wp_attached_file','2021/06/19.jpg'),(4203,3282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/19.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"19-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"19-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:14:\"19-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"19-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"19-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"19-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"19-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"19-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"19-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"19-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"19-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"19.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4204,3283,'_wp_attached_file','2021/06/20.jpg'),(4205,3283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/20.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"20-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"20-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:14:\"20-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"20-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"20-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"20-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"20-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"20-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"20-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"20-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"20-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"20-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"20.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4206,3284,'_wp_attached_file','2021/06/21.jpg'),(4207,3284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/21.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"21-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"21-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:14:\"21-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"21-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"21-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"21-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"21-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"21-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"21-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"21-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"21-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"21-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"21.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4208,3285,'_wp_attached_file','2021/06/22.jpg'),(4209,3285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/22.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"22-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"22-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:14:\"22-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"22-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"22-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"22-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"22-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"22-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"22-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"22-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"22-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"22-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"22.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4210,3286,'_wp_attached_file','2021/06/23.jpg'),(4211,3286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/23.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"23-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"23-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:14:\"23-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"23-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"23-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"23-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"23-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"23-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"23-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"23-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"23-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"23-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"23.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4212,3287,'_wp_attached_file','2021/06/24.jpg'),(4213,3287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/24.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"24-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"24-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:14:\"24-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"24-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"24-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"24-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"24-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"24-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"24-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"24-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"24-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"24-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"24.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4214,3288,'_wp_attached_file','2021/06/25.jpg'),(4215,3288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/25.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"25-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"25-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:14:\"25-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"25-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"25-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"25-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"25-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"25-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"25-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"25-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"25-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"25-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"25.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4216,3289,'_wp_attached_file','2021/06/26.jpg'),(4217,3289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/26.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"26-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"26-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:14:\"26-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"26-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"26-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"26-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"26-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"26-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"26-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"26-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"26-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"26-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"26.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4218,3290,'_wp_attached_file','2021/06/27.jpg'),(4219,3290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/27.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"27-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"27-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:14:\"27-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"27-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"27-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"27-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"27-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"27-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"27-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"27-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"27-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"27-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"27.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4220,3291,'_wp_attached_file','2021/06/28.jpg'),(4221,3291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/28.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"28-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"28-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:14:\"28-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"28-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"28-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"28-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"28-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"28-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"28-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"28-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"28-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"28-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"28.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4222,3292,'_wp_attached_file','2021/06/29.jpg'),(4223,3292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/29.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"29-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"29-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:14:\"29-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"29-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"29-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"29-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"29-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"29-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"29-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"29-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"29-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"29-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"29.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4224,3293,'_wp_attached_file','2021/06/30.jpg'),(4225,3293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/30.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"30-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"30-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:14:\"30-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"30-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"30-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"30-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"30-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"30-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"30-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"30-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"30-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"30-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"30.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4226,3294,'_wp_attached_file','2021/06/31.jpg'),(4227,3294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/31.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"31-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"31-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:14:\"31-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"31-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"31-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"31-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"31-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"31-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"31-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"31-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"31-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"31-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"31.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4228,3295,'_wp_attached_file','2021/06/32.jpg'),(4229,3295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:14:\"2021/06/32.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"32-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"32-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:14:\"32-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"32-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"32-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"32-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"32-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"32-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"32-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"32-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"32-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"32-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"32.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;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:{}}}'),(4230,3263,'_thumbnail_id','3265'),(4231,3263,'stm_post_views','9'),(4232,3263,'stm_day_15','4'),(4233,3263,'stm_month_06','3'),(4234,3296,'inline_featured_image','0'),(4235,3296,'_edit_last','8'),(4236,3296,'_wp_page_template','default'),(4237,3296,'ulisting_publish_date','2021-06-15 06:36'),(4238,3296,'ulisting_first_publish','1'),(4239,3296,'ulisting_publish_notification','0'),(4240,3296,'_edit_lock','1624437197:8'),(4241,3297,'inline_featured_image','0'),(4242,3297,'_edit_last','8'),(4243,3297,'_wp_page_template','default'),(4244,3297,'ulisting_publish_date','2021-06-15 06:36'),(4245,3297,'ulisting_first_publish','1'),(4246,3297,'ulisting_publish_notification','0'),(4247,3297,'_edit_lock','1624437121:8'),(4248,3298,'_wp_attached_file','2021/06/0001-1-scaled.jpg'),(4249,3298,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0001-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0001-1-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:19:\"0001-1-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:18:\"0001-1-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:18:\"0001-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0001-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0001-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0001-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0001-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0001-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0001-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0001-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0001-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0001-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0001-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0001-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0001-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583434377\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0001-1.jpg\";}'),(4250,3299,'_wp_attached_file','2021/06/0002-1-scaled.jpg'),(4251,3299,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0002-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0002-1-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:19:\"0002-1-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:18:\"0002-1-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:18:\"0002-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0002-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0002-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0002-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0002-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0002-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0002-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0002-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0002-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0002-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0002-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0002-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0002-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583434696\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0002-1.jpg\";}'),(4252,3300,'_wp_attached_file','2021/06/0003-1-scaled.jpg'),(4253,3300,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0003-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0003-1-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:19:\"0003-1-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:18:\"0003-1-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:18:\"0003-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0003-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0003-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0003-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0003-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0003-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0003-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0003-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0003-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0003-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0003-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0003-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0003-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583435246\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0003-1.jpg\";}'),(4254,3301,'_wp_attached_file','2021/06/0004-1-scaled.jpg'),(4255,3301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0004-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0004-1-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:19:\"0004-1-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:18:\"0004-1-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:18:\"0004-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0004-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0004-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0004-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0004-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0004-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0004-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0004-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0004-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0004-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0004-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0004-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0004-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583430516\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0004-1.jpg\";}'),(4256,3302,'_wp_attached_file','2021/06/0005-1-scaled.jpg'),(4257,3302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0005-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0005-1-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:19:\"0005-1-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:18:\"0005-1-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:18:\"0005-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0005-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0005-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0005-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0005-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0005-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0005-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0005-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0005-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0005-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0005-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0005-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0005-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583431398\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0005-1.jpg\";}'),(4258,3303,'_wp_attached_file','2021/06/0006-1-scaled.jpg'),(4259,3303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0006-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0006-1-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:19:\"0006-1-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:18:\"0006-1-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:18:\"0006-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0006-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0006-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0006-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0006-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0006-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0006-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0006-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0006-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0006-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0006-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0006-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0006-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583430648\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"25\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0006-1.jpg\";}'),(4260,3304,'_wp_attached_file','2021/06/0007-1-scaled.jpg'),(4261,3304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0007-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0007-1-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:19:\"0007-1-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:18:\"0007-1-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:18:\"0007-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0007-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0007-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0007-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0007-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0007-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0007-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0007-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0007-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0007-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0007-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0007-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0007-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583430206\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0007-1.jpg\";}'),(4262,3305,'_wp_attached_file','2021/06/0008-1-scaled.jpg'),(4263,3305,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0008-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0008-1-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:19:\"0008-1-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:18:\"0008-1-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:18:\"0008-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0008-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0008-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0008-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0008-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0008-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0008-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0008-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0008-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0008-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0008-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0008-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0008-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583433308\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0008-1.jpg\";}'),(4264,3306,'_wp_attached_file','2021/06/0009-1-scaled.jpg'),(4265,3306,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0009-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0009-1-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:19:\"0009-1-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:18:\"0009-1-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:18:\"0009-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0009-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0009-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0009-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0009-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0009-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0009-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0009-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0009-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0009-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0009-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0009-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0009-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583432905\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0009-1.jpg\";}'),(4266,3307,'_wp_attached_file','2021/06/0010-1-scaled.jpg'),(4267,3307,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0010-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0010-1-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:19:\"0010-1-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:18:\"0010-1-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:18:\"0010-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0010-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0010-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0010-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0010-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0010-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0010-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0010-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0010-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0010-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0010-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0010-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0010-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583433442\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0010-1.jpg\";}'),(4268,3308,'_wp_attached_file','2021/06/0011-1-scaled.jpg'),(4269,3308,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0011-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0011-1-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:19:\"0011-1-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:18:\"0011-1-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:18:\"0011-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0011-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0011-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0011-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0011-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0011-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0011-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0011-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0011-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0011-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0011-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0011-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0011-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583431708\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0011-1.jpg\";}'),(4270,3309,'_wp_attached_file','2021/06/0012-1-scaled.jpg'),(4271,3309,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0012-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0012-1-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:19:\"0012-1-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:18:\"0012-1-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:18:\"0012-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0012-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0012-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0012-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0012-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0012-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0012-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0012-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0012-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0012-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0012-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0012-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0012-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583431974\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0012-1.jpg\";}'),(4272,3310,'_wp_attached_file','2021/06/0013-1-scaled.jpg'),(4273,3310,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0013-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0013-1-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:19:\"0013-1-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:18:\"0013-1-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:18:\"0013-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0013-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0013-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0013-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0013-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0013-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0013-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0013-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0013-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0013-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0013-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0013-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0013-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583432220\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0013-1.jpg\";}'),(4274,3311,'_wp_attached_file','2021/06/0014-1-scaled.jpg'),(4275,3311,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0014-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0014-1-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:19:\"0014-1-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:18:\"0014-1-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:18:\"0014-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0014-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0014-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0014-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0014-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0014-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0014-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0014-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0014-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0014-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0014-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0014-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0014-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583432412\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0014-1.jpg\";}'),(4276,3312,'_wp_attached_file','2021/06/0015-1-scaled.jpg'),(4277,3312,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0015-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0015-1-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:19:\"0015-1-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:18:\"0015-1-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:18:\"0015-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0015-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0015-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0015-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0015-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0015-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0015-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0015-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0015-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0015-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0015-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0015-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0015-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583432653\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0015-1.jpg\";}'),(4278,3313,'_wp_attached_file','2021/06/0016-1-scaled.jpg'),(4279,3313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0016-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0016-1-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:19:\"0016-1-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:18:\"0016-1-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:18:\"0016-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0016-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0016-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0016-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0016-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0016-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0016-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0016-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0016-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0016-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0016-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0016-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0016-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583433782\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.8\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0016-1.jpg\";}'),(4280,3314,'_wp_attached_file','2021/06/0017-1-scaled.jpg'),(4281,3314,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0017-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0017-1-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:19:\"0017-1-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:18:\"0017-1-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:18:\"0017-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0017-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0017-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0017-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0017-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0017-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0017-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0017-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0017-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0017-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0017-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0017-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0017-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583429788\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0017-1.jpg\";}'),(4282,3315,'_wp_attached_file','2021/06/0018-1-scaled.jpg'),(4283,3315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0018-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0018-1-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:19:\"0018-1-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:18:\"0018-1-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:18:\"0018-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0018-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0018-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0018-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0018-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0018-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0018-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0018-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0018-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0018-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0018-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0018-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0018-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583427306\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0018-1.jpg\";}'),(4284,3316,'_wp_attached_file','2021/06/0019-1-scaled.jpg'),(4285,3316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0019-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0019-1-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:19:\"0019-1-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:18:\"0019-1-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:18:\"0019-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0019-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0019-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0019-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0019-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0019-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0019-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0019-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0019-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0019-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0019-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0019-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0019-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583426451\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0019-1.jpg\";}'),(4286,3317,'_wp_attached_file','2021/06/0020-1-scaled.jpg'),(4287,3317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0020-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0020-1-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:19:\"0020-1-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:18:\"0020-1-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:18:\"0020-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0020-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0020-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0020-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0020-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0020-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0020-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0020-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0020-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0020-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0020-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0020-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0020-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583426903\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0020-1.jpg\";}'),(4288,3318,'_wp_attached_file','2021/06/0021-1-scaled.jpg'),(4289,3318,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0021-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0021-1-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:19:\"0021-1-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:18:\"0021-1-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:18:\"0021-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0021-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0021-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0021-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0021-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0021-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0021-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0021-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0021-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0021-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0021-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0021-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0021-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583427628\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0021-1.jpg\";}'),(4290,3319,'_wp_attached_file','2021/06/0022-1-scaled.jpg'),(4291,3319,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0022-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0022-1-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:19:\"0022-1-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:18:\"0022-1-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:18:\"0022-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0022-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0022-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0022-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0022-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0022-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0022-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0022-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0022-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0022-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0022-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0022-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0022-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583428199\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0022-1.jpg\";}'),(4292,3320,'_wp_attached_file','2021/06/0023-1-scaled.jpg'),(4293,3320,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0023-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0023-1-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:19:\"0023-1-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:18:\"0023-1-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:18:\"0023-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0023-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0023-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0023-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0023-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0023-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0023-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0023-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0023-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0023-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0023-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0023-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0023-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583428724\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0023-1.jpg\";}'),(4294,3321,'_wp_attached_file','2021/06/0024-1-scaled.jpg'),(4295,3321,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0024-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0024-1-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:19:\"0024-1-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:18:\"0024-1-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:18:\"0024-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0024-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0024-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0024-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0024-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0024-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0024-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0024-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0024-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0024-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0024-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0024-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0024-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583429170\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0024-1.jpg\";}'),(4296,3322,'_wp_attached_file','2021/06/0025-1-scaled.jpg'),(4297,3322,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1719;s:4:\"file\";s:25:\"2021/06/0025-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0025-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"0025-1-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"0025-1-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:18:\"0025-1-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0025-1-1536x1031.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1031;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0025-1-2048x1375.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0025-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0025-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0025-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0025-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0025-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0025-1-670x450.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0025-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0025-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0025-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0025-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1719;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583429299\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0025-1.jpg\";}'),(4298,3323,'_wp_attached_file','2021/06/0026-1-scaled.jpg'),(4299,3323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0026-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0026-1-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:19:\"0026-1-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:18:\"0026-1-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:18:\"0026-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0026-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0026-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0026-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0026-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0026-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0026-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0026-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0026-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0026-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0026-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0026-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0026-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583429656\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0026-1.jpg\";}'),(4300,3324,'_wp_attached_file','2021/06/0027-1-scaled.jpg'),(4301,3324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0027-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0027-1-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:19:\"0027-1-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:18:\"0027-1-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:18:\"0027-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0027-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0027-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0027-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0027-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0027-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0027-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0027-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0027-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0027-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0027-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0027-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0027-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583423767\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0027-1.jpg\";}'),(4302,3325,'_wp_attached_file','2021/06/0028-1-scaled.jpg'),(4303,3325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0028-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0028-1-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:19:\"0028-1-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:18:\"0028-1-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:18:\"0028-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0028-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0028-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0028-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0028-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0028-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0028-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0028-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0028-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0028-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0028-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0028-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0028-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583424180\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0028-1.jpg\";}'),(4304,3326,'_wp_attached_file','2021/06/0029-1-scaled.jpg'),(4305,3326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0029-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0029-1-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:19:\"0029-1-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:18:\"0029-1-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:18:\"0029-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0029-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0029-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0029-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0029-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0029-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0029-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0029-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0029-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0029-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0029-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0029-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0029-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583424733\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0029-1.jpg\";}'),(4306,3327,'_wp_attached_file','2021/06/0030-1-scaled.jpg'),(4307,3327,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0030-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0030-1-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:19:\"0030-1-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:18:\"0030-1-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:18:\"0030-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0030-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0030-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0030-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0030-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0030-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0030-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0030-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0030-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0030-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0030-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0030-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0030-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583425287\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0030-1.jpg\";}'),(4308,3328,'_wp_attached_file','2021/06/0031-1-scaled.jpg'),(4309,3328,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0031-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0031-1-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:19:\"0031-1-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:18:\"0031-1-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:18:\"0031-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0031-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0031-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0031-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0031-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0031-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0031-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0031-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0031-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0031-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0031-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0031-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0031-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583426202\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0031-1.jpg\";}'),(4310,3329,'_wp_attached_file','2021/06/0032-1-scaled.jpg'),(4311,3329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0032-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0032-1-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:19:\"0032-1-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:18:\"0032-1-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:18:\"0032-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0032-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0032-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0032-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0032-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0032-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0032-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0032-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0032-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0032-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0032-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0032-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0032-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583425724\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0032-1.jpg\";}'),(4312,3330,'_wp_attached_file','2021/06/0033-1-scaled.jpg'),(4313,3330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0033-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0033-1-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:19:\"0033-1-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:18:\"0033-1-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:18:\"0033-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0033-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0033-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0033-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0033-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0033-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0033-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0033-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0033-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0033-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0033-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0033-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0033-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583425966\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0033-1.jpg\";}'),(4314,3331,'_wp_attached_file','2021/06/0034-1-scaled.jpg'),(4315,3331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0034-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0034-1-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:19:\"0034-1-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:18:\"0034-1-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:18:\"0034-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0034-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0034-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0034-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0034-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0034-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0034-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0034-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0034-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0034-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0034-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0034-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0034-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583423508\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0034-1.jpg\";}'),(4316,3332,'_wp_attached_file','2021/06/0035-1-scaled.jpg'),(4317,3332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0035-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0035-1-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:19:\"0035-1-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:18:\"0035-1-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:18:\"0035-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0035-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0035-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0035-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0035-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0035-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0035-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0035-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0035-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0035-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0035-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0035-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:17:\"0035-1-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583422853\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0035-1.jpg\";}'),(4318,3297,'_thumbnail_id','3299'),(5357,3296,'stm_day_23','1'),(4324,3334,'inline_featured_image','0'),(4325,3334,'_edit_last','8'),(4326,3334,'_wp_page_template','default'),(4321,3297,'stm_post_views','6'),(4322,3297,'stm_day_15','5'),(4323,3297,'stm_month_06','6'),(4327,3334,'ulisting_publish_date','2021-06-15 09:21'),(4328,3334,'ulisting_first_publish','1'),(4329,3334,'ulisting_publish_notification','0'),(4330,3334,'_edit_lock','1624436791:8'),(4331,3335,'inline_featured_image','0'),(4332,3335,'_edit_last','8'),(4333,3335,'_wp_page_template','default'),(4334,3335,'ulisting_publish_date','2021-06-15 09:22'),(4335,3335,'ulisting_first_publish','1'),(4336,3335,'ulisting_publish_notification','0'),(4337,3335,'_edit_lock','1624436324:8'),(4338,3336,'inline_featured_image','0'),(4339,3336,'_edit_last','8'),(4340,3336,'_wp_page_template','default'),(4341,3336,'ulisting_publish_date','2021-06-15 09:22'),(4342,3336,'ulisting_first_publish','1'),(4343,3336,'ulisting_publish_notification','0'),(4344,3336,'_edit_lock','1624436291:8'),(4345,3337,'inline_featured_image','0'),(4346,3337,'_edit_last','8'),(4347,3337,'_wp_page_template','default'),(4348,3337,'ulisting_publish_date','2021-06-15 09:23'),(4349,3337,'ulisting_first_publish','1'),(4350,3337,'ulisting_publish_notification','0'),(4351,3337,'_edit_lock','1624436373:8'),(4352,3338,'inline_featured_image','0'),(4353,3338,'_edit_last','8'),(4354,3338,'_wp_page_template','default'),(4355,3338,'ulisting_publish_date','2021-06-15 09:23'),(4356,3338,'ulisting_first_publish','1'),(4357,3338,'ulisting_publish_notification','0'),(4358,3338,'_edit_lock','1624436078:8'),(4359,3339,'inline_featured_image','0'),(4360,3339,'_edit_last','8'),(4361,3339,'_wp_page_template','default'),(4362,3339,'ulisting_publish_date','2021-06-15 09:24'),(4363,3339,'ulisting_first_publish','1'),(4364,3339,'ulisting_publish_notification','0'),(4365,3339,'_edit_lock','1624435792:8'),(4366,3340,'inline_featured_image','0'),(4367,3340,'_edit_last','8'),(4368,3340,'_wp_page_template','default'),(4369,3340,'ulisting_publish_date','2021-06-15 09:24'),(4370,3340,'ulisting_first_publish','1'),(4371,3340,'ulisting_publish_notification','0'),(4372,3340,'_edit_lock','1624435633:8'),(4373,3341,'inline_featured_image','0'),(4374,3341,'_edit_last','8'),(4375,3341,'_wp_page_template','default'),(4376,3341,'ulisting_publish_date','2021-06-15 09:24'),(4377,3341,'ulisting_first_publish','1'),(4378,3341,'ulisting_publish_notification','0'),(4379,3341,'_edit_lock','1624435544:8'),(4380,3342,'inline_featured_image','0'),(4381,3342,'_edit_last','8'),(4382,3342,'_wp_page_template','default'),(4383,3342,'ulisting_publish_date','2021-06-15 09:25'),(4384,3342,'ulisting_first_publish','1'),(4385,3342,'ulisting_publish_notification','0'),(4386,3342,'_edit_lock','1624435362:8'),(4387,3343,'inline_featured_image','0'),(4388,3343,'_edit_last','8'),(4389,3343,'_wp_page_template','default'),(4390,3343,'ulisting_publish_date','2021-06-15 09:25'),(4391,3343,'ulisting_first_publish','1'),(4392,3343,'ulisting_publish_notification','0'),(4393,3343,'_edit_lock','1624435208:8'),(4394,3343,'stm_post_views','27'),(4395,3343,'stm_day_15','6'),(4396,3343,'stm_month_06','27'),(4397,3344,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-scaled.jpg'),(4398,3344,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548441250\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0001.jpg\";}'),(4399,3345,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0002-scaled.jpg'),(4400,3345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0002-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548441594\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:3:\"1.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0002.jpg\";}'),(4401,3346,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0003-scaled.jpg'),(4402,3346,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1792;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0003-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-1024x717.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:717;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-768x538.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-1536x1075.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1075;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-2048x1434.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-643x450.jpg\";s:5:\"width\";i:643;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548439999\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0003.jpg\";}'),(4403,3347,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0004-scaled.jpg'),(4404,3347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0004-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548431754\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0004.jpg\";}'),(4405,3348,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0005-scaled.jpg'),(4406,3348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0005-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548432084\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0005.jpg\";}'),(4407,3349,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0006-scaled.jpg'),(4408,3349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0006-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548432701\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0006.jpg\";}'),(4409,3350,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0007-scaled.jpg'),(4410,3350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0007-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548432515\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0007.jpg\";}'),(4411,3351,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0008-scaled.jpg'),(4412,3351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0008-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548433031\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0008.jpg\";}'),(4413,3352,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0009-scaled.jpg'),(4414,3352,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0009-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548433242\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0009.jpg\";}'),(4415,3353,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0010-scaled.jpg'),(4416,3353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0010-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548433682\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0010.jpg\";}'),(4417,3354,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0011-scaled.jpg'),(4418,3354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0011-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548434938\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0011.jpg\";}'),(4419,3355,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0012-scaled.jpg'),(4420,3355,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0012-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548435917\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0012.jpg\";}'),(4421,3356,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0013-scaled.jpg'),(4422,3356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0013-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548435187\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0013.jpg\";}'),(4423,3357,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0014-scaled.jpg'),(4424,3357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0014-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548436389\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0014.jpg\";}'),(4425,3358,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0015-scaled.jpg'),(4426,3358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0015-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548436748\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0015.jpg\";}'),(4427,3359,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0016-scaled.jpg'),(4428,3359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0016-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548438444\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0016.jpg\";}'),(4429,3360,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0017-scaled.jpg'),(4430,3360,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0017-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548438887\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0017.jpg\";}'),(4431,3361,'_wp_attached_file','2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0018-scaled.jpg'),(4432,3361,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0018-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-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:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-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:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-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:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:57:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:53:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:55:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:54:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018-scaled.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1548436957\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"6111_Lindenhurst_Ave_Los_Angeles_90048_0018.jpg\";}'),(4433,3296,'_thumbnail_id','3344'),(4434,3362,'_wp_attached_file','2021/06/croftph01-scaled.jpg'),(4435,3362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:28:\"2021/06/croftph01-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph01-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:22:\"croftph01-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:21:\"croftph01-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:21:\"croftph01-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:23:\"croftph01-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph01-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph01-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph01-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph01-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph01-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph01-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph01-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph01-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph01-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph01.jpg\";}'),(4436,3363,'_wp_attached_file','2021/06/croftph01a-scaled.jpg'),(4437,3363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2021/06/croftph01a-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"croftph01a-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:\"croftph01a-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:\"croftph01a-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:\"croftph01a-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"croftph01a-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"croftph01a-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"croftph01a-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"croftph01a-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"croftph01a-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"croftph01a-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"croftph01a-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"croftph01a-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:22:\"croftph01a-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph01a-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"croftph01a-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"croftph01a.jpg\";}'),(4438,3364,'_wp_attached_file','2021/06/croftph01b--scaled.jpg'),(4439,3364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:30:\"2021/06/croftph01b--scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"croftph01b--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:24:\"croftph01b--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:23:\"croftph01b--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:23:\"croftph01b--768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"croftph01b--1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:25:\"croftph01b--2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"croftph01b--1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:21:\"croftph01b--80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:23:\"croftph01b--615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:23:\"croftph01b--615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:23:\"croftph01b--960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:23:\"croftph01b--675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:23:\"croftph01b--850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:23:\"croftph01b--100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:23:\"croftph01b--290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"croftph01b-.jpg\";}'),(4440,3365,'_wp_attached_file','2021/06/croftph01c-scaled.jpg'),(4441,3365,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2021/06/croftph01c-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"croftph01c-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:\"croftph01c-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:\"croftph01c-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:\"croftph01c-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"croftph01c-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"croftph01c-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"croftph01c-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"croftph01c-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"croftph01c-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"croftph01c-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"croftph01c-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"croftph01c-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:22:\"croftph01c-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph01c-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"croftph01c-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"croftph01c.jpg\";}'),(4442,3366,'_wp_attached_file','2021/06/croftph02-scaled.jpg'),(4443,3366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:28:\"2021/06/croftph02-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph02-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:22:\"croftph02-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:21:\"croftph02-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:21:\"croftph02-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:23:\"croftph02-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph02-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph02-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph02-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph02-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph02-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph02-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph02-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph02-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph02-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph02.jpg\";}'),(4444,3367,'_wp_attached_file','2021/06/croftph02a-scaled.jpg'),(4445,3367,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2021/06/croftph02a-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"croftph02a-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:\"croftph02a-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:\"croftph02a-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:\"croftph02a-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"croftph02a-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"croftph02a-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"croftph02a-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"croftph02a-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"croftph02a-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"croftph02a-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"croftph02a-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"croftph02a-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:22:\"croftph02a-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph02a-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"croftph02a-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"croftph02a.jpg\";}'),(4446,3368,'_wp_attached_file','2021/06/croftph2b-scaled.jpg'),(4447,3368,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:28:\"2021/06/croftph2b-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph2b-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:22:\"croftph2b-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:21:\"croftph2b-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:21:\"croftph2b-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:23:\"croftph2b-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph2b-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph2b-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph2b-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph2b-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph2b-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph2b-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph2b-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph2b-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph2b-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph2b-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph2b.jpg\";}'),(4448,3369,'_wp_attached_file','2021/06/croftph3-scaled.jpg'),(4449,3369,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2021/06/croftph3-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"croftph3-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:21:\"croftph3-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:20:\"croftph3-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:20:\"croftph3-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:22:\"croftph3-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"croftph3-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"croftph3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"croftph3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"croftph3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"croftph3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"croftph3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"croftph3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"croftph3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"croftph3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"croftph3.jpg\";}'),(4450,3370,'_wp_attached_file','2021/06/croftph4-scaled.jpg'),(4451,3370,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2021/06/croftph4-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"croftph4-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:21:\"croftph4-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:20:\"croftph4-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:20:\"croftph4-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:22:\"croftph4-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"croftph4-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"croftph4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"croftph4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"croftph4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"croftph4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"croftph4-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"croftph4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"croftph4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"croftph4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"croftph4.jpg\";}'),(4452,3371,'_wp_attached_file','2021/06/croftph5-scaled.jpg'),(4453,3371,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2021/06/croftph5-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"croftph5-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:21:\"croftph5-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:20:\"croftph5-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:20:\"croftph5-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:22:\"croftph5-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"croftph5-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph5-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"croftph5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"croftph5-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"croftph5-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"croftph5-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"croftph5-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"croftph5-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"croftph5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"croftph5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"croftph5.jpg\";}'),(4454,3372,'_wp_attached_file','2021/06/croftph6--scaled.jpg'),(4455,3372,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:28:\"2021/06/croftph6--scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph6--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:22:\"croftph6--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:21:\"croftph6--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:21:\"croftph6--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:23:\"croftph6--1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph6--2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph6--1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph6--80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph6--615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph6--615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph6--960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph6--675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph6--850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph6--100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph6--290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph6-.jpg\";}'),(4456,3373,'_wp_attached_file','2021/06/croftph7-scaled.jpg'),(4457,3373,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2021/06/croftph7-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"croftph7-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:21:\"croftph7-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:20:\"croftph7-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:20:\"croftph7-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:22:\"croftph7-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"croftph7-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph7-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"croftph7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"croftph7-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"croftph7-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"croftph7-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"croftph7-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"croftph7-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"croftph7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"croftph7-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"croftph7.jpg\";}'),(4458,3374,'_wp_attached_file','2021/06/croftph9-scaled.jpg'),(4459,3374,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2021/06/croftph9-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"croftph9-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:21:\"croftph9-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:20:\"croftph9-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:20:\"croftph9-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:22:\"croftph9-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"croftph9-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph9-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"croftph9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"croftph9-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"croftph9-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"croftph9-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"croftph9-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"croftph9-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"croftph9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"croftph9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"croftph9.jpg\";}'),(4460,3375,'_wp_attached_file','2021/06/croftph15-scaled.jpg'),(4461,3375,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:28:\"2021/06/croftph15-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph15-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:22:\"croftph15-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:21:\"croftph15-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:21:\"croftph15-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:23:\"croftph15-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph15-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph15-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph15-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph15-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph15-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph15-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph15-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph15-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph15-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph15.jpg\";}'),(4462,3376,'_wp_attached_file','2021/06/croftph16-scaled.jpg'),(4463,3376,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:28:\"2021/06/croftph16-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph16-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:22:\"croftph16-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:21:\"croftph16-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:21:\"croftph16-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:23:\"croftph16-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph16-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph16-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph16-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph16-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph16-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph16-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph16-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph16-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph16-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph16.jpg\";}'),(4464,3377,'_wp_attached_file','2021/06/croftph17-scaled.jpg'),(4465,3377,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:28:\"2021/06/croftph17-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph17-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:22:\"croftph17-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:21:\"croftph17-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:21:\"croftph17-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:23:\"croftph17-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph17-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph17-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph17-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph17-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph17-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph17-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph17-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph17-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph17-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph17.jpg\";}'),(4466,3378,'_wp_attached_file','2021/06/croftph19-scaled.jpg'),(4467,3378,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:28:\"2021/06/croftph19-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph19-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:22:\"croftph19-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:21:\"croftph19-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:21:\"croftph19-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:23:\"croftph19-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph19-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph19-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph19-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph19-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph19-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph19-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph19-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph19-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph19-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph19.jpg\";}'),(4468,3379,'_wp_attached_file','2021/06/croftph23-scaled.jpg'),(4469,3379,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1552;s:4:\"file\";s:28:\"2021/06/croftph23-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph23-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"croftph23-1024x621.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:621;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph23-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:21:\"croftph23-768x466.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"croftph23-1536x931.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:931;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph23-2048x1242.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1242;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph23-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph23-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph23-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph23-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph23-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph23-742x450.jpg\";s:5:\"width\";i:742;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph23-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph23-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph23-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph23.jpg\";}'),(4470,3380,'_wp_attached_file','2021/06/croftph25-scaled.jpg'),(4471,3380,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1697;s:4:\"file\";s:28:\"2021/06/croftph25-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"croftph25-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"croftph25-1024x679.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph25-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:21:\"croftph25-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"croftph25-1536x1018.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1018;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"croftph25-2048x1358.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1358;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"croftph25-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"croftph25-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"croftph25-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"croftph25-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"croftph25-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"croftph25-679x450.jpg\";s:5:\"width\";i:679;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"croftph25-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"croftph25-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"croftph25-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"croftph25.jpg\";}'),(4472,3334,'_thumbnail_id','3353'),(4473,3381,'_wp_attached_file','2021/06/cas1.jpg'),(4474,3381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1498;s:6:\"height\";i:1000;s:4:\"file\";s:16:\"2021/06/cas1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cas1-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:17:\"cas1-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:16:\"cas1-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:16:\"cas1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"cas1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"cas1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"cas1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"cas1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"cas1-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"cas1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"cas1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"cas1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"cas1.jpg\";s:5:\"width\";i:1498;s:6:\"height\";i:1000;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:{}}}'),(4475,3382,'_wp_attached_file','2021/06/cas2.jpg'),(4476,3382,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:16:\"2021/06/cas2.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cas2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cas2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"cas2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"cas2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"cas2-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"cas2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"cas2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"cas2.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"cas2.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4477,3383,'_wp_attached_file','2021/06/cas3.jpg'),(4478,3383,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:16:\"2021/06/cas3.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cas3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cas3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"cas3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"cas3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"cas3-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"cas3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"cas3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"cas3.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"cas3.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4479,3384,'_wp_attached_file','2021/06/cas4.jpg'),(4480,3384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:16:\"2021/06/cas4.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cas4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cas4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"cas4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"cas4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"cas4-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"cas4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"cas4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"cas4.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"cas4.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4481,3385,'_wp_attached_file','2021/06/cas5.jpg'),(4482,3385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:16:\"2021/06/cas5.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cas5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cas5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"cas5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"cas5-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"cas5-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"cas5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"cas5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"cas5.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"cas5.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4483,3386,'_wp_attached_file','2021/06/cas6.jpg'),(4484,3386,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:16:\"2021/06/cas6.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cas6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cas6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"cas6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"cas6-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"cas6-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"cas6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"cas6-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"cas6.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"cas6.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4485,3387,'_wp_attached_file','2021/06/cas7.jpg'),(4486,3387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:16:\"2021/06/cas7.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cas7-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cas7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"cas7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"cas7-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"cas7-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"cas7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"cas7-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"cas7.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"cas7.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4487,3388,'_wp_attached_file','2021/06/cas8.jpg'),(4488,3388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:16:\"2021/06/cas8.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cas8-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cas8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"cas8-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"cas8-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"cas8-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"cas8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"cas8-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"cas8.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"cas8.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4489,3389,'_wp_attached_file','2021/06/cas9.jpg'),(4490,3389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:16:\"2021/06/cas9.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"cas9-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"cas9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"cas9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"cas9-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"cas9-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"cas9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"cas9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"cas9.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:8:\"cas9.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4491,3390,'_wp_attached_file','2021/06/FW0A0487-2-3.jpg'),(4492,3390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:24:\"2021/06/FW0A0487-2-3.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"FW0A0487-2-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A0487-2-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"FW0A0487-2-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"FW0A0487-2-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0487-2-3-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A0487-2-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0487-2-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4493,3391,'_wp_attached_file','2021/06/cas10.jpg'),(4494,3391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas10.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas10-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas10-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas10-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas10.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas10.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4495,3392,'_wp_attached_file','2021/06/FW0A0518-2-1.jpg'),(4496,3392,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:24:\"2021/06/FW0A0518-2-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"FW0A0518-2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A0518-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"FW0A0518-2-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"FW0A0518-2-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0518-2-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A0518-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0518-2-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4497,3393,'_wp_attached_file','2021/06/cas11.jpg'),(4498,3393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas11.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas11-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas11-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas11-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas11-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas11-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas11.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas11.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4499,3394,'_wp_attached_file','2021/06/FW0A0538-2-1.jpg'),(4500,3394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:24:\"2021/06/FW0A0538-2-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"FW0A0538-2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A0538-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"FW0A0538-2-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"FW0A0538-2-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0538-2-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A0538-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0538-2-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4501,3395,'_wp_attached_file','2021/06/cas12.jpg'),(4502,3395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas12.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas12-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas12-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas12-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas12-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas12-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas12-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas12.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas12.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4503,3396,'_wp_attached_file','2021/06/FW0A0544-2-1.jpg'),(4504,3396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:413;s:4:\"file\";s:24:\"2021/06/FW0A0544-2-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"FW0A0544-2-1-300x194.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A0544-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"FW0A0544-2-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"FW0A0544-2-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0544-2-1-615x413.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:413;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A0544-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0544-2-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4505,3397,'_wp_attached_file','2021/06/cas13.jpg'),(4506,3397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas13.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas13-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas13-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas13-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas13-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas13-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas13.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas13.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4507,3398,'_wp_attached_file','2021/06/FW0A0559-2-HDR-Edit-1.jpg'),(4508,3398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:428;s:4:\"file\";s:33:\"2021/06/FW0A0559-2-HDR-Edit-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"FW0A0559-2-HDR-Edit-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"FW0A0559-2-HDR-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"FW0A0559-2-HDR-Edit-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"FW0A0559-2-HDR-Edit-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"FW0A0559-2-HDR-Edit-1-615x428.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"FW0A0559-2-HDR-Edit-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"FW0A0559-2-HDR-Edit-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4509,3399,'_wp_attached_file','2021/06/cas14.jpg'),(4510,3399,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:444;s:4:\"file\";s:17:\"2021/06/cas14.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas14-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas14-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas14-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas14-615x444.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas14-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas14.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas14.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:444;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:{}}}'),(4511,3400,'_wp_attached_file','2021/06/FW0A0578-2-HDR-1.jpg'),(4512,3400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2021/06/FW0A0578-2-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"FW0A0578-2-HDR-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0578-2-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:26:\"FW0A0578-2-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:28:\"FW0A0578-2-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0578-2-HDR-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0578-2-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0578-2-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4513,3401,'_wp_attached_file','2021/06/cas15.jpg'),(4514,3401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas15.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas15-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas15-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas15-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas15-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas15-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas15.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas15.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4515,3402,'_wp_attached_file','2021/06/FW0A0586-3-HDR.jpg'),(4516,3402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:26:\"2021/06/FW0A0586-3-HDR.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"FW0A0586-3-HDR-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"FW0A0586-3-HDR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:24:\"FW0A0586-3-HDR-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:26:\"FW0A0586-3-HDR-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:26:\"FW0A0586-3-HDR-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:26:\"FW0A0586-3-HDR-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:26:\"FW0A0586-3-HDR-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4517,3403,'_wp_attached_file','2021/06/cas16.jpg'),(4518,3403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas16.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas16-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas16-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas16-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas16-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas16-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas16.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas16.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4519,3404,'_wp_attached_file','2021/06/FW0A0600-2-HDR-1.jpg'),(4520,3404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2021/06/FW0A0600-2-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"FW0A0600-2-HDR-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0600-2-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:26:\"FW0A0600-2-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:28:\"FW0A0600-2-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0600-2-HDR-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0600-2-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0600-2-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4521,3405,'_wp_attached_file','2021/06/cas17.jpg'),(4522,3405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:444;s:4:\"file\";s:17:\"2021/06/cas17.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas17-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas17-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas17-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas17-615x444.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas17-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas17.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas17.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:444;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:{}}}'),(4523,3406,'_wp_attached_file','2021/06/FW0A0609-2-HDR-1.jpg'),(4524,3406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2021/06/FW0A0609-2-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"FW0A0609-2-HDR-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0609-2-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:26:\"FW0A0609-2-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:28:\"FW0A0609-2-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0609-2-HDR-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0609-2-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0609-2-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4525,3407,'_wp_attached_file','2021/06/cas18.jpg'),(4526,3407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas18.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas18-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas18-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas18-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas18-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas18-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas18.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas18.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4527,3408,'_wp_attached_file','2021/06/FW0A0668-2-crop-1.jpg'),(4528,3408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:379;s:4:\"file\";s:29:\"2021/06/FW0A0668-2-crop-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"FW0A0668-2-crop-1-300x178.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"FW0A0668-2-crop-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:27:\"FW0A0668-2-crop-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:29:\"FW0A0668-2-crop-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:29:\"FW0A0668-2-crop-1-615x379.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:29:\"FW0A0668-2-crop-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:29:\"FW0A0668-2-crop-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4529,3409,'_wp_attached_file','2021/06/cas19.jpg'),(4530,3409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas19.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas19-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas19-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas19-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas19-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas19-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas19.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas19.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4531,3410,'_wp_attached_file','2021/06/FW0A0668-2-1.jpg'),(4532,3410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:346;s:6:\"height\";i:519;s:4:\"file\";s:24:\"2021/06/FW0A0668-2-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"FW0A0668-2-1-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:24:\"FW0A0668-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"FW0A0668-2-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"FW0A0668-2-1-346x360.jpg\";s:5:\"width\";i:346;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0668-2-1-346x450.jpg\";s:5:\"width\";i:346;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"FW0A0668-2-1-346x450.jpg\";s:5:\"width\";i:346;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:24:\"FW0A0668-2-1-300x450.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A0668-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"FW0A0668-2-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4533,3411,'_wp_attached_file','2021/06/cas20.jpg'),(4534,3411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas20.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas20-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas20-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas20-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas20-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas20-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas20-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas20.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas20.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4535,3412,'_wp_attached_file','2021/06/FW0A0689-2-HDR-1.jpg'),(4536,3412,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2021/06/FW0A0689-2-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"FW0A0689-2-HDR-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0689-2-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:26:\"FW0A0689-2-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:28:\"FW0A0689-2-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0689-2-HDR-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0689-2-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0689-2-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4537,3413,'_wp_attached_file','2021/06/cas21.jpg'),(4538,3413,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas21.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas21-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas21-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas21-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas21-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas21-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas21-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas21.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas21.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4539,3414,'_wp_attached_file','2021/06/FW0A0697-2-HDR-1.jpg'),(4540,3414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2021/06/FW0A0697-2-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"FW0A0697-2-HDR-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0697-2-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:26:\"FW0A0697-2-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:28:\"FW0A0697-2-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0697-2-HDR-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0697-2-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0697-2-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4541,3415,'_wp_attached_file','2021/06/cas22.jpg'),(4542,3415,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas22.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas22-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas22-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas22-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas22-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas22-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas22-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas22.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas22.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4543,3416,'_wp_attached_file','2021/06/FW0A0753-2-HDR-1.jpg'),(4544,3416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2021/06/FW0A0753-2-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"FW0A0753-2-HDR-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0753-2-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:26:\"FW0A0753-2-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:28:\"FW0A0753-2-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0753-2-HDR-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0753-2-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0753-2-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4545,3417,'_wp_attached_file','2021/06/cas24.jpg'),(4546,3417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas24.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas24-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas24-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas24-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas24-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas24-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas24-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas24-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas24.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas24.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4547,3418,'_wp_attached_file','2021/06/FW0A0800-Edit-1.jpg'),(4548,3418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2021/06/FW0A0800-Edit-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FW0A0800-Edit-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0800-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:25:\"FW0A0800-Edit-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:27:\"FW0A0800-Edit-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0800-Edit-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0800-Edit-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0800-Edit-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4549,3419,'_wp_attached_file','2021/06/cas25.jpg'),(4550,3419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas25.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas25-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas25-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas25-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas25-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas25-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas25-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas25-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas25.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas25.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4551,3420,'_wp_attached_file','2021/06/FW0A0812-1.jpg'),(4552,3420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:22:\"2021/06/FW0A0812-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"FW0A0812-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"FW0A0812-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"FW0A0812-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"FW0A0812-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"FW0A0812-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"FW0A0812-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"FW0A0812-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4553,3421,'_wp_attached_file','2021/06/cas26.jpg'),(4554,3421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:17:\"2021/06/cas26.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas26-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas26-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas26-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas26-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas26-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas26-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas26-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas26.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas26.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4555,3422,'_wp_attached_file','2021/06/FW0A0819-2-HDR-1.jpg'),(4556,3422,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2021/06/FW0A0819-2-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"FW0A0819-2-HDR-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0819-2-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:26:\"FW0A0819-2-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:28:\"FW0A0819-2-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0819-2-HDR-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0819-2-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0819-2-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4557,3423,'_wp_attached_file','2021/06/cas27.jpg'),(4558,3423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:443;s:4:\"file\";s:17:\"2021/06/cas27.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"cas27-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"cas27-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:15:\"cas27-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:17:\"cas27-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:17:\"cas27-615x443.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:17:\"cas27-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:17:\"cas27-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:9:\"cas27.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:9:\"cas27.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:443;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:{}}}'),(4559,3424,'_wp_attached_file','2021/06/FW0A0863-2-HDR-1.jpg'),(4560,3424,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2021/06/FW0A0863-2-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"FW0A0863-2-HDR-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0863-2-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:26:\"FW0A0863-2-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:28:\"FW0A0863-2-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0863-2-HDR-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:28:\"FW0A0863-2-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:28:\"FW0A0863-2-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4561,3425,'_wp_attached_file','2021/06/FW0A0905-Edit-2.jpg'),(4562,3425,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2021/06/FW0A0905-Edit-2.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FW0A0905-Edit-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0905-Edit-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:25:\"FW0A0905-Edit-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:27:\"FW0A0905-Edit-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0905-Edit-2-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0905-Edit-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0905-Edit-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4563,3426,'_wp_attached_file','2021/06/FW0A0952-HDR-Edit-1.jpg'),(4564,3426,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:31:\"2021/06/FW0A0952-HDR-Edit-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"FW0A0952-HDR-Edit-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"FW0A0952-HDR-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:29:\"FW0A0952-HDR-Edit-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:31:\"FW0A0952-HDR-Edit-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:31:\"FW0A0952-HDR-Edit-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:31:\"FW0A0952-HDR-Edit-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:31:\"FW0A0952-HDR-Edit-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4565,3427,'_wp_attached_file','2021/06/FW0A0955-Edit-1.jpg'),(4566,3427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2021/06/FW0A0955-Edit-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FW0A0955-Edit-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0955-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:25:\"FW0A0955-Edit-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:27:\"FW0A0955-Edit-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0955-Edit-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0955-Edit-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0955-Edit-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4567,3428,'_wp_attached_file','2021/06/FW0A0968-Edit-1.jpg'),(4568,3428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:429;s:4:\"file\";s:27:\"2021/06/FW0A0968-Edit-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FW0A0968-Edit-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0968-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:25:\"FW0A0968-Edit-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:27:\"FW0A0968-Edit-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0968-Edit-1-615x429.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0968-Edit-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0968-Edit-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4569,3429,'_wp_attached_file','2021/06/FW0A0989-Edit-1.jpg'),(4570,3429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:428;s:4:\"file\";s:27:\"2021/06/FW0A0989-Edit-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FW0A0989-Edit-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0989-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:25:\"FW0A0989-Edit-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:27:\"FW0A0989-Edit-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0989-Edit-1-615x428.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A0989-Edit-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:27:\"FW0A0989-Edit-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4571,3430,'_wp_attached_file','2021/06/FW0A0995-1.jpg'),(4572,3430,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:380;s:6:\"height\";i:519;s:4:\"file\";s:22:\"2021/06/FW0A0995-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"FW0A0995-1-220x300.jpg\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"FW0A0995-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:20:\"FW0A0995-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:22:\"FW0A0995-1-380x360.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:22:\"FW0A0995-1-380x450.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:22:\"FW0A0995-1-380x450.jpg\";s:5:\"width\";i:380;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:22:\"FW0A0995-1-329x450.jpg\";s:5:\"width\";i:329;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:22:\"FW0A0995-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:22:\"FW0A0995-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4573,3431,'_wp_attached_file','2021/06/FW0A1019-HDR-1.jpg'),(4574,3431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:390;s:4:\"file\";s:26:\"2021/06/FW0A1019-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"FW0A1019-HDR-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"FW0A1019-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:24:\"FW0A1019-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:26:\"FW0A1019-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:26:\"FW0A1019-HDR-1-615x390.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:26:\"FW0A1019-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:26:\"FW0A1019-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4575,3432,'_wp_attached_file','2021/06/FW0A1022-HDR-1.jpg'),(4576,3432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:26:\"2021/06/FW0A1022-HDR-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"FW0A1022-HDR-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"FW0A1022-HDR-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:24:\"FW0A1022-HDR-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:26:\"FW0A1022-HDR-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:26:\"FW0A1022-HDR-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:26:\"FW0A1022-HDR-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:26:\"FW0A1022-HDR-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4577,3433,'_wp_attached_file','2021/06/FW0A1062-Edit-1.jpg'),(4578,3433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2021/06/FW0A1062-Edit-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FW0A1062-Edit-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A1062-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:25:\"FW0A1062-Edit-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:27:\"FW0A1062-Edit-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:27:\"FW0A1062-Edit-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A1062-Edit-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:27:\"FW0A1062-Edit-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4579,3434,'_wp_attached_file','2021/06/FW0A1110-2-1.jpg'),(4580,3434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:431;s:4:\"file\";s:24:\"2021/06/FW0A1110-2-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"FW0A1110-2-1-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A1110-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"FW0A1110-2-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"FW0A1110-2-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"FW0A1110-2-1-615x431.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"FW0A1110-2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"FW0A1110-2-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"FW0A1110-2-1.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:431;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:{}}}'),(4581,3435,'_wp_attached_file','2021/06/FW0A1116-Edit-1.jpg'),(4582,3435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2021/06/FW0A1116-Edit-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FW0A1116-Edit-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A1116-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:25:\"FW0A1116-Edit-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:27:\"FW0A1116-Edit-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:27:\"FW0A1116-Edit-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A1116-Edit-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:27:\"FW0A1116-Edit-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4583,3436,'_wp_attached_file','2021/06/FW0A1182-Edit-1.jpg'),(4584,3436,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:639;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2021/06/FW0A1182-Edit-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"FW0A1182-Edit-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A1182-Edit-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:25:\"FW0A1182-Edit-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:27:\"FW0A1182-Edit-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:27:\"FW0A1182-Edit-1-615x426.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:27:\"FW0A1182-Edit-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:27:\"FW0A1182-Edit-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4585,3437,'_wp_attached_file','2021/06/cas1-1.jpg'),(4586,3437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1498;s:6:\"height\";i:1000;s:4:\"file\";s:18:\"2021/06/cas1-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"cas1-1-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:19:\"cas1-1-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:18:\"cas1-1-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:18:\"cas1-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas1-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"cas1-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"cas1-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"cas1-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"cas1-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"cas1-1-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"cas1-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"cas1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"cas1-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4587,3438,'_wp_attached_file','2021/06/cas2-1.jpg'),(4588,3438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:18:\"2021/06/cas2-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"cas2-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"cas2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"cas2-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"cas2-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"cas2-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"cas2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"cas2-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4589,3439,'_wp_attached_file','2021/06/cas3-1.jpg'),(4590,3439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:18:\"2021/06/cas3-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"cas3-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"cas3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"cas3-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"cas3-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"cas3-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"cas3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"cas3-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:10:\"cas3-1.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:10:\"cas3-1.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:445;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:{}}}'),(4591,3440,'_wp_attached_file','2021/06/cas4-1.jpg'),(4592,3440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:18:\"2021/06/cas4-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"cas4-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"cas4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"cas4-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"cas4-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"cas4-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"cas4-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"cas4-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4593,3441,'_wp_attached_file','2021/06/cas5-1.jpg'),(4594,3441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:18:\"2021/06/cas5-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"cas5-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"cas5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"cas5-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"cas5-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"cas5-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"cas5-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"cas5-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4595,3442,'_wp_attached_file','2021/06/cas6-1.jpg'),(4596,3442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:18:\"2021/06/cas6-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"cas6-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"cas6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"cas6-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"cas6-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"cas6-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"cas6-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"cas6-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4597,3443,'_wp_attached_file','2021/06/cas7-1.jpg'),(4598,3443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:18:\"2021/06/cas7-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"cas7-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"cas7-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"cas7-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"cas7-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"cas7-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"cas7-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"cas7-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4599,3444,'_wp_attached_file','2021/06/cas8-1.jpg'),(4600,3444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:18:\"2021/06/cas8-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"cas8-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"cas8-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"cas8-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"cas8-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"cas8-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"cas8-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"cas8-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4601,3445,'_wp_attached_file','2021/06/cas9-1.jpg'),(4602,3445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:18:\"2021/06/cas9-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"cas9-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"cas9-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"cas9-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"cas9-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"cas9-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"cas9-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"cas9-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4603,3446,'_wp_attached_file','2021/06/cas10-1.jpg'),(4604,3446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas10-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas10-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas10-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas10-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas10-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas10-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas10-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas10-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4605,3447,'_wp_attached_file','2021/06/cas11-1.jpg'),(4606,3447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas11-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas11-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas11-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas11-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas11-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas11-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas11-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas11-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4607,3448,'_wp_attached_file','2021/06/cas12-1.jpg'),(4608,3448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas12-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas12-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas12-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas12-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas12-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas12-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas12-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas12-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4609,3449,'_wp_attached_file','2021/06/cas13-1.jpg'),(4610,3449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas13-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas13-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas13-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas13-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas13-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas13-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas13-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas13-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4611,3450,'_wp_attached_file','2021/06/cas14-1.jpg'),(4612,3450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:444;s:4:\"file\";s:19:\"2021/06/cas14-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas14-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas14-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas14-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas14-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas14-1-615x444.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas14-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas14-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4613,3451,'_wp_attached_file','2021/06/cas15-1.jpg'),(4614,3451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas15-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas15-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas15-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas15-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas15-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas15-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas15-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas15-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4615,3452,'_wp_attached_file','2021/06/cas16-1.jpg'),(4616,3452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas16-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas16-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas16-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas16-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas16-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas16-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas16-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas16-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4617,3453,'_wp_attached_file','2021/06/cas17-1.jpg'),(4618,3453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:444;s:4:\"file\";s:19:\"2021/06/cas17-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas17-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas17-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas17-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas17-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas17-1-615x444.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:444;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas17-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas17-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4619,3454,'_wp_attached_file','2021/06/cas18-1.jpg'),(4620,3454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas18-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas18-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas18-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas18-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas18-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas18-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas18-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas18-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4621,3455,'_wp_attached_file','2021/06/cas19-1.jpg'),(4622,3455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas19-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas19-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas19-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas19-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas19-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas19-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas19-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas19-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4623,3456,'_wp_attached_file','2021/06/cas20-1.jpg'),(4624,3456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas20-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas20-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas20-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas20-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas20-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas20-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas20-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas20-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4625,3457,'_wp_attached_file','2021/06/cas21-1.jpg'),(4626,3457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas21-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas21-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas21-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas21-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas21-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas21-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas21-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas21-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4627,3458,'_wp_attached_file','2021/06/cas22-1.jpg'),(4628,3458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas22-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas22-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas22-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas22-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas22-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas22-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas22-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas22-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4629,3459,'_wp_attached_file','2021/06/cas24-1.jpg'),(4630,3459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas24-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas24-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas24-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas24-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas24-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas24-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas24-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas24-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4631,3460,'_wp_attached_file','2021/06/cas25-1.jpg'),(4632,3460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas25-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas25-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas25-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas25-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas25-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas25-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas25-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas25-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4633,3461,'_wp_attached_file','2021/06/cas26-1.jpg'),(4634,3461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:445;s:4:\"file\";s:19:\"2021/06/cas26-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas26-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas26-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas26-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas26-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas26-1-615x445.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas26-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas26-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4635,3462,'_wp_attached_file','2021/06/cas27-1.jpg'),(4636,3462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:443;s:4:\"file\";s:19:\"2021/06/cas27-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cas27-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cas27-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:17:\"cas27-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:19:\"cas27-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:19:\"cas27-1-615x443.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:19:\"cas27-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:19:\"cas27-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4637,3463,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0001.jpg'),(4638,3463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0001.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0001-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551285073\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4639,3464,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0002.jpg'),(4640,3464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0002.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0002-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551294445\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4641,3465,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0003.jpg'),(4642,3465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0003.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0003-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551293942\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4643,3466,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0004.jpg'),(4644,3466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0004.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0004-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551286480\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4645,3467,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0005.jpg'),(4646,3467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0005.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0005-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551289217\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4647,3468,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0006.jpg'),(4648,3468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0006.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0006-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551287667\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4649,3469,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0007.jpg'),(4650,3469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0007.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0007-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551288279\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4651,3470,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0008.jpg'),(4652,3470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0008.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0008-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551288822\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4653,3471,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0009.jpg'),(4654,3471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0009.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0009-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551288023\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4655,3472,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0010.jpg'),(4656,3472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0010.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0010-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551289614\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4657,3473,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0011.jpg'),(4658,3473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0011.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0011-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551289935\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4659,3336,'_thumbnail_id','3434'),(4660,3474,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0012.jpg'),(4661,3474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1005;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0012.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-768x515.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:515;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-672x450.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0012-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551290504\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4662,3475,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0013.jpg'),(4663,3475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0013.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0013-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551290978\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4664,3476,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0014.jpg'),(4665,3476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0014.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0014-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551290779\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4666,3477,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0015.jpg'),(4667,3477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0015.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0015-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551291305\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4668,3478,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0016.jpg'),(4669,3478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0016.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0016-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551291715\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4670,3479,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0017.jpg'),(4671,3479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0017.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0017-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551291982\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4672,3480,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0018.jpg'),(4673,3480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0018.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0018-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551286879\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4674,3481,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0019.jpg'),(4675,3481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0019.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0019-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551292237\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4676,3482,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0020.jpg'),(4677,3482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0020.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0020-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551292777\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4678,3483,'_wp_attached_file','2021/06/01EBCE0B-2846-438B-A888-1F49E2924C94.jpg'),(4679,3483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/01EBCE0B-2846-438B-A888-1F49E2924C94.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-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:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"01EBCE0B-2846-438B-A888-1F49E2924C94-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"01EBCE0B-2846-438B-A888-1F49E2924C94-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213308\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4680,3484,'_wp_attached_file','2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0021.jpg'),(4681,3484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:54:\"2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0021.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-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:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-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:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:55:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:52:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:54:\"6347_Maryland_Dr_Los_Angeles_CA_90048_0021-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551294703\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4682,3485,'_wp_attached_file','2021/06/2A72D265-DC5B-424F-9826-8B0596E5487E.jpg'),(4683,3485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/2A72D265-DC5B-424F-9826-8B0596E5487E.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-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:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"2A72D265-DC5B-424F-9826-8B0596E5487E-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"2A72D265-DC5B-424F-9826-8B0596E5487E-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213331\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4684,3486,'_wp_attached_file','2021/06/2B007F1D-6DCB-44EF-843D-4895A90CDB38.jpg'),(4685,3486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/2B007F1D-6DCB-44EF-843D-4895A90CDB38.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-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:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"2B007F1D-6DCB-44EF-843D-4895A90CDB38-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213368\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4686,3487,'_wp_attached_file','2021/06/4D8B60DF-0BCA-40DC-86BC-64337AB75825.jpg'),(4687,3487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/4D8B60DF-0BCA-40DC-86BC-64337AB75825.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-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:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"4D8B60DF-0BCA-40DC-86BC-64337AB75825-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469215355\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4688,3488,'_wp_attached_file','2021/06/5ADB57B4-A2B2-40BF-BF61-F3F348003F4B.jpg'),(4689,3488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/5ADB57B4-A2B2-40BF-BF61-F3F348003F4B.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-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:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"5ADB57B4-A2B2-40BF-BF61-F3F348003F4B-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469212447\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4690,3489,'_wp_attached_file','2021/06/5C44215B-1586-4966-8F2A-FA9D882F0386.jpg'),(4691,3489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/5C44215B-1586-4966-8F2A-FA9D882F0386.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-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:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"5C44215B-1586-4966-8F2A-FA9D882F0386-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"5C44215B-1586-4966-8F2A-FA9D882F0386-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214228\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4692,3490,'_wp_attached_file','2021/06/5F28DBD6-7BD6-4ED0-812E-68B336D4FB33.jpg'),(4693,3490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/5F28DBD6-7BD6-4ED0-812E-68B336D4FB33.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-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:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"5F28DBD6-7BD6-4ED0-812E-68B336D4FB33-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213744\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4694,3491,'_wp_attached_file','2021/06/6E73637C-B3F5-4F4A-B02E-9899FB38F60D.jpg'),(4695,3491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/6E73637C-B3F5-4F4A-B02E-9899FB38F60D.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-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:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"6E73637C-B3F5-4F4A-B02E-9899FB38F60D-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214039\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4696,3492,'_wp_attached_file','2021/06/8EB3492B-8D85-4429-A775-10034308652F.jpg'),(4697,3492,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/8EB3492B-8D85-4429-A775-10034308652F.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"8EB3492B-8D85-4429-A775-10034308652F-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"8EB3492B-8D85-4429-A775-10034308652F-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:48:\"8EB3492B-8D85-4429-A775-10034308652F-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"8EB3492B-8D85-4429-A775-10034308652F-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"8EB3492B-8D85-4429-A775-10034308652F-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"8EB3492B-8D85-4429-A775-10034308652F-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"8EB3492B-8D85-4429-A775-10034308652F-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"8EB3492B-8D85-4429-A775-10034308652F-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"8EB3492B-8D85-4429-A775-10034308652F-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"8EB3492B-8D85-4429-A775-10034308652F-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"8EB3492B-8D85-4429-A775-10034308652F-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214924\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4698,3493,'_wp_attached_file','2021/06/8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5.jpg'),(4699,3493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-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:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213639\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4700,3494,'_wp_attached_file','2021/06/56E784C2-9A29-400F-86BF-776EF88057E9.jpg'),(4701,3494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/56E784C2-9A29-400F-86BF-776EF88057E9.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-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:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"56E784C2-9A29-400F-86BF-776EF88057E9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"56E784C2-9A29-400F-86BF-776EF88057E9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213992\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4702,3495,'_wp_attached_file','2021/06/86A998A7-4E4E-4360-A6C2-A4E6C7A798D2.jpg'),(4703,3495,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/86A998A7-4E4E-4360-A6C2-A4E6C7A798D2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-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:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"86A998A7-4E4E-4360-A6C2-A4E6C7A798D2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469211508\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4704,3496,'_wp_attached_file','2021/06/123BF73D-4D58-464E-906B-FCD3665D2A6B.jpg'),(4705,3496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/123BF73D-4D58-464E-906B-FCD3665D2A6B.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-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:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"123BF73D-4D58-464E-906B-FCD3665D2A6B-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214497\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4706,3497,'_wp_attached_file','2021/06/565B7C87-F332-4655-B1E4-52E9B489E3E3.jpg'),(4707,3497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/565B7C87-F332-4655-B1E4-52E9B489E3E3.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-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:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"565B7C87-F332-4655-B1E4-52E9B489E3E3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213845\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4708,3498,'_wp_attached_file','2021/06/01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA.jpg'),(4709,3498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-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:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213778\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4710,3499,'_wp_attached_file','2021/06/5452CB3E-4866-4D1E-8CA0-A670C91F1A45.jpg'),(4711,3499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/5452CB3E-4866-4D1E-8CA0-A670C91F1A45.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-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:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"5452CB3E-4866-4D1E-8CA0-A670C91F1A45-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214139\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4712,3500,'_wp_attached_file','2021/06/6836B441-430C-410F-B1A5-8350F74D4A15.jpg'),(4713,3500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/6836B441-430C-410F-B1A5-8350F74D4A15.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-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:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"6836B441-430C-410F-B1A5-8350F74D4A15-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"6836B441-430C-410F-B1A5-8350F74D4A15-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469211458\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4714,3501,'_wp_attached_file','2021/06/41619C01-A215-4F7B-A448-06615FCB3935.jpg'),(4715,3501,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/41619C01-A215-4F7B-A448-06615FCB3935.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"41619C01-A215-4F7B-A448-06615FCB3935-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"41619C01-A215-4F7B-A448-06615FCB3935-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:48:\"41619C01-A215-4F7B-A448-06615FCB3935-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"41619C01-A215-4F7B-A448-06615FCB3935-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"41619C01-A215-4F7B-A448-06615FCB3935-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"41619C01-A215-4F7B-A448-06615FCB3935-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"41619C01-A215-4F7B-A448-06615FCB3935-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"41619C01-A215-4F7B-A448-06615FCB3935-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"41619C01-A215-4F7B-A448-06615FCB3935-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"41619C01-A215-4F7B-A448-06615FCB3935-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"41619C01-A215-4F7B-A448-06615FCB3935-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213811\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4716,3502,'_wp_attached_file','2021/06/2208505D-9667-4849-B368-16A97E7A20EE.jpg'),(4717,3502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/2208505D-9667-4849-B368-16A97E7A20EE.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"2208505D-9667-4849-B368-16A97E7A20EE-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"2208505D-9667-4849-B368-16A97E7A20EE-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:48:\"2208505D-9667-4849-B368-16A97E7A20EE-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"2208505D-9667-4849-B368-16A97E7A20EE-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"2208505D-9667-4849-B368-16A97E7A20EE-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"2208505D-9667-4849-B368-16A97E7A20EE-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"2208505D-9667-4849-B368-16A97E7A20EE-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"2208505D-9667-4849-B368-16A97E7A20EE-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"2208505D-9667-4849-B368-16A97E7A20EE-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"2208505D-9667-4849-B368-16A97E7A20EE-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"2208505D-9667-4849-B368-16A97E7A20EE-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214949\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4718,3503,'_wp_attached_file','2021/06/A5D75136-9428-4430-AE88-2D806DE5F30D.jpg'),(4719,3503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/A5D75136-9428-4430-AE88-2D806DE5F30D.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-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:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"A5D75136-9428-4430-AE88-2D806DE5F30D-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"A5D75136-9428-4430-AE88-2D806DE5F30D-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469215056\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4720,3504,'_wp_attached_file','2021/06/A8FF24B0-BEA0-441E-85CA-85194C1DF5EC.jpg'),(4721,3504,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/A8FF24B0-BEA0-441E-85CA-85194C1DF5EC.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-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:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"A8FF24B0-BEA0-441E-85CA-85194C1DF5EC-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213439\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4722,3505,'_wp_attached_file','2021/06/A6562C2C-DCE5-4C75-85E7-B08006AAB4FE.jpg'),(4723,3505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/A6562C2C-DCE5-4C75-85E7-B08006AAB4FE.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-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:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"A6562C2C-DCE5-4C75-85E7-B08006AAB4FE-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213260\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4724,3506,'_wp_attached_file','2021/06/1-1.jpg'),(4725,3506,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/1-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-1-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:15:\"1-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"1-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"1-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"1-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"1-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"1-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"1-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"1-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"1-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4726,3507,'_wp_attached_file','2021/06/AE11E812-4B0E-4CF4-8773-F24591DF617F.jpg'),(4727,3507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/AE11E812-4B0E-4CF4-8773-F24591DF617F.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-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:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"AE11E812-4B0E-4CF4-8773-F24591DF617F-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214717\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4728,3508,'_wp_attached_file','2021/06/2-1.jpg'),(4729,3508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/2-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"2-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-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:15:\"2-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"2-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"2-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"2-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"2-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"2-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"2-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"2-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"2-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4730,3509,'_wp_attached_file','2021/06/B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9.jpg'),(4731,3509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-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:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469215338\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4732,3510,'_wp_attached_file','2021/06/3-1.jpg'),(4733,3510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/3-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"3-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"3-1-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:15:\"3-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"3-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"3-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"3-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"3-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"3-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"3-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"3-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"3-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4734,3511,'_wp_attached_file','2021/06/B6FF5053-9716-4DF8-A2A2-4F359849798E.jpg'),(4735,3511,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/B6FF5053-9716-4DF8-A2A2-4F359849798E.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-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:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"B6FF5053-9716-4DF8-A2A2-4F359849798E-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469215220\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4736,3512,'_wp_attached_file','2021/06/4-1.jpg'),(4737,3512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/4-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"4-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"4-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"4-1-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:15:\"4-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"4-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"4-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"4-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"4-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"4-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"4-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"4-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"4-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"4-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4738,3513,'_wp_attached_file','2021/06/5-1.jpg'),(4739,3513,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/5-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"5-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5-1-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:15:\"5-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"5-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"5-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"5-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"5-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"5-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"5-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"5-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"5-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"5-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4740,3514,'_wp_attached_file','2021/06/BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47.jpg'),(4741,3514,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-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:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469219331\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4742,3515,'_wp_attached_file','2021/06/6-1.jpg'),(4743,3515,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/6-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"6-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"6-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"6-1-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:15:\"6-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"6-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"6-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"6-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"6-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"6-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"6-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"6-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"6-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"6-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4744,3516,'_wp_attached_file','2021/06/C3D615E9-A2F7-4486-A140-22BBA5F74659.jpg'),(4745,3516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/C3D615E9-A2F7-4486-A140-22BBA5F74659.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-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:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"C3D615E9-A2F7-4486-A140-22BBA5F74659-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213161\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4746,3517,'_wp_attached_file','2021/06/7-1.jpg'),(4747,3517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/7-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"7-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"7-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"7-1-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:15:\"7-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"7-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"7-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"7-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"7-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"7-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"7-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"7-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"7-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"7-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4748,3518,'_wp_attached_file','2021/06/C8744A9A-FD54-472D-920F-9FF3556BAC93.jpg'),(4749,3518,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/C8744A9A-FD54-472D-920F-9FF3556BAC93.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-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:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"C8744A9A-FD54-472D-920F-9FF3556BAC93-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469211335\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4750,3519,'_wp_attached_file','2021/06/8-1.jpg'),(4751,3519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/8-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"8-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"8-1-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:15:\"8-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"8-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"8-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"8-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"8-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"8-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"8-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"8-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"8-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"8-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4752,3520,'_wp_attached_file','2021/06/C9700104-D699-49F5-A6F9-2316A1B5DC54.jpg'),(4753,3520,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/C9700104-D699-49F5-A6F9-2316A1B5DC54.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-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:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"C9700104-D699-49F5-A6F9-2316A1B5DC54-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469211392\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4754,3521,'_wp_attached_file','2021/06/9-1-scaled.jpg'),(4755,3521,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1664;s:4:\"file\";s:22:\"2021/06/9-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-1-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"9-1-1024x666.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:666;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9-1-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:15:\"9-1-768x499.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"9-1-1536x998.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:998;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:17:\"9-1-2048x1331.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"9-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"9-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"9-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"9-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"9-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"9-1-692x450.jpg\";s:5:\"width\";i:692;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"9-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"9-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"9-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:7:\"9-1.jpg\";}'),(4756,3522,'_wp_attached_file','2021/06/CA97D2F1-49A6-4201-A10E-F21F126AD25F.jpg'),(4757,3522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/CA97D2F1-49A6-4201-A10E-F21F126AD25F.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-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:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"CA97D2F1-49A6-4201-A10E-F21F126AD25F-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213555\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4758,3523,'_wp_attached_file','2021/06/E2E1A548-7EB1-418C-874F-E362258AD27C.jpg'),(4759,3523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/E2E1A548-7EB1-418C-874F-E362258AD27C.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-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:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"E2E1A548-7EB1-418C-874F-E362258AD27C-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"E2E1A548-7EB1-418C-874F-E362258AD27C-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214888\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4760,3524,'_wp_attached_file','2021/06/E70CB066-84F5-4B88-AD9A-754D6EBC8C07.jpg'),(4761,3524,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/E70CB066-84F5-4B88-AD9A-754D6EBC8C07.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-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:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"E70CB066-84F5-4B88-AD9A-754D6EBC8C07.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469219874\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4762,3525,'_wp_attached_file','2021/06/E474D795-DF60-4F08-979A-19E1686D57E3.jpg'),(4763,3525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/E474D795-DF60-4F08-979A-19E1686D57E3.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-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:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"E474D795-DF60-4F08-979A-19E1686D57E3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"E474D795-DF60-4F08-979A-19E1686D57E3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213528\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4764,3526,'_wp_attached_file','2021/06/E6714E88-5F82-4059-BFB6-93761D53751B.jpg'),(4765,3526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/E6714E88-5F82-4059-BFB6-93761D53751B.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-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:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"E6714E88-5F82-4059-BFB6-93761D53751B-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"E6714E88-5F82-4059-BFB6-93761D53751B-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214651\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4766,3527,'_wp_attached_file','2021/06/E3719696-496F-4AF0-AFEB-282FDE0B408D.jpg'),(4767,3527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/E3719696-496F-4AF0-AFEB-282FDE0B408D.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-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:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"E3719696-496F-4AF0-AFEB-282FDE0B408D-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214610\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4768,3528,'_wp_attached_file','2021/06/10-1-scaled.jpg'),(4769,3529,'_wp_attached_file','2021/06/EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB.jpg'),(4770,3529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-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:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214839\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4771,3528,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/10-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"10-1-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:17:\"10-1-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:16:\"10-1-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:16:\"10-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"10-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"10-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"10-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"10-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"10-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"10-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"10-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"10-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"10-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"10-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"10-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"10-1.jpg\";}'),(4772,3530,'_wp_attached_file','2021/06/ED3F4111-81BE-4BFC-95C4-F399F93EBA90.jpg'),(4773,3530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/ED3F4111-81BE-4BFC-95C4-F399F93EBA90.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-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:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"ED3F4111-81BE-4BFC-95C4-F399F93EBA90-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213207\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4774,3531,'_wp_attached_file','2021/06/F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5.jpg'),(4775,3531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-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:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469215656\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4776,3532,'_wp_attached_file','2021/06/F832F08C-19D7-4D96-B5FD-25BC66314675.jpg'),(4777,3532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/F832F08C-19D7-4D96-B5FD-25BC66314675.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-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:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"F832F08C-19D7-4D96-B5FD-25BC66314675-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"F832F08C-19D7-4D96-B5FD-25BC66314675-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469214738\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4778,3533,'_wp_attached_file','2021/06/F6640F96-5124-442D-B88E-E7638AA3BA75.jpg'),(4779,3533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/F6640F96-5124-442D-B88E-E7638AA3BA75.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-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:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"F6640F96-5124-442D-B88E-E7638AA3BA75-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"F6640F96-5124-442D-B88E-E7638AA3BA75-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213601\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4780,3534,'_wp_attached_file','2021/06/F83979A9-C921-4E29-A2CE-3A3770BBC32C.jpg'),(4781,3534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/F83979A9-C921-4E29-A2CE-3A3770BBC32C.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-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:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"F83979A9-C921-4E29-A2CE-3A3770BBC32C-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469211226\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4782,3535,'_wp_attached_file','2021/06/11-1-scaled.jpg'),(4783,3536,'_wp_attached_file','2021/06/FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13.jpg'),(4784,3536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:48:\"2021/06/FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-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:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-800x450.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-850x540.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:540;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469213118\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4785,3535,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/11-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"11-1-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:17:\"11-1-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:16:\"11-1-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:16:\"11-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"11-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"11-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"11-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"11-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"11-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"11-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"11-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"11-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"11-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"11-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"11-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"11-1.jpg\";}'),(4786,3537,'_wp_attached_file','2021/06/12-1.jpg'),(4787,3537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/12-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"12-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"12-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"12-1-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:16:\"12-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"12-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"12-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"12-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"12-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"12-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"12-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"12-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"12-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"12-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4788,3538,'_wp_attached_file','2021/06/13-1-scaled.jpg'),(4789,3538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/13-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"13-1-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:17:\"13-1-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:16:\"13-1-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:16:\"13-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"13-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"13-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"13-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"13-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"13-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"13-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"13-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"13-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"13-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"13-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"13-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"13-1.jpg\";}'),(4790,3539,'_wp_attached_file','2021/06/14-1-scaled.jpg'),(4791,3539,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/14-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"14-1-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:17:\"14-1-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:16:\"14-1-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:16:\"14-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"14-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"14-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"14-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"14-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"14-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"14-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"14-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"14-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"14-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"14-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"14-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"14-1.jpg\";}'),(4792,3540,'_wp_attached_file','2021/06/15-1.jpg'),(4793,3540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/15-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"15-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"15-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"15-1-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:16:\"15-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"15-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"15-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"15-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"15-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"15-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"15-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"15-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"15-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"15-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4794,3541,'_wp_attached_file','2021/06/16-1-scaled.jpg'),(4795,3541,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/16-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"16-1-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:17:\"16-1-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:16:\"16-1-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:16:\"16-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"16-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"16-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"16-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"16-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"16-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"16-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"16-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"16-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"16-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"16-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"16-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"16-1.jpg\";}'),(4796,3542,'_wp_attached_file','2021/06/17-1.jpg'),(4797,3542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/17-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"17-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"17-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"17-1-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:16:\"17-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"17-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"17-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"17-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"17-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"17-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"17-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"17-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"17-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"17-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4798,3543,'_wp_attached_file','2021/06/18-1.jpg'),(4799,3543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/18-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"18-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"18-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"18-1-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:16:\"18-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"18-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"18-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"18-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"18-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"18-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"18-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"18-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"18-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"18-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4800,3544,'_wp_attached_file','2021/06/19-1.jpg'),(4801,3544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/19-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"19-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"19-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"19-1-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:16:\"19-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"19-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"19-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"19-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"19-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"19-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"19-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"19-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"19-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"19-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4802,3545,'_wp_attached_file','2021/06/20-1.jpg'),(4803,3545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/20-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"20-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"20-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"20-1-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:16:\"20-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"20-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"20-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"20-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"20-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"20-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"20-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"20-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"20-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"20-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4804,3546,'_wp_attached_file','2021/06/21-1-scaled.jpg'),(4805,3546,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1648;s:4:\"file\";s:23:\"2021/06/21-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"21-1-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"21-1-1024x659.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"21-1-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:16:\"21-1-768x495.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"21-1-1536x989.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:989;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"21-1-2048x1319.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1319;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"21-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"21-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"21-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"21-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"21-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"21-1-699x450.jpg\";s:5:\"width\";i:699;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"21-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"21-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"21-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"21-1.jpg\";}'),(4806,3547,'_wp_attached_file','2021/06/22-1.jpg'),(4807,3547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/22-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"22-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"22-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"22-1-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:16:\"22-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"22-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"22-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"22-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"22-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"22-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"22-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"22-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"22-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"22-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4808,3548,'_wp_attached_file','2021/06/23-1.jpg'),(4809,3548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/23-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"23-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"23-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"23-1-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:16:\"23-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"23-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"23-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"23-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"23-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"23-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"23-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"23-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"23-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"23-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4810,3549,'_wp_attached_file','2021/06/24-1-scaled.jpg'),(4811,3549,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1423;s:4:\"file\";s:23:\"2021/06/24-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"24-1-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"24-1-1024x569.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:569;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"24-1-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:16:\"24-1-768x427.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"24-1-1536x854.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"24-1-2048x1138.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"24-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"24-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"24-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"24-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"24-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"24-1-810x450.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"24-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"24-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"24-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"24-1.jpg\";}'),(4812,3550,'_wp_attached_file','2021/06/25-1-scaled.jpg'),(4813,3550,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:23:\"2021/06/25-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"25-1-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:17:\"25-1-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:16:\"25-1-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:16:\"25-1-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:18:\"25-1-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"25-1-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"25-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"25-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"25-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"25-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"25-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"25-1-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"25-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"25-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"25-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"25-1.jpg\";}'),(4814,3551,'_wp_attached_file','2021/06/26-1.jpg'),(4815,3551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/26-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"26-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"26-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"26-1-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:16:\"26-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"26-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"26-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"26-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"26-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"26-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"26-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"26-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"26-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"26-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4816,3552,'_wp_attached_file','2021/06/27-1-scaled.jpg'),(4817,3552,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1560;s:4:\"file\";s:23:\"2021/06/27-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"27-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"27-1-1024x624.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:624;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"27-1-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:16:\"27-1-768x468.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"27-1-1536x936.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:936;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"27-1-2048x1248.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"27-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"27-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"27-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"27-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"27-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"27-1-738x450.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"27-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"27-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"27-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"27-1.jpg\";}'),(4818,3553,'_wp_attached_file','2021/06/28-1-scaled.jpg'),(4819,3553,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1524;s:4:\"file\";s:23:\"2021/06/28-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"28-1-300x179.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"28-1-1024x610.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"28-1-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:16:\"28-1-768x457.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"28-1-1536x914.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:914;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"28-1-2048x1219.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"28-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"28-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"28-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"28-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"28-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"28-1-756x450.jpg\";s:5:\"width\";i:756;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"28-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"28-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"28-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"28-1.jpg\";}'),(4820,3554,'_wp_attached_file','2021/06/29-1-scaled.jpg'),(4821,3554,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1560;s:4:\"file\";s:23:\"2021/06/29-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"29-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"29-1-1024x624.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:624;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"29-1-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:16:\"29-1-768x468.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"29-1-1536x936.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:936;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"29-1-2048x1248.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"29-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"29-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"29-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"29-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"29-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"29-1-738x450.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"29-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"29-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"29-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"29-1.jpg\";}'),(4822,3555,'_wp_attached_file','2021/06/30-1-scaled.jpg'),(4823,3555,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/30-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"30-1-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:17:\"30-1-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:16:\"30-1-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:16:\"30-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"30-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"30-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"30-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"30-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"30-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"30-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"30-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"30-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"30-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"30-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"30-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"30-1.jpg\";}'),(4824,3556,'_wp_attached_file','2021/06/31-1.jpg'),(4825,3556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/31-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"31-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"31-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"31-1-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:16:\"31-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"31-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"31-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"31-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"31-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"31-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"31-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"31-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"31-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"31-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4826,3557,'_wp_attached_file','2021/06/32-1.jpg'),(4827,3557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:16:\"2021/06/32-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"32-1-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"32-1-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"32-1-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:16:\"32-1-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"32-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"32-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"32-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"32-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"32-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"32-1-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"32-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"32-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"32-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4828,3558,'_wp_attached_file','2021/06/34-scaled.jpg'),(4829,3558,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1661;s:4:\"file\";s:21:\"2021/06/34-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"34-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"34-1024x665.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"34-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:14:\"34-768x498.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"34-1536x997.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:997;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"34-2048x1329.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1329;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"34-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"34-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"34-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"34-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"34-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"34-693x450.jpg\";s:5:\"width\";i:693;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"34-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"34-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"34-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:6:\"34.jpg\";}'),(4830,3559,'_wp_attached_file','2021/06/35-scaled.jpg'),(4831,3559,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:21:\"2021/06/35-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"35-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:15:\"35-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:14:\"35-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:14:\"35-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:16:\"35-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:16:\"35-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"35-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"35-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"35-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"35-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"35-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"35-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"35-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"35-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"35-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:6:\"35.jpg\";}'),(4832,3560,'_wp_attached_file','2021/06/35-1-scaled.jpg'),(4833,3560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:23:\"2021/06/35-1-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"35-1-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:17:\"35-1-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:16:\"35-1-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:16:\"35-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"35-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:18:\"35-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"35-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"35-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"35-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"35-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"35-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"35-1-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"35-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"35-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"35-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:8:\"35-1.jpg\";}'),(4834,3561,'_wp_attached_file','2021/06/7377-pyramid-pl-web-3.jpg'),(4835,3561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:33:\"2021/06/7377-pyramid-pl-web-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-3-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:34:\"7377-pyramid-pl-web-3-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-3-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:33:\"7377-pyramid-pl-web-3-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-pl-web-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-3-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078690\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"22.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4836,3562,'_wp_attached_file','2021/06/7377-pyramid-pl-web-6.jpg'),(4837,3562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:33:\"2021/06/7377-pyramid-pl-web-6.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-6-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-6-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-6-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:33:\"7377-pyramid-pl-web-6-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-6-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-pl-web-6-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-6-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-6-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-6-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-6-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-6-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-6-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-6-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078773\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4838,3563,'_wp_attached_file','2021/06/7377-pyramid-pl-web-7.jpg'),(4839,3563,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:33:\"2021/06/7377-pyramid-pl-web-7.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-7-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:34:\"7377-pyramid-pl-web-7-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-7-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:33:\"7377-pyramid-pl-web-7-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-7-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-pl-web-7-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-7-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-7-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-7-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-7-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-7-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-7-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-7-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078803\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4840,3564,'_wp_attached_file','2021/06/7377-pyramid-pl-web-8.jpg'),(4841,3564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:33:\"2021/06/7377-pyramid-pl-web-8.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-8-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:34:\"7377-pyramid-pl-web-8-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-8-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:33:\"7377-pyramid-pl-web-8-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-8-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-pl-web-8-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-8-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-8-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-8-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-8-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-8-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-8-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-8-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078832\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4842,3565,'_wp_attached_file','2021/06/7377-pyramid-pl-web-9.jpg'),(4843,3565,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:33:\"2021/06/7377-pyramid-pl-web-9.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-9-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:34:\"7377-pyramid-pl-web-9-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-9-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:33:\"7377-pyramid-pl-web-9-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-9-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-pl-web-9-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-9-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-9-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-9-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-9-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-9-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-9-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-9-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078920\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"15.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4844,3566,'_wp_attached_file','2021/06/7377-pyramid-pl-web-101.jpg'),(4845,3566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:35:\"2021/06/7377-pyramid-pl-web-101.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-101-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"7377-pyramid-pl-web-101-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-101-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:35:\"7377-pyramid-pl-web-101-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"7377-pyramid-pl-web-101-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-pl-web-101-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-101-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-101-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-101-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-101-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-101-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-101-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-101-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078859\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"21.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4846,3567,'_wp_attached_file','2021/06/7377-pyramid-pl-web-10.jpg'),(4847,3567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-10.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-10-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:35:\"7377-pyramid-pl-web-10-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-10-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:34:\"7377-pyramid-pl-web-10-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-10-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-10-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-10-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-10-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-10-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-10-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-10-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-10-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-10-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620089558\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:1:\"2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4848,3568,'_wp_attached_file','2021/06/7377-pyramid-pl-web-11.jpg'),(4849,3568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-11.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-11-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-11-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-11-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:34:\"7377-pyramid-pl-web-11-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-11-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-11-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-11-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-11-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-11-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-11-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-11-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-11-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-11-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078976\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4850,3569,'_wp_attached_file','2021/06/7377-pyramid-pl-web-13.jpg'),(4851,3569,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-13.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-13-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-13-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-13-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:34:\"7377-pyramid-pl-web-13-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-13-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-13-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-13-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-13-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-13-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-13-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-13-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-13-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-13-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079045\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4852,3570,'_wp_attached_file','2021/06/7377-pyramid-pl-web-14.jpg'),(4853,3570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-14.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-14-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-14-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-14-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:34:\"7377-pyramid-pl-web-14-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-14-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-14-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-14-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-14-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-14-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-14-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-14-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-14-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-14-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079064\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4854,3571,'_wp_attached_file','2021/06/7377-pyramid-pl-web-15.jpg'),(4855,3571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-15.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-15-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:35:\"7377-pyramid-pl-web-15-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-15-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:34:\"7377-pyramid-pl-web-15-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-15-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-15-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-15-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-15-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-15-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-15-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-15-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-15-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-15-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079142\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"18.5\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4856,3572,'_wp_attached_file','2021/06/7377-pyramid-pl-web-16.jpg'),(4857,3572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-16.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-16-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:35:\"7377-pyramid-pl-web-16-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-16-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:34:\"7377-pyramid-pl-web-16-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-16-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-16-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-16-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-16-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-16-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-16-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-16-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-16-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-16-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079164\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"17.5\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4858,3573,'_wp_attached_file','2021/06/7377-pyramid-pl-web-17.jpg'),(4859,3573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-17.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-17-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:35:\"7377-pyramid-pl-web-17-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-17-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:34:\"7377-pyramid-pl-web-17-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-17-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-17-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-17-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-17-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-17-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-17-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-17-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-17-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-17-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079343\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:16:\"0.33333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4860,3574,'_wp_attached_file','2021/06/7377-pyramid-pl-web-18.jpg'),(4861,3574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-18.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-18-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:35:\"7377-pyramid-pl-web-18-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-18-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:34:\"7377-pyramid-pl-web-18-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-18-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-18-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-18-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-18-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-18-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-18-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-18-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-18-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-18-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079438\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"15.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4862,3575,'_wp_attached_file','2021/06/7377-pyramid-pl-web-19.jpg'),(4863,3575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-19.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-19-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-19-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-19-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:34:\"7377-pyramid-pl-web-19-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-19-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-19-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-19-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-19-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-19-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-19-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-19-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-19-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-19-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079506\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4864,3576,'_wp_attached_file','2021/06/7377-pyramid-pl-web-20.jpg'),(4865,3576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-20.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-20-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-20-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-20-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:34:\"7377-pyramid-pl-web-20-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-20-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-20-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-20-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-20-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-20-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-20-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-20-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-20-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-20-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079531\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4866,3577,'_wp_attached_file','2021/06/7377-pyramid-pl-web-21.jpg'),(4867,3577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-21.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-21-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:35:\"7377-pyramid-pl-web-21-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:34:\"7377-pyramid-pl-web-21-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:34:\"7377-pyramid-pl-web-21-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-21-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-21-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-21-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-21-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-21-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-21-674x450.jpg\";s:5:\"width\";i:674;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-21-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-21-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-21-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079834\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:2:\"13\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4868,3578,'_wp_attached_file','2021/06/7377-pyramid-pl-web-22.jpg'),(4869,3578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-22.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-22-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:35:\"7377-pyramid-pl-web-22-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-22-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:34:\"7377-pyramid-pl-web-22-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-22-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-22-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-22-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-22-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-22-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-22-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-22-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-22-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-22-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079920\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4870,3579,'_wp_attached_file','2021/06/7377-pyramid-pl-web-23.jpg'),(4871,3579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-23.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-23-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:35:\"7377-pyramid-pl-web-23-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-23-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:34:\"7377-pyramid-pl-web-23-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-23-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-23-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-23-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-23-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-23-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-23-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-23-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-23-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-23-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079947\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"16.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4872,3580,'_wp_attached_file','2021/06/7377-pyramid-pl-web-24.jpg'),(4873,3580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:853;s:6:\"height\";i:1280;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-24.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-24-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-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:35:\"7377-pyramid-pl-web-24-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-853x565.jpg\";s:5:\"width\";i:853;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-24-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-853x450.jpg\";s:5:\"width\";i:853;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-300x450.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-24-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620079979\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:16:\"0.33333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4874,3581,'_wp_attached_file','2021/06/7377-pyramid-pl-web-25.jpg'),(4875,3581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-25.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-25-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-25-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-25-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:34:\"7377-pyramid-pl-web-25-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-25-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-25-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-25-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-25-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-25-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-25-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-25-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-25-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-25-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080041\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4876,3582,'_wp_attached_file','2021/06/7377-pyramid-pl-web-26.jpg'),(4877,3582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-26.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-26-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:35:\"7377-pyramid-pl-web-26-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-26-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:34:\"7377-pyramid-pl-web-26-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-26-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-26-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-26-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-26-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-26-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-26-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-26-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-26-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-26-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080110\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:1:\"1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4878,3583,'_wp_attached_file','2021/06/7377-pyramid-pl-web-27.jpg'),(4879,3583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-27.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-27-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-27-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-27-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:34:\"7377-pyramid-pl-web-27-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-27-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-27-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-27-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-27-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-27-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-27-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-27-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-27-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-27-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080215\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"17.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4880,3584,'_wp_attached_file','2021/06/7377-pyramid-pl-web-28.jpg'),(4881,3584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-28.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-28-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:35:\"7377-pyramid-pl-web-28-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-28-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:34:\"7377-pyramid-pl-web-28-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-28-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-28-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-28-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-28-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-28-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-28-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-28-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-28-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-28-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080233\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"15\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.076923076923077\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4882,3585,'_wp_attached_file','2021/06/7377-pyramid-pl-web-29.jpg'),(4883,3585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-29.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-29-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:35:\"7377-pyramid-pl-web-29-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-29-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:34:\"7377-pyramid-pl-web-29-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-29-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-29-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-29-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-29-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-29-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-29-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-29-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-29-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-29-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080255\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4884,3586,'_wp_attached_file','2021/06/7377-pyramid-pl-web-30.jpg'),(4885,3586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-30.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-30-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:35:\"7377-pyramid-pl-web-30-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-30-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:34:\"7377-pyramid-pl-web-30-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-30-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-30-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-30-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-30-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-30-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-30-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-30-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-30-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-30-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080309\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4886,3587,'_wp_attached_file','2021/06/7377-pyramid-pl-web-31.jpg'),(4887,3587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-31.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-31-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-31-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-31-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:34:\"7377-pyramid-pl-web-31-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-31-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-31-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-31-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-31-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-31-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-31-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-31-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-31-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-31-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080386\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"15.5\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4888,3588,'_wp_attached_file','2021/06/7377-pyramid-pl-web-32.jpg'),(4889,3588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-32.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-32-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-32-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-32-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:34:\"7377-pyramid-pl-web-32-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-32-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-32-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-32-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-32-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-32-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-32-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-32-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-32-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-32-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080452\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4890,3589,'_wp_attached_file','2021/06/7377-pyramid-pl-web-33.jpg'),(4891,3589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-33.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-33-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:35:\"7377-pyramid-pl-web-33-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-33-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:34:\"7377-pyramid-pl-web-33-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-33-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-33-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-33-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-33-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-33-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-33-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-33-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-33-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-33-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080500\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4892,3590,'_wp_attached_file','2021/06/7377-pyramid-pl-web-34.jpg'),(4893,3590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-34.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-34-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:35:\"7377-pyramid-pl-web-34-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-34-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:34:\"7377-pyramid-pl-web-34-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-34-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-34-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-34-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-34-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-34-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-34-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-34-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-34-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-34-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080706\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4894,3591,'_wp_attached_file','2021/06/7377-pyramid-pl-web-35.jpg'),(4895,3591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-35.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-35-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:35:\"7377-pyramid-pl-web-35-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-35-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:34:\"7377-pyramid-pl-web-35-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-35-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-35-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-35-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-35-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-35-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-35-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-35-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-35-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-35-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080777\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4896,3592,'_wp_attached_file','2021/06/7377-pyramid-pl-web-36.jpg'),(4897,3592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-36.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-36-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-36-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-36-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:34:\"7377-pyramid-pl-web-36-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-36-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-36-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-36-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-36-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-36-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-36-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-36-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-36-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-36-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080889\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4898,3593,'_wp_attached_file','2021/06/7377-pyramid-pl-web-37.jpg'),(4899,3593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-37.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-37-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:35:\"7377-pyramid-pl-web-37-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-37-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:34:\"7377-pyramid-pl-web-37-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-37-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-37-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-37-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-37-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-37-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-37-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-37-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-37-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-37-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080949\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:16:\"0.33333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4900,3594,'_wp_attached_file','2021/06/7377-pyramid-pl-web-38.jpg'),(4901,3594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-38.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-38-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:35:\"7377-pyramid-pl-web-38-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-38-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:34:\"7377-pyramid-pl-web-38-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-38-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-38-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-38-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-38-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-38-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-38-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-38-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-38-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-38-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620080967\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"15.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4902,3595,'_wp_attached_file','2021/06/7377-pyramid-pl-web-48.jpg'),(4903,3595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-48.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-48-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:35:\"7377-pyramid-pl-web-48-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-48-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:34:\"7377-pyramid-pl-web-48-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-48-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-48-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-48-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-48-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-48-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-48-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-48-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-48-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-48-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078584\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4904,3596,'_wp_attached_file','2021/06/7377-pyramid-pl-web-49.jpg'),(4905,3596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-49.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-49-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-49-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-49-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:34:\"7377-pyramid-pl-web-49-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-49-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-49-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-49-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-49-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-49-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-49-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-49-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-49-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-49-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620089690\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"2.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4906,3597,'_wp_attached_file','2021/06/7377-pyramid-pl-web-50.jpg'),(4907,3597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:34:\"2021/06/7377-pyramid-pl-web-50.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-50-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-50-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-50-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:34:\"7377-pyramid-pl-web-50-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"7377-pyramid-pl-web-50-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:32:\"7377-pyramid-pl-web-50-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-50-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-50-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-50-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-50-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-50-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-50-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-pl-web-50-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620089860\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:1:\"5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4908,3598,'_wp_attached_file','2021/06/7377-pyramid-p-web-37.jpg'),(4909,3598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:33:\"2021/06/7377-pyramid-p-web-37.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-37-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-37-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-37-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:33:\"7377-pyramid-p-web-37-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-37-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-p-web-37-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-37-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-37-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-37-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-37-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-37-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-37-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-37-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620089918\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"15.5\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:1:\"3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4910,3599,'_wp_attached_file','2021/06/7377-pyramid-p-web-38.jpg'),(4911,3599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:33:\"2021/06/7377-pyramid-p-web-38.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-38-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:34:\"7377-pyramid-p-web-38-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-38-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:33:\"7377-pyramid-p-web-38-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-38-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-p-web-38-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-38-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-38-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-38-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-38-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-38-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-38-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-38-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620089605\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"1.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4912,3600,'_wp_attached_file','2021/06/7377-pyramid-p-web-39.jpg'),(4913,3600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:33:\"2021/06/7377-pyramid-p-web-39.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-39-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-39-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-39-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:33:\"7377-pyramid-p-web-39-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-39-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-p-web-39-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-39-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-39-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-39-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-39-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-39-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-39-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-39-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620081215\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4914,3601,'_wp_attached_file','2021/06/7377-pyramid-p-web-40.jpg'),(4915,3601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:33:\"2021/06/7377-pyramid-p-web-40.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-40-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-40-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-40-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:33:\"7377-pyramid-p-web-40-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-40-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-p-web-40-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-40-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-40-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-40-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-40-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-40-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-40-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-40-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620089823\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:1:\"1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4916,3602,'_wp_attached_file','2021/06/7377-pyramid-p-web-41.jpg'),(4917,3602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:833;s:4:\"file\";s:33:\"2021/06/7377-pyramid-p-web-41.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-41-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-41-1024x666.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:666;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-41-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:33:\"7377-pyramid-p-web-41-768x500.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-41-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-p-web-41-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-41-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-41-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-41-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-41-691x450.jpg\";s:5:\"width\";i:691;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-41-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-41-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-41-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078748\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"14.5\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4918,3603,'_wp_attached_file','2021/06/7377-pyramid-p-web-42.jpg'),(4919,3603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:851;s:4:\"file\";s:33:\"2021/06/7377-pyramid-p-web-42.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-42-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-42-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-42-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:33:\"7377-pyramid-p-web-42-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-42-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-p-web-42-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-42-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-42-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-42-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-42-677x450.jpg\";s:5:\"width\";i:677;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-42-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-42-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-42-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620089721\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"1.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4920,3604,'_wp_attached_file','2021/06/7377-pyramid-p-web-45.jpg'),(4921,3604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:852;s:4:\"file\";s:33:\"2021/06/7377-pyramid-p-web-45.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-45-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:34:\"7377-pyramid-p-web-45-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-45-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:33:\"7377-pyramid-p-web-45-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-45-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-p-web-45-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-45-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-45-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-45-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-45-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-45-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-45-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-45-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078884\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"14\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4922,3605,'_wp_attached_file','2021/06/7377-pyramid-p-web-46.jpg'),(4923,3605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:860;s:4:\"file\";s:33:\"2021/06/7377-pyramid-p-web-46.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-46-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-46-1024x688.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-46-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:33:\"7377-pyramid-p-web-46-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"7377-pyramid-p-web-46-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:31:\"7377-pyramid-p-web-46-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-46-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-46-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-46-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-46-670x450.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-46-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-46-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:33:\"7377-pyramid-p-web-46-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON Z 6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1620078724\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4924,3340,'_thumbnail_id','3598'),(4925,3339,'_thumbnail_id','3524'),(4926,3338,'_thumbnail_id','3463'),(4927,3335,'_thumbnail_id','3439'),(4928,3606,'_wp_attached_file','2021/06/1-2.jpg'),(4929,3606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:413;s:4:\"file\";s:15:\"2021/06/1-2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-2-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:15:\"1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"1-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"1-2-550x360.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"1-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"1-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4930,3607,'_wp_attached_file','2021/06/2-2.jpg'),(4931,3607,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:413;s:4:\"file\";s:15:\"2021/06/2-2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-2-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:15:\"2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"2-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"2-2-550x360.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"2-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"2-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4932,3608,'_wp_attached_file','2021/06/3-2.jpg'),(4933,3608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:413;s:4:\"file\";s:15:\"2021/06/3-2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-2-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:15:\"3-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"3-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"3-2-550x360.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"3-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"3-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4934,3609,'_wp_attached_file','2021/06/4-2.jpg'),(4935,3609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:15:\"2021/06/4-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"4-2-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:15:\"4-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"4-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"4-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"4-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"4-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"4-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"4-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"4-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"4-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4936,3610,'_wp_attached_file','2021/06/5-2.jpg'),(4937,3610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:15:\"2021/06/5-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-2-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:15:\"5-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"5-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"5-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"5-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"5-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"5-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"5-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"5-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"5-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4938,3611,'_wp_attached_file','2021/06/6-2.jpg'),(4939,3611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:15:\"2021/06/6-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"6-2-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:15:\"6-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"6-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"6-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"6-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"6-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"6-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"6-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"6-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"6-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4940,3612,'_wp_attached_file','2021/06/7-2.jpg'),(4941,3612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:15:\"2021/06/7-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"7-2-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:15:\"7-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"7-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"7-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"7-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"7-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"7-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"7-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"7-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"7-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4942,3613,'_wp_attached_file','2021/06/8-2.jpg'),(4943,3613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:15:\"2021/06/8-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8-2-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:15:\"8-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"8-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"8-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"8-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"8-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"8-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"8-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"8-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"8-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4944,3614,'_wp_attached_file','2021/06/9-2.jpg'),(4945,3614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:15:\"2021/06/9-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-2-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:15:\"9-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"9-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"9-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"9-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"9-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"9-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"9-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"9-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"9-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4946,3615,'_wp_attached_file','2021/06/10-2.jpg'),(4947,3615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/10-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"10-2-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:16:\"10-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"10-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"10-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"10-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"10-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"10-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"10-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"10-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"10-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4948,3616,'_wp_attached_file','2021/06/11-2.jpg'),(4949,3616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/11-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"11-2-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:16:\"11-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"11-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"11-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"11-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"11-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"11-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"11-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"11-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"11-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4950,3617,'_wp_attached_file','2021/06/12-2.jpg'),(4951,3617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/12-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"12-2-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:16:\"12-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"12-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"12-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"12-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"12-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"12-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"12-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"12-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"12-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4952,3618,'_wp_attached_file','2021/06/13-2.jpg'),(4953,3618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/13-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"13-2-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:16:\"13-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"13-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"13-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"13-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"13-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"13-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"13-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"13-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"13-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4954,3619,'_wp_attached_file','2021/06/14-2.jpg');
INSERT INTO `wpew_postmeta` VALUES (4955,3619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/14-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"14-2-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:16:\"14-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"14-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"14-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"14-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"14-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"14-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"14-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"14-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"14-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4956,3620,'_wp_attached_file','2021/06/15-2.jpg'),(4957,3620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/15-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"15-2-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:16:\"15-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"15-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"15-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"15-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"15-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"15-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"15-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"15-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"15-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4958,3621,'_wp_attached_file','2021/06/16-2.jpg'),(4959,3621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/16-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"16-2-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:16:\"16-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"16-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"16-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"16-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"16-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"16-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"16-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"16-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"16-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4960,3622,'_wp_attached_file','2021/06/17-2.jpg'),(4961,3622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/17-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"17-2-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:16:\"17-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"17-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"17-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"17-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"17-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"17-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"17-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"17-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"17-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4962,3623,'_wp_attached_file','2021/06/18-2.jpg'),(4963,3623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/18-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"18-2-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:16:\"18-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"18-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"18-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"18-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"18-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"18-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"18-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"18-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"18-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4964,3624,'_wp_attached_file','2021/06/19-2.jpg'),(4965,3624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/19-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"19-2-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:16:\"19-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"19-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"19-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"19-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"19-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"19-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"19-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"19-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"19-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4966,3625,'_wp_attached_file','2021/06/20-2.jpg'),(4967,3625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/20-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"20-2-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:16:\"20-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"20-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"20-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"20-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"20-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"20-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"20-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"20-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"20-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4968,3626,'_wp_attached_file','2021/06/21-2.jpg'),(4969,3626,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/21-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"21-2-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:16:\"21-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"21-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"21-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"21-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"21-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"21-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"21-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"21-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"21-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4970,3627,'_wp_attached_file','2021/06/22-2.jpg'),(4971,3627,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/22-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"22-2-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:16:\"22-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"22-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"22-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"22-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"22-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"22-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"22-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"22-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"22-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4972,3628,'_wp_attached_file','2021/06/23-2.jpg'),(4973,3628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/23-2.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"23-2-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:16:\"23-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"23-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"23-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"23-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"23-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"23-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"23-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"23-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"23-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"23-2.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;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:{}}}'),(4974,3629,'_wp_attached_file','2021/06/24-2.jpg'),(4975,3629,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/24-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"24-2-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:16:\"24-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"24-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"24-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"24-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"24-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"24-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"24-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"24-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"24-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4976,3630,'_wp_attached_file','2021/06/25-2.jpg'),(4977,3630,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:576;s:4:\"file\";s:16:\"2021/06/25-2.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"25-2-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:16:\"25-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"25-2-768x565.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"25-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"25-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"25-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"25-2-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"25-2-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"25-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"25-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4978,3337,'_thumbnail_id','3628'),(4979,3631,'_wp_attached_file','2021/06/5-3.jpg'),(4980,3631,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:960;s:4:\"file\";s:15:\"2021/06/5-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-3-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:16:\"5-3-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:15:\"5-3-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:15:\"5-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"5-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"5-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"5-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"5-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"5-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"5-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"5-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"5-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"5-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4981,3632,'_wp_attached_file','2021/06/8-3.jpg'),(4982,3632,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:960;s:4:\"file\";s:15:\"2021/06/8-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8-3-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:16:\"8-3-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:15:\"8-3-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:15:\"8-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"8-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"8-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"8-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"8-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"8-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"8-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"8-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"8-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"8-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4983,3633,'_wp_attached_file','2021/06/19-3.jpg'),(4984,3633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1427;s:6:\"height\";i:960;s:4:\"file\";s:16:\"2021/06/19-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"19-3-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"19-3-1024x689.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:689;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"19-3-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:16:\"19-3-768x517.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"19-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"19-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"19-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"19-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"19-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"19-3-669x450.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"19-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"19-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"19-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4985,3634,'_wp_attached_file','2021/06/0001-2-scaled.jpg'),(4986,3634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0001-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0001-2-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:19:\"0001-2-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:18:\"0001-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:18:\"0001-2-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:20:\"0001-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0001-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0001-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0001-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0001-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0001-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0001-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0001-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0001-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0001-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0001-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615897725\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0001-2.jpg\";}'),(4987,3635,'_wp_attached_file','2021/06/0002-2-scaled.jpg'),(4988,3636,'_wp_attached_file','2021/06/1-3.jpg'),(4989,3636,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:694;s:4:\"file\";s:15:\"2021/06/1-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-3-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-3-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:15:\"1-3-768x523.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"1-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"1-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"1-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"1-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"1-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"1-3-661x450.jpg\";s:5:\"width\";i:661;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"1-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"1-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"1-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4990,3635,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0002-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0002-2-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:19:\"0002-2-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:18:\"0002-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:18:\"0002-2-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:20:\"0002-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0002-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0002-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0002-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0002-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0002-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0002-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0002-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0002-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0002-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0002-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615897926\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0002-2.jpg\";}'),(4991,3637,'_wp_attached_file','2021/06/2-3.jpg'),(4992,3637,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:15:\"2021/06/2-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-3-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:15:\"2-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"2-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"2-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"2-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"2-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"2-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"2-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"2-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"2-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"2-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4993,3638,'_wp_attached_file','2021/06/3-3.jpg'),(4994,3638,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:15:\"2021/06/3-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"3-3-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:15:\"3-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"3-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"3-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"3-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"3-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"3-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"3-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"3-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"3-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"3-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4995,3639,'_wp_attached_file','2021/06/4-3.jpg'),(4996,3639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:15:\"2021/06/4-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"4-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"4-3-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:15:\"4-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"4-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"4-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"4-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"4-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"4-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"4-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"4-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"4-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"4-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4997,3640,'_wp_attached_file','2021/06/5-4.jpg'),(4998,3640,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:15:\"2021/06/5-4.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"5-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"5-4-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:15:\"5-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"5-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"5-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"5-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"5-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"5-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"5-4-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"5-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"5-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"5-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(4999,3641,'_wp_attached_file','2021/06/6-3.jpg'),(5000,3641,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:15:\"2021/06/6-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"6-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"6-3-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:15:\"6-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"6-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"6-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"6-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"6-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"6-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"6-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"6-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"6-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"6-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5001,3642,'_wp_attached_file','2021/06/0003-2-scaled.jpg'),(5002,3642,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0003-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0003-2-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:19:\"0003-2-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:18:\"0003-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:18:\"0003-2-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:20:\"0003-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0003-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0003-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0003-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0003-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0003-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0003-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0003-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0003-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0003-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0003-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898415\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0003-2.jpg\";}'),(5003,3643,'_wp_attached_file','2021/06/7-3.jpg'),(5004,3643,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:15:\"2021/06/7-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"7-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"7-3-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:15:\"7-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"7-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"7-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"7-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"7-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"7-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"7-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"7-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"7-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"7-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5005,3644,'_wp_attached_file','2021/06/8-4.jpg'),(5006,3644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:668;s:4:\"file\";s:15:\"2021/06/8-4.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8-4-300x196.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"8-4-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:15:\"8-4-768x503.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:503;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"8-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"8-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"8-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"8-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"8-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"8-4-687x450.jpg\";s:5:\"width\";i:687;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"8-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"8-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"8-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5007,3645,'_wp_attached_file','2021/06/9-3.jpg'),(5008,3645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:15:\"2021/06/9-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9-3-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:15:\"9-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"9-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"9-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"9-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"9-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"9-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"9-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"9-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"9-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"9-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5009,3646,'_wp_attached_file','2021/06/10-3.jpg'),(5010,3646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/10-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"10-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"10-3-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:16:\"10-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"10-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"10-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"10-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"10-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"10-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"10-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"10-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"10-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"10-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5011,3647,'_wp_attached_file','2021/06/11-3.jpg'),(5012,3647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/11-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"11-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"11-3-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:16:\"11-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"11-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"11-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"11-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"11-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"11-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"11-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"11-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"11-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"11-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5013,3648,'_wp_attached_file','2021/06/0004-2-scaled.jpg'),(5014,3648,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0004-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0004-2-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:19:\"0004-2-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:18:\"0004-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:18:\"0004-2-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:20:\"0004-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0004-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0004-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0004-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0004-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0004-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0004-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0004-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0004-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0004-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0004-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898465\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0004-2.jpg\";}'),(5015,3649,'_wp_attached_file','2021/06/12-3.jpg'),(5016,3649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/12-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"12-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"12-3-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:16:\"12-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"12-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"12-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"12-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"12-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"12-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"12-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"12-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"12-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"12-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5017,3650,'_wp_attached_file','2021/06/13-3.jpg'),(5018,3650,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/13-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"13-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"13-3-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:16:\"13-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"13-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"13-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"13-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"13-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"13-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"13-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"13-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"13-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"13-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5019,3651,'_wp_attached_file','2021/06/14-3.jpg'),(5020,3651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/14-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"14-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"14-3-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:16:\"14-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"14-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"14-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"14-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"14-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"14-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"14-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"14-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"14-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"14-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5021,3652,'_wp_attached_file','2021/06/15-3.jpg'),(5022,3652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/15-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"15-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"15-3-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:16:\"15-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"15-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"15-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"15-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"15-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"15-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"15-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"15-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"15-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"15-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5023,3653,'_wp_attached_file','2021/06/16-3.jpg'),(5024,3653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/16-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"16-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"16-3-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:16:\"16-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"16-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"16-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"16-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"16-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"16-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"16-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"16-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"16-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"16-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5025,3654,'_wp_attached_file','2021/06/17-3.jpg'),(5026,3654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/17-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"17-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"17-3-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:16:\"17-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"17-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"17-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"17-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"17-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"17-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"17-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"17-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"17-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"17-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5027,3655,'_wp_attached_file','2021/06/0005-2-scaled.jpg'),(5028,3656,'_wp_attached_file','2021/06/18-3.jpg'),(5029,3656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/18-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"18-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"18-3-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:16:\"18-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"18-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"18-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"18-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"18-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"18-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"18-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"18-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"18-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"18-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5030,3655,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0005-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0005-2-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:19:\"0005-2-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:18:\"0005-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:18:\"0005-2-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:20:\"0005-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0005-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0005-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0005-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0005-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0005-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0005-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0005-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0005-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0005-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0005-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898503\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0005-2.jpg\";}'),(5031,3657,'_wp_attached_file','2021/06/19-4.jpg'),(5032,3657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/19-4.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"19-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"19-4-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:16:\"19-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"19-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"19-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"19-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"19-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"19-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"19-4-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"19-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"19-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"19-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5033,3658,'_wp_attached_file','2021/06/20-3.jpg'),(5034,3658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1020;s:6:\"height\";i:680;s:4:\"file\";s:16:\"2021/06/20-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"20-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"20-3-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:16:\"20-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"20-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"20-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"20-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"20-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"20-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"20-3-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"20-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"20-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"20-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;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:{}}}'),(5035,3659,'_wp_attached_file','2021/06/0006-2-scaled.jpg'),(5036,3659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0006-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0006-2-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:19:\"0006-2-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:18:\"0006-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:18:\"0006-2-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:20:\"0006-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0006-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0006-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0006-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0006-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0006-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0006-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0006-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0006-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0006-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0006-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898542\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0006-2.jpg\";}'),(5037,3660,'_wp_attached_file','2021/06/0007-2-scaled.jpg'),(5038,3660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0007-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0007-2-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:19:\"0007-2-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:18:\"0007-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:18:\"0007-2-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:20:\"0007-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0007-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0007-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0007-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0007-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0007-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0007-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0007-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0007-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0007-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0007-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898583\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0007-2.jpg\";}'),(5039,3661,'_wp_attached_file','2021/06/0008-2-scaled.jpg'),(5040,3661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0008-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0008-2-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:19:\"0008-2-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:18:\"0008-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:18:\"0008-2-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:20:\"0008-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0008-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0008-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0008-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0008-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0008-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0008-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0008-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0008-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0008-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0008-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898625\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0008-2.jpg\";}'),(5041,3662,'_wp_attached_file','2021/06/0009-2-scaled.jpg'),(5042,3662,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0009-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0009-2-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:19:\"0009-2-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:18:\"0009-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:18:\"0009-2-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:20:\"0009-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0009-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0009-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0009-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0009-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0009-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0009-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0009-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0009-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0009-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0009-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898650\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0009-2.jpg\";}'),(5043,3663,'_wp_attached_file','2021/06/0010-2-scaled.jpg'),(5044,3663,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0010-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0010-2-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:19:\"0010-2-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:18:\"0010-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:18:\"0010-2-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:20:\"0010-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0010-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0010-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0010-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0010-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0010-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0010-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0010-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0010-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0010-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0010-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898692\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0010-2.jpg\";}'),(5045,3664,'_wp_attached_file','2021/06/0011-2-scaled.jpg'),(5046,3664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0011-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0011-2-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:19:\"0011-2-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:18:\"0011-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:18:\"0011-2-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:20:\"0011-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0011-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0011-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0011-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0011-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0011-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0011-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0011-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0011-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0011-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0011-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898727\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0011-2.jpg\";}'),(5047,3665,'_wp_attached_file','2021/06/0012-2-scaled.jpg'),(5048,3665,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0012-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0012-2-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:19:\"0012-2-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:18:\"0012-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:18:\"0012-2-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:20:\"0012-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0012-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0012-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0012-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0012-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0012-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0012-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0012-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0012-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0012-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0012-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898755\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:16:\"0.16666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0012-2.jpg\";}'),(5049,3666,'_wp_attached_file','2021/06/0013-2-scaled.jpg'),(5050,3666,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0013-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0013-2-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:19:\"0013-2-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:18:\"0013-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:18:\"0013-2-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:20:\"0013-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0013-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0013-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0013-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0013-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0013-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0013-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0013-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0013-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0013-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0013-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898798\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0013-2.jpg\";}'),(5051,3667,'_wp_attached_file','2021/06/0014-2-scaled.jpg'),(5052,3667,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0014-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0014-2-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:19:\"0014-2-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:18:\"0014-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:18:\"0014-2-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:20:\"0014-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0014-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0014-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0014-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0014-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0014-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0014-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0014-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0014-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0014-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0014-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898850\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0014-2.jpg\";}'),(5053,3668,'_wp_attached_file','2021/06/0015-2-scaled.jpg'),(5054,3668,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0015-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0015-2-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:19:\"0015-2-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:18:\"0015-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:18:\"0015-2-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:20:\"0015-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0015-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0015-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0015-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0015-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0015-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0015-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0015-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0015-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0015-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0015-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898879\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0015-2.jpg\";}'),(5055,3343,'_thumbnail_id','3628'),(5056,3669,'_wp_attached_file','2021/06/0016-2-scaled.jpg'),(5057,3669,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0016-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0016-2-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:19:\"0016-2-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:18:\"0016-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:18:\"0016-2-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:20:\"0016-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0016-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0016-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0016-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0016-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0016-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0016-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0016-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0016-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0016-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0016-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898905\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0016-2.jpg\";}'),(5058,3670,'_wp_attached_file','2021/06/0017-2-scaled.jpg'),(5059,3670,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0017-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0017-2-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:19:\"0017-2-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:18:\"0017-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:18:\"0017-2-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:20:\"0017-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0017-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0017-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0017-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0017-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0017-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0017-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0017-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0017-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0017-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0017-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898927\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0017-2.jpg\";}'),(5060,3671,'_wp_attached_file','2021/06/0018-2-scaled.jpg'),(5061,3671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0018-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0018-2-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:19:\"0018-2-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:18:\"0018-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:18:\"0018-2-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:20:\"0018-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0018-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0018-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0018-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0018-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0018-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0018-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0018-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0018-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0018-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0018-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615898993\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.5\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0018-2.jpg\";}'),(5062,3672,'_wp_attached_file','2021/06/0019-2-scaled.jpg'),(5063,3672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0019-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0019-2-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:19:\"0019-2-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:18:\"0019-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:18:\"0019-2-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:20:\"0019-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0019-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0019-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0019-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0019-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0019-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0019-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0019-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0019-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0019-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0019-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899041\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.2\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0019-2.jpg\";}'),(5064,3673,'_wp_attached_file','2021/06/0020-2-scaled.jpg'),(5065,3673,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0020-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0020-2-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:19:\"0020-2-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:18:\"0020-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:18:\"0020-2-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:20:\"0020-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0020-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0020-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0020-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0020-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0020-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0020-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0020-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0020-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0020-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0020-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899084\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.6\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0020-2.jpg\";}'),(5066,3674,'_wp_attached_file','2021/06/0021-2-scaled.jpg'),(5067,3674,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0021-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0021-2-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:19:\"0021-2-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:18:\"0021-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:18:\"0021-2-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:20:\"0021-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0021-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0021-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0021-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0021-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0021-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0021-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0021-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0021-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0021-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0021-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899117\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0021-2.jpg\";}'),(5068,3675,'_wp_attached_file','2021/06/0022-2-scaled.jpg'),(5069,3675,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0022-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0022-2-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:19:\"0022-2-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:18:\"0022-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:18:\"0022-2-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:20:\"0022-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0022-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0022-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0022-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0022-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0022-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0022-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0022-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0022-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0022-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0022-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899165\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0022-2.jpg\";}'),(5070,3676,'_wp_attached_file','2021/06/0023-2-scaled.jpg'),(5071,3676,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0023-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0023-2-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:19:\"0023-2-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:18:\"0023-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:18:\"0023-2-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:20:\"0023-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0023-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0023-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0023-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0023-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0023-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0023-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0023-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0023-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0023-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0023-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899199\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0023-2.jpg\";}'),(5072,3677,'_wp_attached_file','2021/06/0024-2-scaled.jpg'),(5073,3677,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0024-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0024-2-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:19:\"0024-2-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:18:\"0024-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:18:\"0024-2-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:20:\"0024-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0024-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0024-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0024-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0024-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0024-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0024-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0024-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0024-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0024-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0024-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899264\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0024-2.jpg\";}'),(5074,3678,'_wp_attached_file','2021/06/0025-2-scaled.jpg'),(5075,3678,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0025-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0025-2-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:19:\"0025-2-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:18:\"0025-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:18:\"0025-2-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:20:\"0025-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0025-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0025-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0025-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0025-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0025-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0025-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0025-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0025-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0025-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0025-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899315\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0025-2.jpg\";}'),(5076,3679,'_wp_attached_file','2021/06/0026-2-scaled.jpg'),(5077,3679,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0026-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0026-2-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:19:\"0026-2-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:18:\"0026-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:18:\"0026-2-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:20:\"0026-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0026-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0026-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0026-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0026-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0026-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0026-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0026-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0026-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0026-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0026-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899375\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0026-2.jpg\";}'),(5078,3680,'_wp_attached_file','2021/06/0027-2-scaled.jpg'),(5079,3680,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1720;s:4:\"file\";s:25:\"2021/06/0027-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0027-2-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"0027-2-1024x688.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:688;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"0027-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:18:\"0027-2-768x516.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"0027-2-1536x1032.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1032;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0027-2-2048x1376.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1376;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0027-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0027-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0027-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0027-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0027-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0027-2-670x450.jpg\";s:5:\"width\";i:670;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0027-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0027-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0027-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899396\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"27\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0027-2.jpg\";}'),(5080,3681,'_wp_attached_file','2021/06/0028-2-scaled.jpg'),(5081,3681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:25:\"2021/06/0028-2-scaled.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"0028-2-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:19:\"0028-2-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:18:\"0028-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:18:\"0028-2-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:20:\"0028-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:20:\"0028-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"0028-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:16:\"0028-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:18:\"0028-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:18:\"0028-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:18:\"0028-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:18:\"0028-2-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:18:\"0028-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:18:\"0028-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:18:\"0028-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Hagai Aharon\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1615899708\";s:9:\"copyright\";s:15:\"© Hagai Aharon\";s:12:\"focal_length\";s:2:\"17\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:10:\"0028-2.jpg\";}'),(5082,3341,'_thumbnail_id','3636'),(5083,3342,'_thumbnail_id','3634'),(7020,3263,'eg_sources_html5_mp4',''),(7021,3263,'eg_sources_youtube',''),(6269,3297,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/0002-1-615x450.jpg\",615,450,true]}'),(5085,3335,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\",615,445,true]}'),(5086,3296,'stm_post_views','4'),(5087,3296,'stm_day_15','1'),(5088,3296,'stm_month_06','4'),(6270,3334,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0010-615x450.jpg\",615,450,true]}'),(6980,2790,'eg_sources_html5_mp4',''),(7000,3225,'eg_sources_html5_mp4',''),(7001,3225,'eg_sources_youtube',''),(7002,3225,'eg_sources_vimeo',''),(7022,3263,'eg_sources_vimeo',''),(5092,2779,'stm_day_15','4'),(5093,3335,'stm_post_views','2'),(5094,3335,'stm_day_15','1'),(5095,3335,'stm_month_06','1'),(5096,3343,'stm_day_16','19'),(5097,3682,'_form','<div class=\"content-column one_half\"><div style=\"padding:\"10;\"><label> \n    [text Name placeholder \"Name\"] </label></div></div>\n \n<div class=\"content-column one_half last_column\"><label> \n     [email email placeholder \"Email\"] </label></div><div class=\"clear_column\"></div>\n\n<div class=\"content-column one_half\"><div style=\"padding:\"10;\"><label>\n    [tel Phone placeholder \"Phone Number\"] </label></div></div>\n \n<div class=\"content-column one_half last_column\"><label> \n    [number Guest min:1 max:20 placeholder \"Guest\"] </label></div><div class=\"clear_column\"></div>\n \n<div class=\"content-column one_half\"><div style=\"padding:\"10;\"><label> Check-in date:\n    [date Datein min:2021-06-18 max:2022-06-18 placeholder \"dd/mm/yyyy\"] </label></div></div>\n \n<div class=\"content-column one_half last_column\"><label> Check-out date: [date Date min:2021-06-18 max:2022-06-18 placeholder \"dd/mm/yyyy\"]\n     </label></div><div class=\"clear_column\"></div>\n\n<label> Please select any additional luxury service you are interested in? \n    [select Service include_blank \"Exotic Car Rental\" \"Private Airfare\" \"Inhouse Chef\" \"Nightlife\" \"Other Activities\"] </label>\n \n[submit \"Check Availability\"]'),(5098,3682,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:43:\"[_site_title] <wordpress@om7717.dev34.info>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(5099,3682,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:43:\"[_site_title] <wordpress@om7717.dev34.info>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(5100,3682,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(5101,3682,'_additional_settings',''),(5102,3682,'_locale','en_US'),(5103,2642,'stm_day_16','2'),(5104,2642,'stm_month_06','14'),(5114,3682,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(5115,3343,'stm_day_17','2'),(5116,2769,'stm_day_17','1'),(5117,2769,'stm_month_06','2'),(5129,3685,'_wp_attached_file','2021/06/2-4.jpg'),(5130,3685,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:392;s:4:\"file\";s:15:\"2021/06/2-4.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"2-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"2-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"2-4-615x392.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"2-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"2-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"2-4.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"2-4.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;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:10:\"1617016502\";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:{}}}'),(5131,3686,'_wp_attached_file','2021/06/2H.jpg'),(5132,3686,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:391;s:4:\"file\";s:14:\"2021/06/2H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"2H-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"2H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"2H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"2H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"2H-615x391.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"2H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"2H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"2H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"2H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:391;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:10:\"1617016082\";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:{}}}'),(5133,3687,'_wp_attached_file','2021/06/3H.jpg'),(5134,3687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:393;s:4:\"file\";s:14:\"2021/06/3H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"3H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"3H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"3H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"3H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"3H-615x393.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"3H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"3H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"3H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"3H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;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:10:\"1617018181\";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:{}}}'),(5135,3688,'_wp_attached_file','2021/06/4H.jpg'),(5136,3688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:392;s:4:\"file\";s:14:\"2021/06/4H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"4H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"4H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"4H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"4H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"4H-615x392.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"4H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"4H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"4H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"4H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;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:10:\"1617018164\";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:{}}}'),(5137,3689,'_wp_attached_file','2021/06/5H.jpg'),(5138,3689,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:395;s:4:\"file\";s:14:\"2021/06/5H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"5H-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"5H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"5H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"5H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"5H-615x395.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"5H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"5H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"5H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:395;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"5H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:395;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:10:\"1617018164\";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:{}}}'),(5139,3690,'_wp_attached_file','2021/06/6H.jpg'),(5140,3690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:390;s:4:\"file\";s:14:\"2021/06/6H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"6H-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"6H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"6H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"6H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"6H-615x390.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"6H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"6H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"6H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:390;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"6H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:390;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:10:\"1617018164\";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:{}}}'),(5141,3691,'_wp_attached_file','2021/06/7H.jpg'),(5142,3691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:392;s:4:\"file\";s:14:\"2021/06/7H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"7H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"7H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"7H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"7H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"7H-615x392.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"7H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"7H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"7H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"7H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;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:10:\"1617016577\";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:{}}}'),(5143,3692,'_wp_attached_file','2021/06/8H.jpg'),(5144,3692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:392;s:4:\"file\";s:14:\"2021/06/8H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"8H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"8H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"8H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"8H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"8H-615x392.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"8H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"8H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"8H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"8H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;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:10:\"1617016502\";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:{}}}'),(5145,3693,'_wp_attached_file','2021/06/9H.jpg'),(5146,3693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:392;s:4:\"file\";s:14:\"2021/06/9H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"9H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"9H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"9H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"9H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"9H-615x392.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"9H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"9H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"9H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:6:\"9H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:392;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:10:\"1617018165\";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:{}}}'),(5147,3694,'_wp_attached_file','2021/06/10H.jpg'),(5148,3694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:393;s:4:\"file\";s:15:\"2021/06/10H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"10H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"10H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"10H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"10H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"10H-615x393.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"10H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"10H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"10H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"10H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;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:10:\"1617016652\";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:{}}}'),(5149,3695,'_wp_attached_file','2021/06/11H.jpg'),(5150,3695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:393;s:4:\"file\";s:15:\"2021/06/11H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"11H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"11H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"11H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"11H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"11H-615x393.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"11H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"11H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"11H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"11H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;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:10:\"1617016657\";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:{}}}'),(5151,3696,'_wp_attached_file','2021/06/12H.jpg'),(5152,3696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:393;s:4:\"file\";s:15:\"2021/06/12H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"12H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"12H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"12H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"12H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"12H-615x393.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"12H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"12H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"12H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"12H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;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:10:\"1617016978\";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:{}}}'),(5153,3697,'_wp_attached_file','2021/06/13H.jpg'),(5154,3697,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:393;s:4:\"file\";s:15:\"2021/06/13H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"13H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"13H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"13H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"13H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"13H-615x393.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"13H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"13H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"13H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"13H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;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:10:\"1617018164\";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:{}}}'),(5155,3698,'_wp_attached_file','2021/06/14H.jpg'),(5156,3698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:393;s:4:\"file\";s:15:\"2021/06/14H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"14H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"14H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"14H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"14H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"14H-615x393.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"14H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"14H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"14H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"14H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;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:10:\"1617016767\";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:{}}}'),(5157,3699,'_wp_attached_file','2021/06/15H.jpg'),(5158,3699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:394;s:4:\"file\";s:15:\"2021/06/15H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"15H-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"15H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"15H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"15H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"15H-615x394.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"15H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"15H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"15H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"15H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:394;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:10:\"1617016783\";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:{}}}'),(5159,3700,'_wp_attached_file','2021/06/16H.jpg'),(5160,3700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:397;s:4:\"file\";s:15:\"2021/06/16H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"16H-300x186.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"16H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"16H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"16H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"16H-615x397.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"16H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"16H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"16H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"16H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:397;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:10:\"1617018164\";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:{}}}'),(5161,3701,'_wp_attached_file','2021/06/17H.jpg'),(5162,3701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:393;s:4:\"file\";s:15:\"2021/06/17H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"17H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"17H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"17H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"17H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"17H-615x393.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"17H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"17H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"17H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"17H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;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:10:\"1617018164\";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:{}}}'),(5163,3702,'_wp_attached_file','2021/06/18H.jpg'),(5164,3702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:393;s:4:\"file\";s:15:\"2021/06/18H.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"18H-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"18H-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"18H-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"18H-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"18H-615x393.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"18H-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"18H-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"18H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:7:\"18H.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:393;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:10:\"1617018165\";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:{}}}'),(5165,3683,'_thumbnail_id','3684'),(5166,3703,'inline_featured_image','0'),(5167,3703,'_edit_last','8'),(5168,3703,'_wp_page_template','default'),(5169,3703,'ulisting_publish_date','2021-06-17 12:31'),(5170,3703,'ulisting_first_publish','1'),(5171,3703,'ulisting_publish_notification','0'),(5172,3703,'_edit_lock','1626382383:10'),(5173,3704,'_wp_attached_file','2021/06/01.jpg'),(5174,3704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:664;s:4:\"file\";s:14:\"2021/06/01.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"01-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"01-480x565.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"01-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"01-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"01-480x450.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"01-480x450.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"01-325x450.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"01-480x600.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"01-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"01-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"01.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:664;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:10:\"1617180720\";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:{}}}'),(5175,3705,'_wp_attached_file','2021/06/002.jpg'),(5176,3705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:663;s:4:\"file\";s:15:\"2021/06/002.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"002-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"002-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"002-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:15:\"002-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"002-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"002-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"002-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"002-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"002-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"002-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"002-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"002-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"002-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"002.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:663;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:10:\"1617185352\";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:{}}}'),(5177,3706,'_wp_attached_file','2021/06/02.jpg'),(5178,3706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:663;s:4:\"file\";s:14:\"2021/06/02.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"02-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"02-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"02-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:14:\"02-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"02-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"02-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"02-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"02-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"02-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"02-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"02-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"02-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"02.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:663;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:10:\"1617130659\";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:{}}}'),(5179,3707,'_wp_attached_file','2021/06/03.jpg'),(5180,3707,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:662;s:4:\"file\";s:14:\"2021/06/03.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"03-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"03-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"03-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:14:\"03-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"03-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"03-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"03-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"03-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"03-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"03-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"03-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"03-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"03.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:662;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:10:\"1617134010\";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:{}}}'),(5181,3708,'_wp_attached_file','2021/06/04.jpg'),(5182,3708,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:662;s:4:\"file\";s:14:\"2021/06/04.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"04-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"04-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"04-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:14:\"04-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"04-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"04-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"04-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"04-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"04-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"04-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"04-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"04-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"04-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"04.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:662;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:10:\"1617130234\";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:{}}}'),(5183,3709,'_wp_attached_file','2021/06/06.jpg'),(5184,3709,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:665;s:4:\"file\";s:14:\"2021/06/06.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"06-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"06-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"06-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:14:\"06-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"06-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"06-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"06-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"06-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"06-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"06-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"06-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"06-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"06-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"06.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:665;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:10:\"1617134682\";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:{}}}'),(5185,3710,'_wp_attached_file','2021/06/07.jpg'),(5186,3710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:662;s:4:\"file\";s:14:\"2021/06/07.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"07-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"07-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"07-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:14:\"07-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"07-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"07-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"07-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"07-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"07-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"07-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"07-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"07-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"07-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"07.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:662;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:10:\"1617130695\";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:{}}}'),(5187,3711,'_wp_attached_file','2021/06/08.jpg'),(5188,3711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:664;s:4:\"file\";s:14:\"2021/06/08.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"08-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"08-1024x630.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"08-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:14:\"08-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"08-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"08-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"08-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"08-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"08-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"08-732x450.jpg\";s:5:\"width\";i:732;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"08-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"08-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"08-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"08.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:664;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:10:\"1617130771\";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:{}}}'),(5189,3712,'_wp_attached_file','2021/06/09.jpg'),(5190,3712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:664;s:4:\"file\";s:14:\"2021/06/09.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"09-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:14:\"09-480x565.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"09-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"09-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"09-480x450.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"09-480x450.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"09-325x450.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"09-480x600.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"09-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"09-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"09.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:664;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:10:\"1617184664\";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:{}}}'),(5191,3713,'_wp_attached_file','2021/06/010.jpg'),(5192,3713,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:666;s:4:\"file\";s:15:\"2021/06/010.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"010-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"010-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"010-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:15:\"010-768x474.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"010-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"010-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"010-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"010-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"010-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"010-730x450.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"010-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"010-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"010-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"010.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:666;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:10:\"1617134595\";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:{}}}'),(5193,3714,'_wp_attached_file','2021/06/011.jpg'),(5194,3714,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1079;s:6:\"height\";i:664;s:4:\"file\";s:15:\"2021/06/011.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"011-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"011-1024x630.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"011-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:15:\"011-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"011-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"011-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"011-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"011-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"011-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"011-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"011-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"011-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"011-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"011.jpg\";s:5:\"width\";i:1079;s:6:\"height\";i:664;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:10:\"1617134653\";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:{}}}'),(5195,3715,'_wp_attached_file','2021/06/012.jpg'),(5196,3715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:665;s:4:\"file\";s:15:\"2021/06/012.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"012-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"012-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"012-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:15:\"012-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"012-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"012-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"012-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"012-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"012-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"012-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"012-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"012-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"012-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"012.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:665;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:10:\"1617180820\";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:{}}}'),(5197,3716,'_wp_attached_file','2021/06/013.jpg'),(5198,3716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:479;s:6:\"height\";i:663;s:4:\"file\";s:15:\"2021/06/013.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"013-217x300.jpg\";s:5:\"width\";i:217;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"013-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"013-479x565.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"013-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"013-479x360.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"013-479x450.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"013-479x450.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"013-325x450.jpg\";s:5:\"width\";i:325;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"013-479x600.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"013-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"013-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"013.jpg\";s:5:\"width\";i:479;s:6:\"height\";i:663;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:10:\"1617133976\";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:{}}}'),(5199,3717,'_wp_attached_file','2021/06/014.jpg'),(5200,3717,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:660;s:4:\"file\";s:15:\"2021/06/014.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"014-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"014-1024x626.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"014-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:15:\"014-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"014-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"014-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"014-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"014-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"014-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"014-736x450.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"014-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"014-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"014-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"014.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:660;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:10:\"1617134625\";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:{}}}'),(5201,3718,'_wp_attached_file','2021/06/015.jpg'),(5202,3718,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:661;s:4:\"file\";s:15:\"2021/06/015.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"015-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"015-1024x627.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"015-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:15:\"015-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"015-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"015-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"015-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"015-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"015-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"015-735x450.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"015-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"015-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"015-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"015.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:661;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:10:\"1617133943\";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:{}}}'),(5203,3719,'_wp_attached_file','2021/06/016.jpg'),(5204,3719,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:663;s:4:\"file\";s:15:\"2021/06/016.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"016-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"016-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"016-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:15:\"016-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"016-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"016-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"016-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"016-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"016-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"016-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"016-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"016-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"016-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"016.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:663;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:10:\"1617130204\";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:{}}}'),(5205,3720,'_wp_attached_file','2021/06/017.jpg'),(5206,3720,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:662;s:4:\"file\";s:15:\"2021/06/017.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"017-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"017-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"017-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:15:\"017-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"017-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"017-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"017-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"017-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"017-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"017-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"017-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"017-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"017-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"017.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:662;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:10:\"1617130730\";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:{}}}'),(5207,3721,'_wp_attached_file','2021/06/018.jpg'),(5208,3721,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:662;s:4:\"file\";s:15:\"2021/06/018.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"018-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"018-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"018-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:15:\"018-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"018-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"018-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"018-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"018-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"018-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"018-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"018-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"018-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"018-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"018.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:662;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:10:\"1617134447\";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:{}}}'),(5209,3722,'_wp_attached_file','2021/06/019.jpg'),(5210,3722,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:665;s:4:\"file\";s:15:\"2021/06/019.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"019-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"019-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"019-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:15:\"019-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"019-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"019-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"019-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"019-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"019-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"019-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"019-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"019-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"019-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"019.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:665;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:10:\"1617133842\";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:{}}}'),(5211,3723,'_wp_attached_file','2021/06/020.jpg'),(5212,3723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:660;s:4:\"file\";s:15:\"2021/06/020.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"020-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"020-1024x626.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"020-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:15:\"020-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"020-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"020-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"020-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"020-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"020-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"020-736x450.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"020-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"020-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"020-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"020.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:660;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:10:\"1617130316\";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:{}}}'),(5213,3724,'_wp_attached_file','2021/06/0211.jpg'),(5214,3724,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:663;s:4:\"file\";s:16:\"2021/06/0211.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0211-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"0211-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0211-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:16:\"0211-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0211-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0211-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0211-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0211-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0211-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0211-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0211-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0211-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0211-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"0211.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:663;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:10:\"1617130659\";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:{}}}'),(5215,3725,'_wp_attached_file','2021/06/021.jpg'),(5216,3725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:663;s:4:\"file\";s:15:\"2021/06/021.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"021-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"021-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"021-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:15:\"021-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"021-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"021-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"021-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"021-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"021-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"021-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"021-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"021-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"021-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"021.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:663;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:10:\"1617130659\";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:{}}}'),(5217,3726,'_wp_attached_file','2021/06/022.jpg'),(5218,3726,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:661;s:4:\"file\";s:15:\"2021/06/022.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"022-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"022-1024x627.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"022-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:15:\"022-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"022-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"022-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"022-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"022-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"022-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"022-735x450.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"022-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"022-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"022-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"022.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:661;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:10:\"1617134113\";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:{}}}'),(5219,3727,'_wp_attached_file','2021/06/023.jpg'),(5220,3727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/023.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"023-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"023-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"023-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:15:\"023-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"023-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"023-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"023-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"023-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"023-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"023-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"023-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"023-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"023-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"023.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:659;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:10:\"1617134510\";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:{}}}'),(5221,3728,'_wp_attached_file','2021/06/024.jpg'),(5222,3728,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:661;s:4:\"file\";s:15:\"2021/06/024.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"024-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"024-1024x627.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"024-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:15:\"024-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"024-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"024-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"024-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"024-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"024-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"024-735x450.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"024-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"024-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"024-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"024.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:661;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:10:\"1617130286\";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:{}}}'),(5223,3729,'_wp_attached_file','2021/06/025.jpg'),(5224,3729,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:662;s:4:\"file\";s:15:\"2021/06/025.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"025-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"025-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"025-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:15:\"025-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"025-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"025-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"025-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"025-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"025-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"025-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"025-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"025-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"025-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"025.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:662;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:10:\"1617185323\";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:{}}}'),(5225,3730,'_wp_attached_file','2021/06/0261.jpg'),(5226,3730,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:665;s:4:\"file\";s:16:\"2021/06/0261.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"0261-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"0261-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"0261-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:16:\"0261-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"0261-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"0261-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"0261-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"0261-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"0261-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"0261-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"0261-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"0261-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"0261-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"0261.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:665;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:10:\"1617134536\";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:{}}}'),(5227,3731,'_wp_attached_file','2021/06/026.jpg'),(5228,3731,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:665;s:4:\"file\";s:15:\"2021/06/026.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"026-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"026-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"026-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:15:\"026-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"026-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"026-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"026-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"026-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"026-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"026-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"026-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"026-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"026-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"026.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:665;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:10:\"1617134536\";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:{}}}'),(5229,3732,'_wp_attached_file','2021/06/027.jpg'),(5230,3732,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1073;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/027.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"027-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"027-1024x629.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"027-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:15:\"027-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"027-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"027-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"027-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"027-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"027-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"027-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"027-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"027-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"027-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"027.jpg\";s:5:\"width\";i:1073;s:6:\"height\";i:659;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:10:\"1617180784\";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:{}}}'),(5231,3733,'_wp_attached_file','2021/06/028.jpg'),(5232,3733,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1073;s:6:\"height\";i:658;s:4:\"file\";s:15:\"2021/06/028.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"028-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"028-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"028-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:15:\"028-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"028-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"028-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"028-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"028-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"028-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"028-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"028-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"028-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"028-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"028.jpg\";s:5:\"width\";i:1073;s:6:\"height\";i:658;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:10:\"1617130126\";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:{}}}'),(5233,3734,'_wp_attached_file','2021/06/029.jpg'),(5234,3734,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:658;s:4:\"file\";s:15:\"2021/06/029.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"029-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"029-1024x624.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:624;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"029-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:15:\"029-768x468.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"029-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"029-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"029-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"029-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"029-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"029-739x450.jpg\";s:5:\"width\";i:739;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"029-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"029-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"029-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"029.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:658;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:10:\"1617130574\";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:{}}}'),(5235,3735,'_wp_attached_file','2021/06/030.jpg'),(5236,3735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:665;s:4:\"file\";s:15:\"2021/06/030.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"030-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"030-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"030-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:15:\"030-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"030-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"030-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"030-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"030-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"030-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"030-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"030-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"030-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"030-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"030.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:665;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:10:\"1617134713\";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:{}}}'),(5237,3736,'_wp_attached_file','2021/06/031.jpg'),(5238,3736,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:666;s:4:\"file\";s:15:\"2021/06/031.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"031-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"031-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"031-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:15:\"031-768x474.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"031-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"031-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"031-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"031-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"031-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"031-730x450.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"031-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"031-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"031-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"031.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:666;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:10:\"1617182130\";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:{}}}'),(5239,3737,'_wp_attached_file','2021/06/032.jpg'),(5240,3737,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:666;s:4:\"file\";s:15:\"2021/06/032.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"032-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"032-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"032-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:15:\"032-768x474.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"032-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"032-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"032-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"032-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"032-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"032-730x450.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"032-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"032-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"032-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"032.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:666;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:10:\"1617180754\";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:{}}}'),(5241,3738,'_wp_attached_file','2021/06/033.jpg'),(5242,3738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:662;s:4:\"file\";s:15:\"2021/06/033.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"033-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"033-1024x628.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"033-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:15:\"033-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"033-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"033-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"033-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"033-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"033-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"033-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"033-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"033-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"033-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"033.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:662;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:10:\"1617130263\";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:{}}}'),(5243,3739,'_wp_attached_file','2021/06/034.jpg'),(5244,3739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:660;s:4:\"file\";s:15:\"2021/06/034.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"034-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"034-1024x626.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"034-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:15:\"034-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"034-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"034-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"034-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"034-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"034-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"034-736x450.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"034-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"034-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"034-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"034.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:660;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:10:\"1617133918\";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:{}}}'),(5245,3740,'_wp_attached_file','2021/06/035.jpg'),(5246,3740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:659;s:4:\"file\";s:15:\"2021/06/035.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"035-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"035-1024x625.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"035-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:15:\"035-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"035-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"035-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"035-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"035-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"035-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"035-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"035-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"035-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"035-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"035.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:659;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:10:\"1617134475\";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:{}}}'),(5247,3703,'_thumbnail_id','3731'),(5248,3741,'inline_featured_image','0'),(5249,3741,'_edit_last','8'),(5250,3741,'_wp_page_template','default'),(5251,3741,'ulisting_publish_date','2021-06-17 13:37'),(5252,3741,'ulisting_first_publish','1'),(5253,3741,'ulisting_publish_notification','0'),(5254,3741,'_edit_lock','1626382383:10'),(5255,3742,'_wp_attached_file','2021/06/1-4.jpg'),(5256,3742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:547;s:4:\"file\";s:15:\"2021/06/1-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-4-300x160.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:160;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-4-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:15:\"1-4-768x410.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"1-4-1000x547.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"1-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"1-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"1-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"1-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"1-4-842x450.jpg\";s:5:\"width\";i:842;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"1-4-850x547.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"1-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"1-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"1-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:547;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:10:\"1617214804\";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:{}}}'),(5257,3743,'_wp_attached_file','2021/06/2-5.jpg'),(5258,3743,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:628;s:4:\"file\";s:15:\"2021/06/2-5.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"2-5-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"2-5-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:15:\"2-5-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"2-5-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"2-5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"2-5-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"2-5-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"2-5-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"2-5-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"2-5-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"2-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"2-5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"2-5.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;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:10:\"1617214807\";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:{}}}'),(5259,3744,'_wp_attached_file','2021/06/3-4.jpg'),(5260,3744,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:629;s:4:\"file\";s:15:\"2021/06/3-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"3-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"3-4-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:15:\"3-4-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"3-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"3-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"3-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"3-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"3-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"3-4-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"3-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"3-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"3-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"3-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;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:10:\"1617214811\";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:{}}}'),(5261,3745,'_wp_attached_file','2021/06/4-4.jpg'),(5262,3745,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:628;s:4:\"file\";s:15:\"2021/06/4-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"4-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"4-4-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:15:\"4-4-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"4-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"4-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"4-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"4-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"4-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"4-4-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"4-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"4-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"4-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"4-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;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:10:\"1617214907\";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:{}}}'),(5263,3746,'_wp_attached_file','2021/06/6-4.jpg'),(5264,3746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:860;s:6:\"height\";i:683;s:4:\"file\";s:15:\"2021/06/6-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"6-4-300x238.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"6-4-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:15:\"6-4-768x610.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"6-4-860x565.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"6-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"6-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"6-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"6-4-860x450.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"6-4-567x450.jpg\";s:5:\"width\";i:567;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"6-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"6-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"6-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"6-4.jpg\";s:5:\"width\";i:860;s:6:\"height\";i:683;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:10:\"1617214819\";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:{}}}'),(5265,3747,'_wp_attached_file','2021/06/8-5.jpg'),(5266,3747,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:15:\"2021/06/8-5.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"8-5-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:15:\"8-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"8-5-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"8-5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"8-5-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"8-5-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"8-5-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"8-5-676x450.jpg\";s:5:\"width\";i:676;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"8-5-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"8-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"8-5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"8-5.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;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:{}}}'),(5267,3748,'_wp_attached_file','2021/06/9-4.jpg'),(5268,3748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:628;s:4:\"file\";s:15:\"2021/06/9-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9-4-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:15:\"9-4-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"9-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:13:\"9-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:15:\"9-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:15:\"9-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:15:\"9-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:15:\"9-4-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:15:\"9-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:15:\"9-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:15:\"9-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:7:\"9-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;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:10:\"1617214838\";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:{}}}'),(5269,3749,'_wp_attached_file','2021/06/10-4.jpg'),(5270,3749,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:630;s:4:\"file\";s:16:\"2021/06/10-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"10-4-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"10-4-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:16:\"10-4-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"10-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"10-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"10-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"10-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"10-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"10-4-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"10-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"10-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"10-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"10-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;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:10:\"1617214850\";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:{}}}'),(5271,3750,'_wp_attached_file','2021/06/11-4.jpg'),(5272,3750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:629;s:4:\"file\";s:16:\"2021/06/11-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"11-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"11-4-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:16:\"11-4-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"11-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"11-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"11-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"11-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"11-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"11-4-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"11-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"11-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"11-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"11-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;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:10:\"1617214855\";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:{}}}'),(5273,3751,'_wp_attached_file','2021/06/12-4.jpg'),(5274,3751,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:628;s:4:\"file\";s:16:\"2021/06/12-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"12-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"12-4-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:16:\"12-4-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"12-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"12-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"12-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"12-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"12-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"12-4-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"12-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"12-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"12-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"12-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;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:10:\"1617214859\";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:{}}}'),(5275,3752,'_wp_attached_file','2021/06/13-4.jpg'),(5276,3752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:629;s:4:\"file\";s:16:\"2021/06/13-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"13-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"13-4-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:16:\"13-4-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"13-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"13-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"13-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"13-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"13-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"13-4-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"13-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"13-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"13-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"13-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;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:10:\"1617214863\";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:{}}}'),(5277,3753,'_wp_attached_file','2021/06/14-4.jpg'),(5278,3753,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:625;s:4:\"file\";s:16:\"2021/06/14-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"14-4-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"14-4-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:16:\"14-4-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"14-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"14-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"14-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"14-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"14-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"14-4-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"14-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"14-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"14-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"14-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;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:10:\"1617214867\";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:{}}}'),(5279,3754,'_wp_attached_file','2021/06/15-4.jpg'),(5280,3754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:629;s:4:\"file\";s:16:\"2021/06/15-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"15-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"15-4-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:16:\"15-4-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"15-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"15-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"15-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"15-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"15-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"15-4-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"15-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"15-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"15-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"15-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;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:10:\"1617214873\";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:{}}}'),(5281,3755,'_wp_attached_file','2021/06/16-4.jpg'),(5282,3755,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:628;s:4:\"file\";s:16:\"2021/06/16-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"16-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"16-4-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:16:\"16-4-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"16-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"16-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"16-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"16-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"16-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"16-4-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"16-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"16-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"16-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"16-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;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:10:\"1617214877\";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:{}}}'),(5283,3756,'_wp_attached_file','2021/06/17-4.jpg'),(5284,3756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:626;s:4:\"file\";s:16:\"2021/06/17-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"17-4-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"17-4-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:16:\"17-4-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"17-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"17-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"17-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"17-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"17-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"17-4-736x450.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"17-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"17-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"17-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"17-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;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:10:\"1617214883\";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:{}}}'),(5285,3757,'_wp_attached_file','2021/06/18-4.jpg'),(5286,3757,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:628;s:4:\"file\";s:16:\"2021/06/18-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"18-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"18-4-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:16:\"18-4-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"18-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"18-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"18-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"18-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"18-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"18-4-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"18-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"18-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"18-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"18-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;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:10:\"1617214888\";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:{}}}'),(5287,3758,'_wp_attached_file','2021/06/19-5.jpg'),(5288,3758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:628;s:4:\"file\";s:16:\"2021/06/19-5.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"19-5-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"19-5-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:16:\"19-5-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"19-5-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"19-5-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"19-5-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"19-5-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"19-5-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"19-5-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"19-5-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"19-5-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"19-5-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"19-5.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;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:10:\"1617214892\";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:{}}}'),(5289,3759,'_wp_attached_file','2021/06/20-4.jpg'),(5290,3759,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:629;s:4:\"file\";s:16:\"2021/06/20-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"20-4-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"20-4-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:16:\"20-4-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"20-4-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"20-4-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"20-4-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"20-4-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"20-4-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"20-4-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"20-4-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"20-4-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"20-4-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"20-4.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;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:10:\"1617214895\";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:{}}}'),(5291,3760,'_wp_attached_file','2021/06/21-3.jpg'),(5292,3760,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:626;s:4:\"file\";s:16:\"2021/06/21-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"21-3-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"21-3-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:16:\"21-3-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"21-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"21-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"21-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"21-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"21-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"21-3-736x450.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"21-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"21-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"21-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"21-3.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;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:10:\"1617214899\";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:{}}}'),(5293,3761,'_wp_attached_file','2021/06/23-3.jpg'),(5294,3761,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:626;s:4:\"file\";s:16:\"2021/06/23-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"23-3-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"23-3-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:16:\"23-3-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"23-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"23-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"23-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"23-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"23-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"23-3-736x450.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"23-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"23-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"23-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"23-3.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;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:10:\"1617214912\";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:{}}}'),(5295,3762,'_wp_attached_file','2021/06/24-3.jpg'),(5296,3762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:631;s:4:\"file\";s:16:\"2021/06/24-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"24-3-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"24-3-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:16:\"24-3-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"24-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"24-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"24-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"24-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"24-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"24-3-730x450.jpg\";s:5:\"width\";i:730;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"24-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"24-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"24-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"24-3.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;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:10:\"1617214916\";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:{}}}'),(5297,3763,'_wp_attached_file','2021/06/25-3.jpg'),(5298,3763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:626;s:4:\"file\";s:16:\"2021/06/25-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"25-3-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"25-3-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:16:\"25-3-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"25-3-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"25-3-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"25-3-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"25-3-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"25-3-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"25-3-736x450.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"25-3-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"25-3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"25-3-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"25-3.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;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:10:\"1617214921\";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:{}}}'),(5299,3764,'_wp_attached_file','2021/06/26-2.jpg'),(5300,3764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:629;s:4:\"file\";s:16:\"2021/06/26-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"26-2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"26-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:16:\"26-2-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"26-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"26-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"26-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"26-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"26-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"26-2-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"26-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"26-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"26-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"26-2.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;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:10:\"1617214928\";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:{}}}'),(5301,3765,'_wp_attached_file','2021/06/27-2.jpg'),(5302,3765,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:630;s:4:\"file\";s:16:\"2021/06/27-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"27-2-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"27-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:16:\"27-2-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"27-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"27-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"27-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"27-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"27-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"27-2-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"27-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"27-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"27-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"27-2.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;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:10:\"1617214933\";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:{}}}'),(5303,3766,'_wp_attached_file','2021/06/28-2.jpg'),(5304,3766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:629;s:4:\"file\";s:16:\"2021/06/28-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"28-2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"28-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:16:\"28-2-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"28-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"28-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"28-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"28-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"28-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"28-2-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"28-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"28-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"28-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"28-2.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;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:10:\"1617214938\";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:{}}}'),(5305,3767,'_wp_attached_file','2021/06/29-2.jpg'),(5306,3767,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:630;s:4:\"file\";s:16:\"2021/06/29-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"29-2-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"29-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:16:\"29-2-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"29-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"29-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"29-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"29-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"29-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"29-2-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"29-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"29-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"29-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"29-2.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;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:10:\"1617214834\";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:{}}}'),(5307,3768,'_wp_attached_file','2021/06/30-2.jpg'),(5308,3768,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:623;s:4:\"file\";s:16:\"2021/06/30-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"30-2-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"30-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:16:\"30-2-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"30-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"30-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"30-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"30-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"30-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"30-2-740x450.jpg\";s:5:\"width\";i:740;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"30-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"30-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"30-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"30-2.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;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:10:\"1617214952\";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:{}}}'),(5309,3769,'_wp_attached_file','2021/06/31-2.jpg'),(5310,3769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:625;s:4:\"file\";s:16:\"2021/06/31-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"31-2-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"31-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:16:\"31-2-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"31-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"31-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"31-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"31-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"31-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"31-2-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"31-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"31-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"31-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"31-2.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;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:10:\"1617214959\";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:{}}}'),(5311,3770,'_wp_attached_file','2021/06/33.jpg'),(5312,3770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:627;s:4:\"file\";s:14:\"2021/06/33.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"33-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"33-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:14:\"33-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"33-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"33-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"33-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"33-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"33-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"33-735x450.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"33-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"33-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"33-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"33.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;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:10:\"1617214967\";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:{}}}'),(5313,3771,'_wp_attached_file','2021/06/34-1.jpg'),(5314,3771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:630;s:4:\"file\";s:16:\"2021/06/34-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"34-1-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"34-1-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:16:\"34-1-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"34-1-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"34-1-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"34-1-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"34-1-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"34-1-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"34-1-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"34-1-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"34-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"34-1-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"34-1.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;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:10:\"1617214971\";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:{}}}'),(5315,3772,'_wp_attached_file','2021/06/35-2.jpg'),(5316,3772,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:627;s:4:\"file\";s:16:\"2021/06/35-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"35-2-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"35-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:16:\"35-2-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:17:\"35-2-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:14:\"35-2-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:16:\"35-2-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:16:\"35-2-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:16:\"35-2-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:16:\"35-2-735x450.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:16:\"35-2-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:16:\"35-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:16:\"35-2-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:8:\"35-2.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;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:10:\"1617214976\";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:{}}}'),(5317,3773,'_wp_attached_file','2021/06/36.jpg'),(5318,3773,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:625;s:4:\"file\";s:14:\"2021/06/36.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"36-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"36-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:14:\"36-768x469.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"36-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"36-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"36-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"36-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"36-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"36-737x450.jpg\";s:5:\"width\";i:737;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"36-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"36-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"36-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"36.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:625;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:10:\"1617214980\";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:{}}}'),(5319,3774,'_wp_attached_file','2021/06/37.jpg'),(5320,3774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:627;s:4:\"file\";s:14:\"2021/06/37.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"37-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"37-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:14:\"37-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"37-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"37-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"37-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"37-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"37-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"37-735x450.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"37-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"37-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"37-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"37.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;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:10:\"1617214986\";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:{}}}'),(5321,3775,'_wp_attached_file','2021/06/38.jpg'),(5322,3775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:627;s:4:\"file\";s:14:\"2021/06/38.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"38-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"38-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:14:\"38-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"38-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"38-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"38-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"38-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"38-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"38-735x450.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"38-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"38-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"38-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"38.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;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:10:\"1617214990\";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:{}}}'),(5323,3776,'_wp_attached_file','2021/06/39.jpg'),(5324,3776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:623;s:4:\"file\";s:14:\"2021/06/39.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"39-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"39-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:14:\"39-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"39-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"39-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"39-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"39-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"39-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"39-740x450.jpg\";s:5:\"width\";i:740;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"39-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"39-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"39-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"39.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:623;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:10:\"1617214994\";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:{}}}'),(5325,3777,'_wp_attached_file','2021/06/40.jpg'),(5326,3777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:622;s:4:\"file\";s:14:\"2021/06/40.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"40-300x182.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:182;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"40-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:14:\"40-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"40-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"40-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"40-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"40-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"40-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"40-741x450.jpg\";s:5:\"width\";i:741;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"40-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"40-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"40-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"40.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:622;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:10:\"1617214997\";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:{}}}'),(5327,3778,'_wp_attached_file','2021/06/41.jpg'),(5328,3778,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:628;s:4:\"file\";s:14:\"2021/06/41.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"41-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"41-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:14:\"41-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"41-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"41-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"41-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"41-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"41-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"41-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"41-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"41-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"41-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"41.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;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:10:\"1617215004\";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:{}}}'),(5329,3779,'_wp_attached_file','2021/06/42.jpg'),(5330,3779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:627;s:4:\"file\";s:14:\"2021/06/42.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"42-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"42-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:14:\"42-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"42-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"42-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"42-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"42-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"42-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"42-735x450.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"42-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"42-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"42-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"42.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;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:10:\"1617215008\";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:{}}}'),(5331,3780,'_wp_attached_file','2021/06/43.jpg'),(5332,3780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:628;s:4:\"file\";s:14:\"2021/06/43.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"43-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"43-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:14:\"43-768x471.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"43-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"43-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"43-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"43-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"43-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"43-734x450.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"43-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"43-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"43-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"43.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:628;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:10:\"1617215014\";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:{}}}'),(5333,3781,'_wp_attached_file','2021/06/44.jpg'),(5334,3781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:629;s:4:\"file\";s:14:\"2021/06/44.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"44-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"44-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:14:\"44-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"44-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"44-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"44-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"44-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"44-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"44-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"44-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"44-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"44-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"44.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;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:10:\"1617215017\";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:{}}}'),(5335,3782,'_wp_attached_file','2021/06/45.jpg'),(5336,3782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:624;s:4:\"file\";s:14:\"2021/06/45.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"45-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"45-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:14:\"45-768x468.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:468;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"45-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"45-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"45-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"45-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"45-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"45-738x450.jpg\";s:5:\"width\";i:738;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"45-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"45-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"45-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"45.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:624;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:10:\"1617215021\";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:{}}}'),(5337,3783,'_wp_attached_file','2021/06/46.jpg'),(5338,3783,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:630;s:4:\"file\";s:14:\"2021/06/46.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"46-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"46-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:14:\"46-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"46-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"46-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"46-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"46-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"46-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"46-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"46-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"46-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"46-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"46.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;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:10:\"1617215026\";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:{}}}'),(5339,3784,'_wp_attached_file','2021/06/47.jpg'),(5340,3784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:626;s:4:\"file\";s:14:\"2021/06/47.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"47-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"47-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:14:\"47-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"47-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"47-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"47-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"47-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"47-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"47-736x450.jpg\";s:5:\"width\";i:736;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"47-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"47-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"47-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"47.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;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:10:\"1617215030\";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:{}}}'),(5341,3785,'_wp_attached_file','2021/06/48.jpg'),(5342,3785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:629;s:4:\"file\";s:14:\"2021/06/48.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"48-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"48-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:14:\"48-768x472.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:472;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"48-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"48-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"48-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"48-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"48-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"48-733x450.jpg\";s:5:\"width\";i:733;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"48-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"48-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"48-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"48.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:629;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:10:\"1617215033\";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:{}}}'),(5343,3786,'_wp_attached_file','2021/06/49.jpg'),(5344,3786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:627;s:4:\"file\";s:14:\"2021/06/49.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"49-300x184.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"49-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:14:\"49-768x470.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"49-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"49-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"49-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"49-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"49-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"49-735x450.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"49-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"49-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"49-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"49.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:627;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:10:\"1617215036\";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:{}}}'),(5345,3787,'_wp_attached_file','2021/06/50.jpg'),(5346,3787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:630;s:4:\"file\";s:14:\"2021/06/50.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"50-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"50-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:14:\"50-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:15:\"50-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"50-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"50-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"50-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"50-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"50-731x450.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:14:\"50-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"50-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"50-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"50.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:630;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:10:\"1617215041\";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:{}}}'),(5347,3741,'_thumbnail_id','3753'),(6253,3703,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\",615,450,true]}'),(5350,3296,'stm_day_18','1'),(6254,3683,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/1H-615x394.jpg\",615,394,true]}'),(6636,1771,'stm_day_4','1'),(5358,3703,'stm_post_views','4'),(5359,3703,'stm_day_23','3'),(5360,3703,'stm_month_06','3'),(5361,2143,'stm_month_06','1'),(5362,2146,'stm_month_06','1'),(5363,2141,'stm_month_06','1'),(5364,2643,'stm_day_23','77'),(5365,2643,'stm_month_06','82'),(6873,2779,'eg_sources_html5_mp4',''),(6874,2779,'eg_sources_youtube',''),(6875,2779,'eg_sources_vimeo',''),(6260,2720,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\",615,450,true]}'),(6261,2769,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\",200,190,true]}'),(6898,2781,'eg_sources_html5_mp4',''),(6899,2781,'eg_sources_youtube',''),(6900,2781,'eg_sources_vimeo',''),(6918,2784,'eg_sources_html5_mp4',''),(6919,2784,'eg_sources_youtube',''),(6920,2784,'eg_sources_vimeo',''),(6938,2786,'eg_sources_html5_mp4',''),(6939,2786,'eg_sources_youtube',''),(6940,2786,'eg_sources_vimeo',''),(6960,2788,'eg_sources_html5_mp4',''),(6961,2788,'eg_sources_youtube',''),(6962,2788,'eg_sources_vimeo',''),(6981,2790,'eg_sources_youtube',''),(6982,2790,'eg_sources_vimeo',''),(6258,3296,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\",615,450,true]}'),(5375,3741,'stm_post_views','17'),(5376,3741,'stm_day_23','15'),(5377,3741,'stm_month_06','15'),(6256,2784,'stm_day_23','1'),(6257,2784,'stm_month_06','2'),(5378,2769,'stm_day_23','1'),(5379,2643,'_elementor_edit_mode','builder'),(5380,2643,'_elementor_template_type','wp-page'),(5381,2643,'_elementor_version','2.9.9'),(5382,2643,'_elementor_pro_version','2.10.3'),(6868,2643,'_elementor_css','a:6:{s:4:\"time\";i:1626336806;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:\"\";}'),(5384,2642,'stm_day_23','12'),(5385,3683,'stm_post_views','2'),(5386,3683,'stm_day_23','2'),(5387,3683,'stm_month_06','2'),(5388,581,'stm_day_23','26'),(5416,3792,'_elementor_edit_mode','builder'),(5417,3792,'_elementor_template_type','wp-page'),(5409,3791,'_elementor_edit_mode','builder'),(5410,3791,'_elementor_template_type','wp-page'),(5411,3791,'_elementor_version','2.9.13'),(5412,3791,'_elementor_pro_version','2.10.2'),(5413,3791,'_wp_page_template','default'),(5414,3791,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our long-standing<br> experience\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f44fc54\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":440,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-160\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"95\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0af3bbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"30\",\"bottom\":\"45\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_mobile\":100,\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"96273ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"We have over\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28039d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"75\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b8658e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"years\'\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9d97901\",\"elType\":\"widget\",\"settings\":{\"title\":\"Expertise\",\"header_size\":\"h6\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"875cf54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"content_position\":\"center\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/05\\/h2_bg-video.jpg\",\"id\":383},\"background_position\":\"center center\",\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true}},\"elements\":[{\"id\":\"6f8882e\",\"elType\":\"widget\",\"settings\":{\"video_link\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"icon_font\":\"fa fa-play\",\"video_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"video_color\":\"#FFFFFF\",\"border_video_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"rentex-video-popup\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf7c8c8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c8be532\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f15c37b\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Guidance you need\",\"description_text\":\"We\'re here to strip the fear out of home buying and arm you with the confidence you need to make decisions\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-guidance\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"a3667fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2af9d1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Search that feels familiar\",\"description_text\":\"Our first-of-its-kind search experience enables you to plug in a monthly payment you\'re willing to make \",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-search-home\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"ca200a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"37db298\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Premium values\",\"description_text\":\"Luxury real estate is our passion and it demands our focus. We strive to provide a high level of personalised service\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-value\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ec65d2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-about.jpg\",\"id\":595},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e20115e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e43a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b397bbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"To help members\\nbecome more profitable\\nand successful\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fd9b7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Homey is America\'s largest trade association, representing 1.3 million members, including our institutes, societies, and councils, involved in all aspects of the residential and commercial real estate industries.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e97c0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Help sellers get the most for their properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Help sellers price their properties fairly\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Help buyers find the property that fits their needs\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Help buyers avoid over paying by strategically negotiating purchase\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#FF9933\",\"text_color\":\"#000000\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"3fb2936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"07a1772\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1070,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/parallax-about.jpg\",\"id\":605},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5ec34a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"83955a7\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1721,\"thousand_separator\":\"\",\"title\":\"Homes for sale\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"34fa6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb10dc3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":674,\"thousand_separator\":\"\",\"title\":\"Homes for rent\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"88e7d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"765c525\",\"elType\":\"widget\",\"settings\":{\"ending_number\":6599,\"thousand_separator\":\"\",\"title\":\"Recently sold\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"7f30c48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"bd956da\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5763,\"thousand_separator\":\"\",\"title\":\"Happy clients\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38c80d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c76a7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fbdaf84\",\"elType\":\"widget\",\"settings\":{\"title\":\"testimonials\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"661c7be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here\\u2019s what clients say<br>\\nabout us\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fcc4c16\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4d0eeb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"09a9b8c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"b2416f8\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"Corporate communications Executive\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true},{\"id\":\"eea7cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc1add0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b6dcce\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mrs. Emma Stone\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5418,3792,'_elementor_version','2.9.9'),(5419,3792,'_elementor_pro_version','2.10.3'),(5420,3792,'_wp_page_template','default'),(5398,1118,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"layer_1\" x=\"0\" y=\"0\" viewBox=\"0 0 77.5 76.5\" xml:space=\"preserve\"><style>.st0{fill:#f5f5ef}.st1{fill:#fff}.st2{fill:#dbd8c1}.st3{fill:#231f20}</style><circle class=\"st0\" cx=\"63.5\" cy=\"46.25\" r=\"14\"/><circle class=\"st0\" cx=\"28.94\" cy=\"64.5\" r=\"12\"/><circle class=\"st0\" cx=\"20\" cy=\"20\" r=\"20\"/><path class=\"st1\" d=\"M55.75 69.75h11c2.21 0 4-1.79 4-4v-16h-15v20zm-45-54c-2.21 0-4 1.79-4 4v16l14 14h35v-34h-45z\"/><path class=\"st1\" d=\"M6.75 35.75v14h14zm49-6h15v10h-15zm0 10h15v10h-15zm11-24h-11v14h15v-10c0-2.21-1.79-4-4-4zm-46 34l20 20v-20zm20 0v20h15v-20z\"/><path class=\"st1\" d=\"M30.75 59.75l-10-10h-14v16c0 2.21 1.79 4 4 4h6v-10h14z\"/><path class=\"st1\" d=\"M30.75 59.75h-14v10h24z\"/><path class=\"st2\" d=\"M70.75 65.75v-11h-10c-.55 0-1 .45-1 1v14h7c2.21 0 4-1.79 4-4zm-15-33h-41c-.55 0-1 .45-1 1v9l7 7h35v-17zm-44 14.41v2.59h5l-3.29-3.29c-.63-.63-1.71-.19-1.71.7zm59-12.41h-6c-.55 0-1 .45-1 1v4h7v-5zm0 8h-9c-.55 0-1 .45-1 1v6h10v-7zm0-22h-9c-.55 0-1 .45-1 1v8h10v-9zM33.46 56.46l7.29 7.29v-9h-6.58c-.89 0-1.34 1.08-.71 1.71zm22.29 2.29h-8c-.55 0-1 .45-1 1v10h9v-11zm-39 1h14l-5-5h-13c-.55 0-1 .45-1 1v14h5v-10zm19 5h-10c-.55 0-1 .45-1 1v4h16l-5-5z\"/><path class=\"st3\" d=\"M66.75 70.5h-11c-.41 0-.75-.34-.75-.75v-20c0-.41.34-.75.75-.75h15c.41 0 .75.34.75.75v16c0 2.62-2.13 4.75-4.75 4.75zM56.5 69h10.25c1.79 0 3.25-1.46 3.25-3.25V50.5H56.5V69z\"/><path class=\"st3\" d=\"M55.75 50.5h-35a.75.75 0 0 1-.53-.22l-14-14a.75.75 0 0 1-.22-.53v-16C6 17.13 8.13 15 10.75 15h45c.41 0 .75.34.75.75v34c0 .41-.34.75-.75.75zM21.06 49H55V16.5H10.75c-1.79 0-3.25 1.46-3.25 3.25v15.69L21.06 49z\"/><path class=\"st3\" d=\"M20.75 50.5h-14c-.41 0-.75-.34-.75-.75v-14c0-.3.18-.58.46-.69.28-.12.6-.05.82.16l14 14c.21.21.28.54.16.82a.74.74 0 0 1-.69.46zM7.5 49h11.44L7.5 37.56V49zm63.25-8.5h-15c-.41 0-.75-.34-.75-.75v-10c0-.41.34-.75.75-.75h15c.41 0 .75.34.75.75v10c0 .41-.34.75-.75.75zM56.5 39H70v-8.5H56.5V39z\"/><path class=\"st3\" d=\"M70.75 50.5h-15c-.41 0-.75-.34-.75-.75v-10c0-.41.34-.75.75-.75h15c.41 0 .75.34.75.75v10c0 .41-.34.75-.75.75zM56.5 49H70v-8.5H56.5V49zm14.25-18.5h-15c-.41 0-.75-.34-.75-.75v-14c0-.41.34-.75.75-.75h11c2.62 0 4.75 2.13 4.75 4.75v10c0 .41-.34.75-.75.75zM56.5 29H70v-9.25c0-1.79-1.46-3.25-3.25-3.25H56.5V29zM40.75 70.5c-.19 0-.39-.08-.53-.22l-20-20a.751.751 0 1 1 .53-1.28h20c.41 0 .75.34.75.75v20c0 .3-.18.58-.46.69-.1.04-.2.06-.29.06zm-18.19-20L40 67.94V50.5H22.56z\"/><path class=\"st3\" d=\"M55.75 70.5h-15a.75.75 0 0 1-.75-.75v-20c0-.41.34-.75.75-.75h15c.41 0 .75.34.75.75v20c0 .41-.34.75-.75.75zM41.5 69H55V50.5H41.5V69zm-24.75 1.5h-6C8.13 70.5 6 68.37 6 65.75v-16c0-.41.34-.75.75-.75h14c.2 0 .39.08.53.22l10 10a.751.751 0 1 1-.53 1.28H17.5v9.25c0 .41-.33.75-.75.75zm-9.25-20v15.25c0 1.79 1.46 3.25 3.25 3.25H16v-9.25c0-.41.34-.75.75-.75h12.19l-8.5-8.5H7.5z\"/><path class=\"st3\" d=\"M40.75 70.5h-24c-.41 0-.75-.34-.75-.75v-10c0-.41.34-.75.75-.75h14c.2 0 .39.08.53.22l10 10c.21.21.28.54.16.82-.11.28-.38.46-.69.46zM17.5 69h21.44l-8.5-8.5H17.5V69z\"/><path class=\"st1\" d=\"M45.74 11.31l-.39-.39c-6.89-6.9-18.07-6.9-24.95.01l-.38.38c-7.04 7.08-7.02 18.53.04 25.59l12.85 12.85 12.81-12.81c7.08-7.08 7.08-18.55.02-25.63z\"/><path class=\"st2\" d=\"M45.72 36.94c6.04-6.04 6.91-15.29 2.64-22.27a20.12 20.12 0 0 0-5.46-.78c-11.05 0-20 8.96-20 20 0 2.54.49 4.97 1.36 7.2l8.66 8.66 12.8-12.81z\"/><path class=\"st3\" d=\"M32.91 50.5c-.19 0-.38-.07-.53-.22L19.53 37.43c-7.34-7.34-7.35-19.29-.03-26.64l.38-.38C23.34 6.92 27.96 5 32.87 5h.01c4.91 0 9.53 1.92 13 5.39l.39.39c7.34 7.36 7.34 19.33-.02 26.69L33.44 50.28c-.15.15-.34.22-.53.22zm-.03-44c-4.52 0-8.76 1.77-11.95 4.97l-.38.38c-6.74 6.77-6.72 17.77.03 24.52L32.9 48.69l12.28-12.28c6.77-6.77 6.78-17.79.01-24.57l-.38-.38A16.69 16.69 0 0 0 32.88 6.5z\"/><circle class=\"st1\" cx=\"32.89\" cy=\"23.89\" r=\"10\"/><path class=\"st2\" d=\"M42.89 23.89c0-1.43-.3-2.79-.85-4.02a9.983 9.983 0 0 0-4.02-.85c-5.52 0-10 4.48-10 10 0 1.43.31 2.79.85 4.02 1.23.54 2.59.85 4.02.85 5.52 0 10-4.48 10-10z\"/><path class=\"st3\" d=\"M32.89 34.64c-5.93 0-10.75-4.82-10.75-10.75s4.82-10.75 10.75-10.75 10.75 4.82 10.75 10.75-4.82 10.75-10.75 10.75zm0-20c-5.1 0-9.25 4.15-9.25 9.25s4.15 9.25 9.25 9.25 9.25-4.15 9.25-9.25-4.15-9.25-9.25-9.25zm2.85 23.67c-.35 0-.66-.24-.73-.6a.76.76 0 0 1 .58-.89c3.74-.78 6.96-3.14 8.83-6.48.2-.36.66-.49 1.02-.29s.49.66.29 1.02a14.734 14.734 0 0 1-9.84 7.22c-.05.02-.1.02-.15.02zm10.85-10.96c-.05 0-.1 0-.15-.01a.744.744 0 0 1-.59-.88c.17-.84.25-1.7.25-2.57 0-.41.34-.75.75-.75s.75.34.75.75c0 .96-.09 1.92-.28 2.85a.74.74 0 0 1-.73.61zM10.75 34.5c-.41 0-.75-.34-.75-.75v-6.78c0-.41.34-.75.75-.75s.75.34.75.75v6.78c0 .41-.33.75-.75.75zm0-10.79c-.41 0-.75-.34-.75-.75v-2.21c0-.41.34-.75.75-.75s.75.34.75.75v2.21c0 .42-.33.75-.75.75zm58-11.21c-.41 0-.75-.34-.75-.75v-4c0-.41.34-.75.75-.75s.75.34.75.75v4c0 .41-.34.75-.75.75z\"/><path class=\"st3\" d=\"M70.75 10.5h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4c.41 0 .75.34.75.75s-.34.75-.75.75z\"/><circle class=\"st3\" cx=\"62.75\" cy=\"9.75\" r=\".75\"/><circle class=\"st3\" cx=\"59.75\" cy=\"9.75\" r=\".75\"/><circle class=\"st3\" cx=\"55.75\" cy=\"9.75\" r=\".75\"/><circle class=\"st3\" cx=\"49.75\" cy=\"9.75\" r=\".75\"/><path class=\"st3\" d=\"M14.75 10.5h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4a.749.749 0 1 1 0 1.5z\"/><path class=\"st3\" d=\"M12.75 12.5c-.41 0-.75-.34-.75-.75v-4c0-.41.34-.75.75-.75s.75.34.75.75v4c0 .41-.33.75-.75.75z\"/></svg>'),(5399,1116,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"layer_1\" x=\"0\" y=\"0\" viewBox=\"0 0 79.5 74.5\" xml:space=\"preserve\"><style>.st0{fill:#f5f5ef}.st1{fill:#fff}.st2{fill:#dbd8c1}.st3{fill:#231f20}</style><circle class=\"st0\" cx=\"58.59\" cy=\"15\" r=\"14\"/><circle class=\"st0\" cx=\"12\" cy=\"33.22\" r=\"12\"/><circle class=\"st0\" cx=\"59.5\" cy=\"54.5\" r=\"20\"/><path class=\"st1\" d=\"M28.3 10.05l-8 6.5V.75h8z\"/><path class=\"st2\" d=\"M28.3 10.05l-5 4.06V6.75c0-1.1.9-2 2-2h3v5.3z\"/><path class=\"st3\" d=\"M20.3 17.3c-.11 0-.22-.02-.32-.07a.753.753 0 0 1-.43-.68V.75c0-.41.34-.75.75-.75h8c.41 0 .75.34.75.75v9.3c0 .23-.1.44-.28.58l-8 6.5c-.13.11-.3.17-.47.17zm.75-15.8v13.48l6.5-5.28V1.5h-6.5zm7.25 8.55z\"/><path class=\"st1\" d=\"M67.75 64.75h-56V30.5l28-22.75 28 22.75z\"/><path class=\"st2\" d=\"M67.75 64.75h-48V38.61l24.2-19.66c.73-.6 1.79-.6 2.52 0l21.28 17.29v28.51z\"/><path class=\"st3\" d=\"M67.75 65.5h-56c-.41 0-.75-.34-.75-.75V30.5c0-.23.1-.44.28-.58l28-22.75c.28-.22.67-.22.95 0l28 22.75c.18.14.28.36.28.58v34.25c-.01.41-.34.75-.76.75zM12.5 64H67V30.86L39.75 8.72 12.5 30.86V64z\"/><path class=\"st1\" d=\"M19.75 38.75h16v26h-16z\"/><path class=\"st2\" d=\"M35.75 44.75h-8c-1.1 0-2 .9-2 2v18h10v-20z\"/><path class=\"st3\" d=\"M35.75 65.5h-16c-.41 0-.75-.34-.75-.75v-26c0-.41.34-.75.75-.75h16c.41 0 .75.34.75.75v26c0 .41-.33.75-.75.75zM20.5 64H35V39.5H20.5V64z\"/><path class=\"st3\" d=\"M33.72 52.75c0 .54-.43.97-.97.97s-.97-.43-.97-.97.43-.97.97-.97.97.43.97.97zM71.75 65.5h-64c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h64a.749.749 0 1 1 0 1.5zM30.3 1.5h-12c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h12a.749.749 0 1 1 0 1.5z\"/><path class=\"st1\" d=\"M7.75 33.75l32-26 32 26v-7l-32-26-32 26z\"/><path class=\"st2\" d=\"M20.3 23.51L39.75 7.75l32 26v-3.81L40.91 4.9c-.73-.6-1.78-.6-2.52 0l-17.34 14c-.47.38-.74.95-.74 1.56v3.05z\"/><path class=\"st3\" d=\"M71.75 34.5c-.17 0-.34-.06-.47-.17L39.75 8.72 8.23 34.33a.75.75 0 0 1-.8.09.738.738 0 0 1-.43-.67v-7c0-.23.1-.44.28-.58l32-26c.28-.22.67-.22.95 0l32 26c.18.14.28.36.28.58v7c0 .29-.17.55-.43.68-.11.05-.22.07-.33.07zM39.75 7c.17 0 .33.06.47.17L71 32.18v-5.07L39.75 1.72 8.5 27.11v5.07L39.28 7.17c.14-.11.3-.17.47-.17z\"/><path class=\"st1\" d=\"M24.75 29.85l15-12.19 15 12.19z\"/><path class=\"st2\" d=\"M33.36 29.85l7.24-5.88c.73-.6 1.79-.6 2.52 0l7.24 5.88h-17z\"/><path class=\"st3\" d=\"M54.75 30.6h-30c-.32 0-.6-.2-.71-.5-.11-.3-.01-.63.23-.83l15-12.19c.28-.22.67-.22.95 0l15 12.19c.25.2.34.53.23.83-.1.3-.38.5-.7.5zm-27.89-1.5h25.78L39.75 18.62 26.86 29.1z\"/><path class=\"st1\" d=\"M43.75 38.75h16v16h-16z\"/><path class=\"st2\" d=\"M59.75 54.75h-12v-10c0-1.1.9-2 2-2h10v12z\"/><path class=\"st3\" d=\"M51.75 55.5c-.41 0-.75-.34-.75-.75v-16c0-.41.34-.75.75-.75s.75.34.75.75v16c0 .42-.33.75-.75.75z\"/><path class=\"st3\" d=\"M59.75 47.5h-16c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h16a.749.749 0 1 1 0 1.5z\"/><path class=\"st3\" d=\"M59.75 55.5h-16c-.41 0-.75-.34-.75-.75v-16c0-.41.34-.75.75-.75h16c.41 0 .75.34.75.75v16c0 .42-.33.75-.75.75zM44.5 54H59V39.5H44.5V54zm22.37-35.01c-.16 0-.33-.05-.47-.17a.748.748 0 0 1-.12-1.05l2.5-3.12a.748.748 0 0 1 1.17.93l-2.5 3.12a.72.72 0 0 1-.58.29z\"/><path class=\"st3\" d=\"M69.68 18.68c-.16 0-.33-.05-.47-.17l-3.12-2.5a.748.748 0 0 1 .93-1.17l3.12 2.5c.32.26.38.73.12 1.05a.72.72 0 0 1-.58.29zm-5.77-6.34c.32.26.37.73.12 1.05-.26.32-.73.38-1.05.12a.757.757 0 0 1-.12-1.05c.26-.33.73-.38 1.05-.12zm-2.34-1.88c.32.26.37.73.12 1.05-.26.32-.73.38-1.05.12a.757.757 0 0 1-.12-1.05c.26-.33.73-.38 1.05-.12zm-3.12-2.5a.748.748 0 0 1-.93 1.17.748.748 0 0 1-.12-1.05c.26-.33.73-.38 1.05-.12zM53.77 4.2a.748.748 0 0 1-.93 1.17.748.748 0 0 1-.12-1.05c.26-.33.73-.38 1.05-.12zM7.75 54.5c-.41 0-.75-.33-.75-.75v-7.78c0-.41.34-.75.75-.75s.75.34.75.75v7.78c0 .42-.33.75-.75.75zm0-11.78c-.41 0-.75-.34-.75-.75v-2.21c0-.42.34-.76.75-.76s.75.34.75.75v2.21c0 .42-.33.76-.75.76zm64 17.78c-.41 0-.75-.34-.75-.75V48.97c0-.41.34-.75.75-.75s.75.34.75.75v10.79c0 .41-.33.74-.75.74zm0-14.78c-.41 0-.75-.34-.75-.75v-2.21c0-.41.34-.75.75-.75s.75.34.75.75v2.21c0 .41-.33.75-.75.75zm-10 9.78h-20c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h20a.749.749 0 1 1 0 1.5zm-24-16h-20c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h20a.749.749 0 1 1 0 1.5zm-26-22h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4a.749.749 0 1 1 0 1.5z\"/><path class=\"st3\" d=\"M9.75 19.5c-.41 0-.75-.34-.75-.75v-4c0-.41.34-.75.75-.75s.75.34.75.75v4c0 .41-.33.75-.75.75zm6-12h-4c-.41 0-.75-.34-.75-.75s.34-.75.75-.75h4a.749.749 0 1 1 0 1.5z\"/><path class=\"st3\" d=\"M13.75 9.5c-.41 0-.75-.34-.75-.75v-4c0-.41.34-.75.75-.75s.75.34.75.75v4c0 .41-.33.75-.75.75zm26 21.1c-.41 0-.75-.34-.75-.75V17.66c0-.41.34-.75.75-.75s.75.34.75.75v12.19c0 .41-.33.75-.75.75z\"/></svg>'),(5400,1048,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x33_\" x=\"0\" y=\"0\" viewBox=\"0 0 130 126.87\" xml:space=\"preserve\"><style>.st0{fill:#f5a44a}.st2{fill:#fff}.st3{fill:#dbd7c1}.st5{fill:#f1f2f2}.st6{fill:#e78967}.st7{fill:#eca185}.st8{fill:#fffffe}.st9{opacity:.3}.st10{fill:#231f20}.st11{fill:#93a9c3}.st12{fill:#fedac6}.st14{fill:#f9bda9}.st16{fill:#adcac8}.st18{fill:#cedfde}.st19{fill:#525961}.st20{fill:#d7d5d5}.st21{fill:#ffe6d9}.st22{fill:#98a0a7}.st23{opacity:.46}.st25{fill:#e6e7e8}</style><g id=\"XMLID_33_\"><g id=\"XMLID_876_\"><path class=\"st0\" d=\"M69.34 41.18h-.44c-.87 0-1.58-.71-1.58-1.58L66.78 23c0-1.8.82-3.51 2.22-4.63l1.95-1.56c-5.06-3.15-3.73-8.34-3.73-8.34 2.33 3.5 15.04 3.45 22.43 4.59 1.75.27 3.11 1.66 3.34 3.42l.18 1.38c1.45 0 2.62 1.17 2.62 2.62l-.54 19.13c0 .87-.71 1.58-1.58 1.58H69.34z\" id=\"XMLID_919_\"/><g id=\"XMLID_917_\"><path d=\"M67.22 10.08c2.33 3.5 15.04 3.45 22.43 4.59 1.75.27 2.62 1.15 2.85 2.91l.18 1.38c1.33 0 2.9 1.5 3.08 2.77l.04-1.27c0-1.45-1.17-2.62-2.62-2.62L93 16.46a3.978 3.978 0 0 0-3.34-3.42c-7.39-1.14-20.09-1.09-22.43-4.59 0 0-.26.99-.12 2.37.04-.46.11-.74.11-.74z\" fill=\"#ad674d\" id=\"XMLID_918_\"/></g><g id=\"XMLID_916_\"><path id=\"XMLID_1543_\" d=\"M93.73 41.76h-24.9a2.1 2.1 0 0 1-2.1-2.1l-.54-16.65c0-2.01.89-3.86 2.44-5.11l1.33-1.07c-4.37-3.21-3.45-7.92-3.32-8.47l.09-.39.79-.12.22.34c1.57 2.27 8.75 2.93 15.09 3.52 2.51.23 4.89.45 6.91.76 2 .31 3.57 1.92 3.83 3.92l.12.92c1.52.25 2.69 1.57 2.69 3.16l-.54 19.22c-.01 1.13-.95 2.07-2.11 2.07zM67.64 9.71c-.07 1.58.31 4.54 3.61 6.59l.7.44-2.59 2.08A5.339 5.339 0 0 0 67.35 23l.54 16.65c0 .53.42.95.93.95h24.9c.52 0 .93-.42.93-.93l.54-19.22c0-1.11-.91-2.02-2.04-2.02h-.51l-.24-1.89a3.394 3.394 0 0 0-2.85-2.91c-1.99-.31-4.34-.52-6.84-.75-6.09-.58-12.37-1.16-15.07-3.17z\"/></g><path class=\"st2\" d=\"M95.75 35.83a1.675 1.675 0 0 1-3.35 0V34.2c0-.92.75-1.67 1.67-1.67.92 0 1.68.75 1.68 1.67v1.63z\" id=\"XMLID_335_\"/><g id=\"XMLID_332_\"><path id=\"XMLID_1540_\" d=\"M94.07 38.08c-1.24 0-2.26-1.01-2.26-2.26V34.2c0-1.24 1.01-2.26 2.26-2.26 1.25 0 2.26 1.01 2.26 2.26v1.62c0 1.25-1.01 2.26-2.26 2.26zm0-4.97c-.6 0-1.09.49-1.09 1.09v1.62c0 .6.49 1.09 1.09 1.09.6 0 1.09-.49 1.09-1.09V34.2c0-.6-.49-1.09-1.09-1.09z\"/></g><path class=\"st2\" d=\"M70.33 35.83a1.675 1.675 0 0 1-3.35 0V34.2c0-.92.75-1.67 1.67-1.67.92 0 1.68.75 1.68 1.67v1.63z\" id=\"XMLID_331_\"/><g id=\"XMLID_330_\"><path id=\"XMLID_1537_\" d=\"M68.66 38.08c-1.24 0-2.26-1.01-2.26-2.26V34.2c0-1.24 1.01-2.26 2.26-2.26 1.25 0 2.26 1.01 2.26 2.26v1.62a2.27 2.27 0 0 1-2.26 2.26zm0-4.97c-.6 0-1.09.49-1.09 1.09v1.62c0 .6.49 1.09 1.09 1.09.6 0 1.09-.49 1.09-1.09V34.2c0-.6-.49-1.09-1.09-1.09z\"/></g><path class=\"st3\" d=\"M96.55 126.29v-59.7c0-8.44-6.9-15.34-15.34-15.34s-15.34 6.9-15.34 15.34v59.7h30.68z\" id=\"XMLID_329_\"/><path d=\"M81.21 51.24c-8.44 0-15.34 6.9-15.34 15.34v3.35c0-8.44 6.9-15.34 15.34-15.34s15.34 6.9 15.34 15.34v-3.35c0-8.43-6.9-15.34-15.34-15.34z\" fill=\"#ecebeb\" id=\"XMLID_910_\"/><g id=\"XMLID_328_\"><path id=\"XMLID_1536_\" d=\"M97.14 126.29h-1.17v-59.7c0-8.14-6.62-14.76-14.76-14.76s-14.76 6.62-14.76 14.76v59.7h-1.17v-59.7c0-8.78 7.14-15.92 15.92-15.92s15.92 7.14 15.92 15.92v59.7z\"/></g><g id=\"XMLID_327_\"><path id=\"XMLID_1535_\" d=\"M73.24 65.52h1.17v60.77h-1.17z\"/></g><g id=\"XMLID_326_\"><path id=\"XMLID_1534_\" d=\"M88.89 65.52h1.17v60.77h-1.17z\"/></g><path class=\"st2\" d=\"M80.94 57.45a3.34 3.34 0 0 1-3.34-3.34v-7.06a3.34 3.34 0 1 1 6.68 0v7.06c0 1.84-1.5 3.34-3.34 3.34z\" id=\"XMLID_906_\"/><g id=\"XMLID_905_\"><path id=\"XMLID_1531_\" d=\"M80.94 58.03a3.93 3.93 0 0 1-3.93-3.93v-7.06a3.93 3.93 0 0 1 7.86 0v7.06c0 2.17-1.77 3.93-3.93 3.93zm0-13.75c-1.52 0-2.76 1.24-2.76 2.76v7.06c0 1.52 1.24 2.76 2.76 2.76 1.52 0 2.76-1.24 2.76-2.76v-7.06c0-1.52-1.24-2.76-2.76-2.76z\"/></g><path class=\"st2\" d=\"M81.21 50.85c-6.99 0-12.72-5.72-12.72-12.72v-8.62c0-6.99 5.72-12.72 12.72-12.72 6.99 0 12.72 5.72 12.72 12.72v8.62c0 7-5.72 12.72-12.72 12.72z\" id=\"XMLID_904_\"/><path class=\"st5\" d=\"M81.21 16.79c-.36 0-.72.02-1.08.05 6.49.55 11.64 6.04 11.64 12.67v8.62c0 6.63-5.14 12.11-11.64 12.67.36.03.72.05 1.08.05 6.99 0 12.72-5.72 12.72-12.72v-8.62c0-6.99-5.72-12.72-12.72-12.72z\" id=\"XMLID_903_\"/><g id=\"XMLID_894_\"><path id=\"XMLID_10_\" class=\"st3\" d=\"M82.03 50.82c5.27-.34 9.7-3.93 11.28-8.77-2.8-.16-7.42 1.26-7.42 1.26v-.64c0-.8-.65-1.44-1.44-1.44h-7.1c-.8 0-1.44.65-1.44 1.44v.64s-4.15-1.3-6.77-1.21c1.59 4.82 6.01 8.39 11.26 8.73.08 0 .16.01.24.01.19.01.38.01.58.01.19 0 .39-.01.58-.01.07-.01.15-.02.23-.02z\"/></g><g id=\"XMLID_893_\"><path id=\"XMLID_1527_\" d=\"M81.21 51.43c-7.33 0-13.3-5.97-13.3-13.3v-8.62c0-7.33 5.97-13.3 13.3-13.3 7.34 0 13.3 5.97 13.3 13.3v8.62c0 7.34-5.96 13.3-13.3 13.3zm0-34.05c-6.69 0-12.13 5.44-12.13 12.13v8.62c0 6.69 5.44 12.13 12.13 12.13s12.13-5.44 12.13-12.13v-8.62c.01-6.69-5.44-12.13-12.13-12.13z\"/></g><path class=\"st6\" d=\"M86.34 15.28s-7.9-2.22-15.94 3.82l-2.22 6.74s13.94 4.4 22.62-7.88c2.51-3.54-4.46-2.68-4.46-2.68z\" id=\"XMLID_892_\"/><path class=\"st6\" d=\"M88.38 18.35s-2.05 8 6.77 9.85v-3.9l-.51-3.28-6.26-2.67z\" id=\"XMLID_891_\"/><path class=\"st0\" d=\"M94.64 21.01L89.91 19c.3-.33.61-.67.9-1.04 3.01-3.77-4.46-2.68-4.46-2.68s-7.9-2.22-15.94 3.82l-2.22 6.74s10.73 3.09 20.01-5.15c.1 2.51 1.24 6.31 6.97 7.51v-3.9l-.53-3.29z\" id=\"XMLID_890_\"/><g id=\"XMLID_888_\"><path class=\"st7\" d=\"M89.14 20.16a.897.897 0 0 0-1.37-.61c-8.64 5.42-17.07 6.82-19.6 6.29 0 0 10.73 3.09 20.01-5.15.1 2.51.32 6.08 6.04 7.28-3.38-2.22-4.67-5.37-5.08-7.81z\" id=\"XMLID_889_\"/></g><g id=\"XMLID_887_\"><path id=\"XMLID_1526_\" d=\"M94.56 28.66c-5.64-1.19-6.66-4.82-6.88-6.86-9.33 7.37-19.98 4.53-20.09 4.5l.31-1.12c.1.03 10.72 2.84 19.73-4.85.21-.17.49-.22.73-.11l.33.14.08.46c.12 2.56.9 5.62 6.02 6.7l-.23 1.14z\"/></g><g id=\"XMLID_886_\"><path id=\"XMLID_1523_\" d=\"M77.48 37.33h-6.54c-1.61 0-2.92-1.31-2.92-2.92v-3.07c0-1.61 1.31-2.92 2.92-2.92h6.54c1.61 0 2.92 1.31 2.92 2.92v3.07a2.93 2.93 0 0 1-2.92 2.92zm-6.54-7.74c-.97 0-1.75.79-1.75 1.75v3.07c0 .97.79 1.75 1.75 1.75h6.54c.97 0 1.75-.79 1.75-1.75v-3.07c0-.97-.79-1.75-1.75-1.75h-6.54z\"/></g><g id=\"XMLID_885_\"><path id=\"XMLID_1520_\" d=\"M91.48 37.33h-6.54c-1.61 0-2.92-1.31-2.92-2.92v-3.07c0-1.61 1.31-2.92 2.92-2.92h6.54c1.61 0 2.92 1.31 2.92 2.92v3.07c0 1.61-1.31 2.92-2.92 2.92zm-6.54-7.74c-.97 0-1.75.79-1.75 1.75v3.07c0 .97.79 1.75 1.75 1.75h6.54c.97 0 1.75-.79 1.75-1.75v-3.07c0-.97-.79-1.75-1.75-1.75h-6.54z\"/></g><g id=\"XMLID_883_\"><path d=\"M73.24 31.77a1.318 1.318 0 0 0 .97 2.21 1.319 1.319 0 0 0 .97-2.21h-1.94z\" id=\"XMLID_884_\"/></g><g id=\"XMLID_881_\"><path d=\"M87.55 31.77a1.318 1.318 0 0 0 .97 2.21 1.319 1.319 0 0 0 .97-2.21h-1.94z\" id=\"XMLID_882_\"/></g><g id=\"XMLID_880_\"><path id=\"XMLID_1519_\" d=\"M79.81 32h2.48v1.75h-2.48z\"/></g><g id=\"XMLID_879_\"><path id=\"XMLID_1518_\" d=\"M81.92 40.8H80.4v-1.17h1.52c.19 0 .35-.16.35-.35 0-.28-.16-.44-.35-.44h-1.35v-3.26h1.17v2.09h.18c.84 0 1.52.68 1.52 1.52 0 .93-.68 1.61-1.52 1.61z\"/></g><path class=\"st8\" d=\"M84.62 43.43a3.34 3.34 0 1 1-6.68 0h6.68z\" id=\"XMLID_878_\"/><g id=\"XMLID_877_\"><path id=\"XMLID_1515_\" d=\"M81.28 47.36a3.93 3.93 0 0 1-3.93-3.93v-.58h7.86v.58c0 2.17-1.77 3.93-3.93 3.93zm-2.7-3.35a2.776 2.776 0 0 0 2.7 2.18c1.32 0 2.43-.93 2.7-2.18h-5.4z\"/></g></g><g id=\"XMLID_875_\" class=\"st9\"><path id=\"XMLID_1510_\" class=\"st10\" d=\"M96.96 126.29v-59.7c0-.84-.07-1.67-.2-2.48h-.51c-7.34 0-13.31 5.97-13.31 13.31v7.14c-.41.38-.67.92-.67 1.52v1.62c0 1.07.81 1.94 1.85 2.06.34 5.69 4.26 10.42 9.53 11.97v1.02c-6.74 1.78-11.72 7.93-11.72 15.22v8.33h15.03z\"/></g><g id=\"XMLID_843_\"><path class=\"st11\" d=\"M119.95 98.2h-16.44V66.75a6.6 6.6 0 0 1 13.2 0v28.27c-.03 1.47 1 3.18 3.24 3.18z\" id=\"XMLID_874_\"/><g id=\"XMLID_873_\"><path id=\"XMLID_1511_\" d=\"M119.95 98.78h-17.02V66.75c0-3.96 3.22-7.18 7.18-7.18 3.96 0 7.18 3.22 7.18 7.18v28.27c-.01.7.26 1.39.73 1.86.48.49 1.13.73 1.93.73v1.17zm-15.86-1.16h13.01c-.64-.69-1-1.63-.98-2.6V66.75c0-3.32-2.7-6.01-6.01-6.01s-6.01 2.7-6.01 6.01v30.87z\"/></g><g id=\"XMLID_870_\"><path class=\"st11\" d=\"M113.08 85.71v-8.3c0-7.1-5.81-12.9-12.9-12.9h-2.31c-7.1 0-12.9 5.81-12.9 12.9v8.3h28.11z\" id=\"XMLID_872_\"/><g id=\"XMLID_871_\"><path id=\"XMLID_1455_\" class=\"st11\" d=\"M113.08 85.71v-8.3c0-7.1-5.81-12.9-12.9-12.9h-2.31c-7.1 0-12.9 5.81-12.9 12.9v8.3h28.11z\"/><path id=\"XMLID_1507_\" d=\"M113.67 86.29H84.38v-8.88c0-7.44 6.05-13.49 13.49-13.49h2.31c7.44 0 13.49 6.05 13.49 13.49v8.88zm-28.12-1.16h26.95v-7.71c0-6.79-5.53-12.32-12.32-12.32h-2.31c-6.79 0-12.32 5.53-12.32 12.32v7.71z\"/></g></g><path class=\"st12\" d=\"M113.6 87.69c0 .92-.75 1.67-1.67 1.67-.92 0-1.67-.75-1.67-1.67v-1.62c0-.92.75-1.67 1.67-1.67.92 0 1.67.75 1.67 1.67v1.62z\" id=\"XMLID_325_\"/><g id=\"XMLID_324_\"><path id=\"XMLID_1504_\" d=\"M111.93 90.24c-1.41 0-2.55-1.14-2.55-2.55v-1.62c0-1.41 1.14-2.55 2.55-2.55s2.55 1.14 2.55 2.55v1.62c0 1.41-1.15 2.55-2.55 2.55zm0-4.97c-.44 0-.8.36-.8.8v1.62c0 .44.36.8.8.8.44 0 .8-.36.8-.8v-1.62a.809.809 0 0 0-.8-.8z\"/></g><path class=\"st12\" d=\"M87.64 87.69c0 .92-.75 1.67-1.67 1.67-.92 0-1.67-.75-1.67-1.67v-1.62c0-.92.75-1.67 1.67-1.67.92 0 1.67.75 1.67 1.67v1.62z\" id=\"XMLID_323_\"/><g id=\"XMLID_322_\"><path id=\"XMLID_1501_\" d=\"M85.97 90.24c-1.41 0-2.55-1.14-2.55-2.55v-1.62c0-1.41 1.14-2.55 2.55-2.55 1.4 0 2.55 1.14 2.55 2.55v1.62c0 1.41-1.15 2.55-2.55 2.55zm0-4.97c-.44 0-.8.36-.8.8v1.62c0 .44.36.8.8.8.44 0 .8-.36.8-.8v-1.62c0-.44-.36-.8-.8-.8z\"/></g><path class=\"st0\" d=\"M114.64 126.29v-8.33c0-8.44-6.9-15.34-15.34-15.34s-15.34 6.9-15.34 15.34v8.33h30.68z\" id=\"XMLID_321_\"/><path d=\"M99.3 102.62c-8.44 0-15.34 6.9-15.34 15.34v3.35c0-8.44 6.9-15.34 15.34-15.34s15.34 6.9 15.34 15.34v-3.35c0-8.44-6.9-15.34-15.34-15.34z\" fill=\"#ef9d78\" id=\"XMLID_864_\"/><g id=\"XMLID_320_\"><path id=\"XMLID_1500_\" d=\"M115.22 126.29h-1.17v-8.33c0-8.14-6.62-14.76-14.76-14.76s-14.76 6.62-14.76 14.76v8.33h-1.17v-8.33c0-8.78 7.14-15.92 15.92-15.92s15.92 7.14 15.92 15.92v8.33z\"/></g><g id=\"XMLID_319_\"><path id=\"XMLID_1499_\" d=\"M91.33 116.89h1.17v9.4h-1.17z\"/></g><g id=\"XMLID_308_\"><path id=\"XMLID_1498_\" d=\"M106.98 116.89h1.17v9.4h-1.17z\"/></g><path class=\"st2\" d=\"M99.03 108.82a3.34 3.34 0 0 1-3.34-3.34v-7.06a3.34 3.34 0 1 1 6.68 0v7.06c0 1.84-1.5 3.34-3.34 3.34z\" id=\"XMLID_860_\"/><g id=\"XMLID_859_\"><path id=\"XMLID_1495_\" d=\"M99.03 109.4a3.93 3.93 0 0 1-3.93-3.93v-7.06a3.93 3.93 0 0 1 7.86 0v7.06c-.01 2.17-1.77 3.93-3.93 3.93zm0-13.75c-1.52 0-2.76 1.24-2.76 2.76v7.06c0 1.52 1.24 2.76 2.76 2.76 1.52 0 2.76-1.24 2.76-2.76v-7.06c0-1.52-1.24-2.76-2.76-2.76z\"/></g><path class=\"st2\" d=\"M111.93 80.48v8.47c0 7.1-5.81 12.9-12.9 12.9-7.1 0-12.9-5.81-12.9-12.9v-8.47c6.38 0 11.39-5.41 12.79-7.08.2-.25.58-.25.79 0 1.4 1.67 6.42 7.08 12.22 7.08z\" id=\"XMLID_858_\"/><path class=\"st5\" d=\"M99.7 73.4a.523.523 0 0 0-.79 0 25 25 0 0 1-.96 1.07c2.1 2.22 6.41 6.01 11.27 6.01v8.47c0 6.64-5.08 12.15-11.55 12.83.44.05.9.07 1.35.07 7.1 0 12.9-5.81 12.9-12.9v-8.47c-5.79 0-10.81-5.41-12.22-7.08z\" id=\"XMLID_857_\"/><g id=\"XMLID_856_\"><path id=\"XMLID_1492_\" d=\"M99.03 102.44c-7.44 0-13.49-6.05-13.49-13.49V79.9h.58c6.13 0 10.99-5.26 12.34-6.87a1.098 1.098 0 0 1 1.68 0c1.36 1.61 6.24 6.88 11.79 6.88h.58v9.06c0 7.42-6.05 13.47-13.48 13.47zM86.71 81.05v7.9c0 6.79 5.53 12.32 12.32 12.32s12.32-5.53 12.32-12.32v-7.91c-5.79-.34-10.7-5.62-12.09-7.28-1.29 1.67-6.2 6.98-12.55 7.29z\"/></g><g id=\"XMLID_855_\"><path id=\"XMLID_1491_\" d=\"M99.66 91.34h-.98v-1.17h.98c.19 0 .35-.16.35-.35 0-.28-.16-.44-.35-.44h-.81v-3.26h1.17v2.14c.67.16 1.16.76 1.16 1.48.01.91-.68 1.6-1.52 1.6z\"/></g><path class=\"st2\" d=\"M102.37 93.97a3.34 3.34 0 1 1-6.68 0h6.68z\" id=\"XMLID_854_\"/><g id=\"XMLID_853_\"><path id=\"XMLID_1488_\" d=\"M99.03 97.9a3.93 3.93 0 0 1-3.93-3.93v-.58h7.86v.58c-.01 2.17-1.77 3.93-3.93 3.93zm-2.7-3.35a2.776 2.776 0 0 0 2.7 2.18c1.32 0 2.43-.93 2.7-2.18h-5.4z\"/></g><path class=\"st14\" d=\"M92.65 91.29h-1.49c-.59 0-1.08-.49-1.08-1.08 0-.59.49-1.08 1.08-1.08h1.49c.59 0 1.08.49 1.08 1.08.01.6-.48 1.08-1.08 1.08z\" id=\"XMLID_852_\"/><path class=\"st14\" d=\"M106.08 91.87h-1.49c-.59 0-1.08-.49-1.08-1.08 0-.59.49-1.08 1.08-1.08h1.49c.59 0 1.08.49 1.08 1.08 0 .6-.49 1.08-1.08 1.08z\" id=\"XMLID_851_\"/><path d=\"M94.19 84.78a.97.97 0 0 1-1.94 0 .97.97 0 0 1 1.94 0z\" id=\"XMLID_850_\"/><path d=\"M105.79 84.78a.97.97 0 0 1-1.94 0 .97.97 0 0 1 1.94 0z\" id=\"XMLID_849_\"/><g id=\"XMLID_848_\"><path id=\"XMLID_1487_\" transform=\"rotate(-15.291 92.847 82.356)\" d=\"M90.82 81.78h4.1v1.17h-4.1z\"/></g><g id=\"XMLID_847_\"><path id=\"XMLID_1486_\" transform=\"rotate(-74.704 105.306 82.366)\" d=\"M104.72 80.32h1.17v4.1h-1.17z\"/></g><path d=\"M106.81 67.12l-5.03-2.06a1.399 1.399 0 0 1-.76-1.82c.29-.71 1.11-1.05 1.82-.76l5.03 2.06c.71.29 1.05 1.11.76 1.82-.29.71-1.11 1.05-1.82.76z\" fill=\"#272f39\" id=\"XMLID_362_\"/><g id=\"XMLID_360_\"><path id=\"XMLID_1483_\" d=\"M107.34 67.81c-.25 0-.51-.05-.75-.15l-5.03-2.06a1.972 1.972 0 0 1-1.08-2.58c.41-1.01 1.57-1.5 2.58-1.08l5.03 2.06c.49.2.87.58 1.07 1.07a2 2 0 0 1 .01 1.52 1.98 1.98 0 0 1-1.83 1.22zm-.31-1.23c.2.08.42.08.62 0s.36-.24.44-.44a.83.83 0 0 0 0-.62.792.792 0 0 0-.44-.44l-5.03-2.06a.814.814 0 0 0-1.06.44c-.17.41.03.89.44 1.06l5.03 2.06z\"/></g></g><g id=\"XMLID_721_\"><path class=\"st16\" d=\"M59.31 52.99c-2.64-6.06-.89-17.17-.89-17.17 0-8.76-7.1-15.87-15.87-15.87-8.76 0-15.87 7.1-15.87 15.87 0 0 2.11 10.97-.76 17.13-.68 1.47.09 3.2 1.66 3.59l15.38 3.83 14.68-3.82c1.55-.41 2.31-2.1 1.67-3.56z\" id=\"XMLID_830_\"/><path d=\"M29 56.54c-1.57-.39-2.35-2.12-1.66-3.59 2.87-6.16.76-17.13.76-17.13 0-8.53 6.73-15.48 15.16-15.85-.23-.01-.47-.02-.71-.02-8.76 0-15.87 7.1-15.87 15.87 0 0 2.11 10.97-.76 17.13-.68 1.47.09 3.2 1.66 3.59l15.38 3.83.69-.18L29 56.54z\" fill=\"#829896\" id=\"XMLID_829_\"/><g id=\"XMLID_828_\"><path id=\"XMLID_1480_\" d=\"M42.97 60.97l-15.02-3.74a3.534 3.534 0 0 1-2.32-1.86 3.53 3.53 0 0 1-.09-2.98c2.55-5.98.6-16.36.58-16.46-.01-9.18 7.37-16.56 16.44-16.56s16.45 7.38 16.45 16.45c-.02.2-1.7 11.09.83 16.92.37.85.34 1.82-.07 2.66-.42.87-1.2 1.51-2.14 1.75l-14.66 3.82zm-.41-40.44c-8.43 0-15.28 6.86-15.28 15.28.07.33 2.03 10.72-.66 17.03-.27.65-.25 1.37.06 2 .31.63.88 1.08 1.56 1.25l14.73 3.67 14.38-3.74c.61-.16 1.11-.57 1.38-1.13.27-.54.28-1.14.04-1.69-2.67-6.15-.99-17.02-.92-17.48-.01-8.33-6.87-15.19-15.29-15.19z\"/></g><path class=\"st0\" d=\"M58.08 126.29V72.53c0-8.44-6.9-15.34-15.34-15.34S27.4 64.09 27.4 72.53v53.76h30.68z\" id=\"XMLID_294_\"/><g id=\"XMLID_293_\"><path id=\"XMLID_1479_\" d=\"M34.77 71.47h1.17v54.82h-1.17z\"/></g><g id=\"XMLID_292_\"><path id=\"XMLID_1478_\" d=\"M50.43 71.47h1.17v54.82h-1.17z\"/></g><path class=\"st2\" d=\"M36.81 65.87l.87.54c3.3 2.06 7.5 1.98 10.71-.2a6.986 6.986 0 0 0 3.06-5.77v-.51a15.233 15.233 0 0 0-8.71-2.73c-3.23 0-6.23 1.01-8.71 2.73v.93a5.96 5.96 0 0 0 2.78 5.01z\" id=\"XMLID_824_\"/><g id=\"XMLID_823_\"><path id=\"XMLID_1477_\" d=\"M42.88 68.49c-1.91 0-3.82-.53-5.51-1.58l-.87-.54a6.45 6.45 0 0 1-3.05-5.51v-.9h1.17v.9c0 1.85.94 3.54 2.5 4.52l.87.54a9.238 9.238 0 0 0 10.08-.19 6.397 6.397 0 0 0 2.8-5.29v-.53h1.17v.53c0 2.51-1.24 4.84-3.31 6.25-1.77 1.2-3.81 1.8-5.85 1.8z\"/></g><g id=\"XMLID_822_\"><path id=\"XMLID_1476_\" d=\"M42.52 65.65h1.17v2.67h-1.17z\"/></g><g id=\"XMLID_289_\"><path id=\"XMLID_1475_\" d=\"M58.67 126.29H57.5V72.53c0-8.14-6.62-14.76-14.76-14.76s-14.76 6.62-14.76 14.76v53.76h-1.17V72.53c0-8.78 7.14-15.92 15.92-15.92 8.78 0 15.92 7.14 15.92 15.92v53.76z\"/></g><path class=\"st2\" d=\"M42.74 61.2a3.34 3.34 0 0 1-3.34-3.34V50.8a3.34 3.34 0 1 1 6.68 0v7.06c.01 1.84-1.49 3.34-3.34 3.34z\" id=\"XMLID_819_\"/><g id=\"XMLID_818_\"><path id=\"XMLID_1474_\" d=\"M46.67 58.79H45.5v-8.93c0-1.01-.82-1.83-1.83-1.83h-1.86c-1.01 0-1.83.82-1.83 1.83v8.93h-1.17v-8.93a3 3 0 0 1 2.99-3h1.86c1.65 0 3 1.34 3 3v8.93z\"/></g><path class=\"st2\" d=\"M33.03 41.68c0 1.3-1.05 2.35-2.35 2.35s-2.35-1.05-2.35-2.35 1.05-2.35 2.35-2.35 2.35 1.05 2.35 2.35z\" id=\"XMLID_814_\"/><g id=\"XMLID_812_\"><path id=\"XMLID_1471_\" d=\"M30.68 44.21c-1.62 0-2.93-1.32-2.93-2.93 0-1.62 1.31-2.93 2.93-2.93s2.93 1.31 2.93 2.93-1.31 2.93-2.93 2.93zm0-4.7c-.97 0-1.77.79-1.77 1.76a1.765 1.765 0 0 0 3.53 0c0-.97-.79-1.76-1.76-1.76z\"/></g><circle class=\"st2\" cx=\"55.55\" cy=\"41.68\" r=\"2.35\" id=\"XMLID_811_\"/><g id=\"XMLID_810_\"><path id=\"XMLID_1468_\" d=\"M55.55 44.21c-1.62 0-2.93-1.32-2.93-2.93 0-1.62 1.31-2.93 2.93-2.93s2.93 1.31 2.93 2.93a2.921 2.921 0 0 1-2.93 2.93zm0-4.7c-.97 0-1.76.79-1.76 1.76s.79 1.76 1.76 1.76 1.77-.79 1.77-1.76-.79-1.76-1.77-1.76z\"/></g><path class=\"st2\" d=\"M38.61 29.55c-4.53 0-8.2 3.67-8.2 8.2v5.02c0 6.98 5.66 12.63 12.63 12.63 6.98 0 12.63-5.66 12.63-12.63v-5.3c0-4.56-3.21-7.92-3.69-7.92H38.61z\" id=\"XMLID_809_\"/><path class=\"st5\" d=\"M51.99 29.55h-1.51c1.09 1.34 2.49 3.83 2.49 6.84v5.3c0 6.98-5.66 12.63-12.63 12.63-1.15 0-2.26-.16-3.32-.44 1.79.97 3.84 1.52 6.02 1.52 6.98 0 12.63-5.66 12.63-12.63v-5.3c.01-4.56-3.2-7.92-3.68-7.92z\" id=\"XMLID_808_\"/><g id=\"XMLID_807_\"><path id=\"XMLID_1465_\" d=\"M43.04 56c-7.29 0-13.22-5.93-13.22-13.22v-5.59c0-4.54 3.69-8.23 8.23-8.23h8.54c2.76 0 5.58.26 7.44 2.14 1.53 1.55 2.26 4.01 2.23 7.53v4.14c0 7.3-5.93 13.23-13.22 13.23zm-4.99-25.87c-3.89 0-7.06 3.17-7.06 7.06v5.59c0 6.65 5.4 12.05 12.05 12.05 6.64 0 12.05-5.41 12.05-12.05v-4.14c.03-3.2-.59-5.39-1.89-6.71-1.48-1.49-3.71-1.8-6.61-1.8h-8.54z\"/></g><g id=\"XMLID_806_\"><path id=\"XMLID_1464_\" d=\"M42.35 51.77h1.74v1.17h-1.74z\"/></g><path class=\"st16\" d=\"M31.99 27.98s12.73 10.19 24.22 6v-4.43l-8.67-5.46-13.97.94-1.58 2.95z\" id=\"XMLID_805_\"/><g id=\"XMLID_802_\"><path class=\"st18\" d=\"M32.16 27.2l-.17.31s.01.01.04.03l.13-.34z\" id=\"XMLID_804_\"/><path class=\"st18\" d=\"M33.14 28.35c3.06 2.13 11.78 7.47 20.41 5.89 1.59-.29 2.84-1.54 3.18-3.12-8.84 4.25-20.09-.97-23.59-2.77z\" id=\"XMLID_803_\"/></g><path class=\"st16\" d=\"M36.59 30.84s-1.02 5.6-7.25 5.6l-.63-2.72 2.49-6.23 5.39 3.35z\" id=\"XMLID_801_\"/><g id=\"XMLID_800_\"><path id=\"XMLID_1463_\" d=\"M29.34 37.02v-1.17c5.66 0 6.64-4.91 6.68-5.12l1.15.21c-.01.06-1.19 6.08-7.83 6.08z\"/></g><g id=\"XMLID_799_\"><path id=\"XMLID_1462_\" d=\"M50.49 35.44c-9.44 0-17.94-6.31-18.37-6.64l.7-.93c.13.09 12.66 9.41 23.72 5.37l.4 1.1c-2.15.78-4.33 1.1-6.45 1.1z\"/></g><path class=\"st14\" d=\"M38.3 45.97c0 .94-.76 1.7-1.7 1.7s-1.7-.76-1.7-1.7.76-1.7 1.7-1.7 1.7.76 1.7 1.7z\" id=\"XMLID_798_\"/><path class=\"st14\" d=\"M51.77 45.97c0 .94-.76 1.7-1.7 1.7s-1.7-.76-1.7-1.7.76-1.7 1.7-1.7 1.7.76 1.7 1.7z\" id=\"XMLID_797_\"/><g id=\"XMLID_796_\"><path id=\"XMLID_1461_\" d=\"M49.21 40.22h-1.17c0-.5-.41-.91-.91-.91s-.91.41-.91.91h-1.17c0-1.15.93-2.08 2.08-2.08s2.08.93 2.08 2.08z\"/></g><g id=\"XMLID_795_\"><path id=\"XMLID_1460_\" d=\"M40.94 40.22h-1.17c0-.5-.41-.91-.91-.91s-.91.41-.91.91h-1.17c0-1.15.93-2.08 2.08-2.08 1.14 0 2.08.93 2.08 2.08z\"/></g><path class=\"st2\" d=\"M46.62 47.64c0 1.88-1.52 3.4-3.4 3.4s-3.4-1.52-3.4-3.4h6.8z\" id=\"XMLID_794_\"/><g id=\"XMLID_793_\"><path id=\"XMLID_1457_\" d=\"M43.22 51.62c-2.19 0-3.98-1.78-3.98-3.98v-.58h7.96v.58a3.99 3.99 0 0 1-3.98 3.98zm-2.75-3.4a2.82 2.82 0 0 0 2.75 2.23c1.35 0 2.48-.96 2.75-2.23h-5.5z\"/></g><g id=\"XMLID_792_\"><path id=\"XMLID_1456_\" d=\"M43.32 45.29h-.71v-1.17h.71a.28.28 0 1 0 0-.56h-.58l-.1-.58v-2.23h1.17v1.75c.58.21.96.73.96 1.34-.01.81-.66 1.45-1.45 1.45z\"/></g></g><g id=\"XMLID_720_\" class=\"st9\"><path id=\"XMLID_1442_\" class=\"st10\" d=\"M37.58 126.29v-9.95c0-5.98-3.36-11.2-8.28-13.86 2.9-2.31 4.76-5.87 4.76-9.85v-6.32c.91-.18 1.6-.98 1.6-1.94v-1.4c.14-.09.27-.2.4-.31.64-.6.99-1.42.99-2.3V69.67c0-2.65-2.16-4.81-4.81-4.81h-3.22A15.48 15.48 0 0 0 27 72.53v53.76h10.58z\"/></g><g id=\"XMLID_647_\"><path class=\"st19\" d=\"M35.55 126.29v-9.95c0-8.44-6.9-15.34-15.34-15.34s-15.34 6.9-15.34 15.34v9.95h30.68z\" id=\"XMLID_288_\"/><g id=\"XMLID_287_\"><path id=\"XMLID_1454_\" d=\"M36.14 126.29h-1.17v-9.95c0-8.14-6.62-14.76-14.76-14.76S5.45 108.2 5.45 116.34v9.95H4.29v-9.95c0-8.78 7.14-15.92 15.92-15.92 8.78 0 15.92 7.14 15.92 15.92v9.95z\"/></g><g id=\"XMLID_286_\"><path id=\"XMLID_1453_\" d=\"M12.24 115.27h1.17v11.02h-1.17z\"/></g><g id=\"XMLID_285_\"><path id=\"XMLID_1452_\" d=\"M27.89 115.27h1.17v11.02h-1.17z\"/></g><path class=\"st20\" d=\"M19.94 107.2a3.34 3.34 0 0 1-3.34-3.34V96.8a3.34 3.34 0 1 1 6.68 0v7.06c0 1.84-1.5 3.34-3.34 3.34z\" id=\"XMLID_715_\"/><g id=\"XMLID_714_\"><path id=\"XMLID_1449_\" d=\"M19.94 107.78a3.93 3.93 0 0 1-3.93-3.93v-7.06a3.93 3.93 0 0 1 7.86 0v7.06c-.01 2.17-1.77 3.93-3.93 3.93zm0-13.75c-1.52 0-2.76 1.24-2.76 2.76v7.06c0 1.52 1.24 2.76 2.76 2.76 1.52 0 2.76-1.24 2.76-2.76v-7.06c0-1.52-1.24-2.76-2.76-2.76z\"/></g><g id=\"XMLID_648_\"><path class=\"st21\" d=\"M33.63 84.36c0 .87-.7 1.57-1.57 1.57-.87 0-1.57-.71-1.57-1.57v-1.53c0-.87.7-1.57 1.57-1.57.87 0 1.57.7 1.57 1.57v1.53z\" id=\"XMLID_284_\"/><g id=\"XMLID_282_\"><path id=\"XMLID_1446_\" d=\"M32.05 86.52c-1.19 0-2.16-.97-2.16-2.16v-1.53c0-1.19.97-2.16 2.16-2.16 1.19 0 2.16.97 2.16 2.16v1.53c0 1.19-.97 2.16-2.16 2.16zm0-4.67c-.55 0-.99.45-.99.99v1.53c0 .55.44.99.99.99s.99-.44.99-.99v-1.53c0-.55-.44-.99-.99-.99z\"/></g><path class=\"st21\" d=\"M9.2 84.36c0 .87-.7 1.57-1.57 1.57-.87 0-1.57-.71-1.57-1.57v-1.53c0-.87.7-1.57 1.57-1.57.87 0 1.57.7 1.57 1.57v1.53z\" id=\"XMLID_278_\"/><g id=\"XMLID_277_\"><path id=\"XMLID_1443_\" d=\"M7.62 86.52c-1.19 0-2.16-.97-2.16-2.16v-1.53c0-1.19.97-2.16 2.16-2.16 1.19 0 2.16.97 2.16 2.16v1.53c0 1.19-.97 2.16-2.16 2.16zm0-4.67c-.55 0-.99.45-.99.99v1.53c0 .55.44.99.99.99s.99-.44.99-.99v-1.53c0-.55-.44-.99-.99-.99z\"/></g><path class=\"st22\" d=\"M19.83 104.82c-6.71 0-12.19-5.49-12.19-12.19v-14c0-6.71 5.49-12.19 12.19-12.19 6.71 0 12.19 5.49 12.19 12.19v14c.01 6.7-5.48 12.19-12.19 12.19z\" id=\"XMLID_709_\"/><g id=\"XMLID_708_\" class=\"st23\"><path id=\"XMLID_1432_\" d=\"M25.99 68.11c2.38 2.23 3.87 5.39 3.87 8.89v14c0 6.71-5.49 12.19-12.19 12.19-2.24 0-4.35-.62-6.16-1.69 2.18 2.05 5.11 3.31 8.33 3.31 6.71 0 12.19-5.49 12.19-12.19v-14c0-4.46-2.44-8.38-6.04-10.51z\"/></g><g id=\"XMLID_707_\"><path id=\"XMLID_1439_\" d=\"M19.83 105.4c-7.05 0-12.78-5.73-12.78-12.78v-14c0-7.05 5.73-12.78 12.78-12.78s12.78 5.73 12.78 12.78v14c0 7.05-5.73 12.78-12.78 12.78zm0-38.39c-6.4 0-11.61 5.21-11.61 11.61v14c0 6.4 5.21 11.61 11.61 11.61s11.61-5.21 11.61-11.61v-14c0-6.4-5.21-11.61-11.61-11.61z\"/></g><path class=\"st20\" d=\"M19.83 89c-5.58 0-11.16 4.36-11.16-1.21v-7.14c0-5.58-.53-11.16 5.05-11.16h11.2c5.58 0 6.07 5.58 6.07 11.16v7.14c0 5.57-5.58 1.21-11.16 1.21z\" id=\"XMLID_706_\"/><path class=\"st2\" d=\"M23.4 92.62c0 1.97-1.6 3.57-3.57 3.57-1.97 0-3.57-1.6-3.57-3.57h7.14z\" id=\"XMLID_705_\"/><g id=\"XMLID_673_\"><path id=\"XMLID_1436_\" d=\"M19.83 96.77c-2.29 0-4.15-1.86-4.15-4.15v-.58h8.3v.58c0 2.29-1.86 4.15-4.15 4.15zm-2.93-3.56c.27 1.37 1.48 2.4 2.93 2.4 1.45 0 2.66-1.03 2.93-2.4H16.9z\"/></g><g id=\"XMLID_670_\"><path id=\"XMLID_1435_\" transform=\"rotate(-7.632 14.45 81.449)\" d=\"M12.41 80.87h4.08v1.17h-4.08z\"/></g><g id=\"XMLID_659_\"><path id=\"XMLID_1434_\" transform=\"rotate(-82.38 25.263 81.45)\" d=\"M24.68 79.41h1.17v4.08h-1.17z\"/></g><path d=\"M16.01 83.63c0 .57-.46 1.02-1.02 1.02-.57 0-1.02-.46-1.02-1.02 0-.57.46-1.02 1.02-1.02.57-.01 1.02.45 1.02 1.02z\" id=\"XMLID_656_\"/><g id=\"XMLID_655_\"><path id=\"XMLID_1433_\" d=\"M21.95 88.71h-2.89v-1.17h1.73v-.38a.3.3 0 0 0-.3-.3h-1.31v-4.18h1.17v3.02h.14c.81 0 1.47.66 1.47 1.47v1.54z\"/></g><g id=\"XMLID_650_\"><path class=\"st22\" d=\"M7.51 83.42a2.96 2.96 0 0 1-2.96-2.96v-7.12c0-2.45 1.99-4.44 4.44-4.44a3.64 3.64 0 0 1 3.64-3.64h17.98a4.41 4.41 0 0 1 4.41 4.41v10.68c0 1.58-1.33 2.84-2.91 2.74v-7.06s-2.03 3.32-8.42 3.31c-7.73-.01-12.75-3.82-12.75-3.82s-.47 1.05-1.51 1.97c-.95.84-1.91.54-1.91.54v5.39z\" id=\"XMLID_654_\"/><g id=\"XMLID_653_\" class=\"st23\"><path id=\"XMLID_1428_\" class=\"st22\" d=\"M7.51 83.42v-5.39s.96.3 1.91-.54c1.03-.92 1.51-1.97 1.51-1.97s10.16 5.33 16.2 3.36c-6.57-2.83-15.08-4.54-16.5-13.02-.99.65-1.65 1.77-1.65 3.05-2.45 0-4.44 1.99-4.44 4.44v7.12a2.98 2.98 0 0 0 2.97 2.95z\"/></g><g id=\"XMLID_652_\"><path id=\"XMLID_1431_\" d=\"M8.1 84h-.59c-1.95 0-3.54-1.59-3.54-3.54v-7.12c0-2.58 1.96-4.72 4.47-4.99a4.23 4.23 0 0 1 4.19-3.67h17.98c2.75 0 4.99 2.24 4.99 4.99v10.68c0 .93-.37 1.79-1.05 2.43-.68.64-1.54.95-2.49.9l-.55-.03v-7.6h1.17v6.44c.4-.08.76-.26 1.07-.55.44-.41.68-.97.68-1.57v-10.7a3.82 3.82 0 0 0-3.82-3.82H12.63a3.06 3.06 0 0 0-3.06 3.06v.58h-.58c-2.12 0-3.85 1.73-3.85 3.85v7.12c0 1.11.76 2.04 1.79 2.3v-5.52l.76.23c.02 0 .68.18 1.35-.42.93-.82 1.36-1.76 1.36-1.77l1.06.48c-.02.05-.54 1.17-1.65 2.16-.62.54-1.25.71-1.72.73V84z\"/></g><g id=\"XMLID_651_\"><path id=\"XMLID_1430_\" d=\"M23.7 79.93h-.02c-7.83-.01-14.54-4.91-14.83-5.12l.69-.94c.07.05 6.7 4.88 14.13 4.89h.01c5.97 0 8.68-3.96 8.79-4.13l.97.64c-.1.2-3.12 4.66-9.74 4.66z\"/></g></g><g id=\"XMLID_649_\"><path id=\"XMLID_1429_\" d=\"M26.74 84.65h-1.17c0-.5-.4-.9-.9-.9s-.9.4-.9.9H22.6c0-1.14.93-2.07 2.07-2.07 1.14 0 2.07.93 2.07 2.07z\"/></g></g></g><g id=\"XMLID_646_\" class=\"st9\"><path id=\"XMLID_12_\" class=\"st10\" d=\"M55.05 59.25c-2.96 0-5.39 2.27-5.65 5.16-1.2-.22-3.02-.03-3.68 1.93l-.02 10.14c0 .31.15.58.39.75-.46.38-.75.95-.75 1.59v1.62c0 1.15.93 2.08 2.08 2.08.11 0 .22-.02.32-.03.22 5.89 4.27 10.81 9.73 12.34v1.36c-6.74 1.78-11.72 7.93-11.72 15.22v4.55h31.48v-4.55c0-7.49-5.26-13.77-12.27-15.35v-1.31c5.33-1.63 9.24-6.51 9.43-12.32.19.06.4.1.61.1 1.15 0 2.08-.93 2.08-2.08v-1.62c0-1.15-.93-2.08-2.08-2.08-.21 0-.41.04-.6.1V70.7c2.64-.49 4.64-2.8 4.64-5.57v-5.88H55.05z\"/></g><g id=\"XMLID_262_\"><path class=\"st0\" d=\"M77.91 115.95v-4.55c0-8.44-6.9-15.34-15.34-15.34s-15.34 6.9-15.34 15.34v4.55h30.68z\" id=\"XMLID_276_\"/><path class=\"st7\" d=\"M62.57 96.06c-8.44 0-15.34 6.9-15.34 15.34v3.35c0-8.44 6.9-15.34 15.34-15.34s15.34 6.9 15.34 15.34v-3.35c0-8.43-6.91-15.34-15.34-15.34z\" id=\"XMLID_644_\"/><g id=\"XMLID_275_\"><path id=\"XMLID_1427_\" d=\"M78.49 115.95h-1.17v-4.55c0-8.14-6.62-14.76-14.76-14.76S47.8 103.26 47.8 111.4v4.55h-1.17v-4.55c0-8.78 7.14-15.92 15.92-15.92 8.78 0 15.92 7.14 15.92 15.92v4.55z\"/></g><g id=\"XMLID_273_\"><path id=\"XMLID_1426_\" d=\"M54.59 110.34h1.17v5.61h-1.17z\"/></g><g id=\"XMLID_272_\"><path id=\"XMLID_1425_\" d=\"M70.25 110.34h1.17v5.61h-1.17z\"/></g><path class=\"st5\" d=\"M62.29 102.26a3.34 3.34 0 0 1-3.34-3.34v-7.06a3.34 3.34 0 1 1 6.68 0v7.06c0 1.85-1.49 3.34-3.34 3.34z\" id=\"XMLID_640_\"/><g id=\"XMLID_592_\"><path id=\"XMLID_1422_\" d=\"M62.29 102.85a3.93 3.93 0 0 1-3.93-3.93v-7.06a3.93 3.93 0 0 1 7.86 0v7.06a3.93 3.93 0 0 1-3.93 3.93zm0-13.76c-1.52 0-2.76 1.24-2.76 2.76v7.06c0 1.52 1.24 2.76 2.76 2.76 1.52 0 2.76-1.24 2.76-2.76v-7.06c0-1.52-1.24-2.76-2.76-2.76z\"/></g><path class=\"st2\" d=\"M50.16 80.44c0 .92-.75 1.67-1.67 1.67-.92 0-1.67-.75-1.67-1.67v-1.62c0-.92.75-1.67 1.67-1.67.92 0 1.67.75 1.67 1.67v1.62z\" id=\"XMLID_271_\"/><g id=\"XMLID_270_\"><path id=\"XMLID_1419_\" d=\"M48.49 82.7c-1.24 0-2.26-1.01-2.26-2.26v-1.62c0-1.24 1.01-2.26 2.26-2.26 1.24 0 2.26 1.01 2.26 2.26v1.62a2.27 2.27 0 0 1-2.26 2.26zm0-4.97c-.6 0-1.09.49-1.09 1.09v1.62c0 .6.49 1.09 1.09 1.09.6 0 1.09-.49 1.09-1.09v-1.62c0-.6-.49-1.09-1.09-1.09z\"/></g><path class=\"st2\" d=\"M76.75 80.44a1.675 1.675 0 0 1-3.35 0v-1.62c0-.92.75-1.67 1.67-1.67.92 0 1.68.75 1.68 1.67v1.62z\" id=\"XMLID_269_\"/><g id=\"XMLID_268_\"><path id=\"XMLID_1416_\" d=\"M75.07 82.7c-1.24 0-2.26-1.01-2.26-2.26v-1.62c0-1.24 1.01-2.26 2.26-2.26 1.25 0 2.26 1.01 2.26 2.26v1.62c0 1.25-1.01 2.26-2.26 2.26zm0-4.97c-.6 0-1.09.49-1.09 1.09v1.62c0 .6.49 1.09 1.09 1.09.6 0 1.09-.49 1.09-1.09v-1.62c.01-.6-.48-1.09-1.09-1.09z\"/></g><path class=\"st2\" d=\"M75.08 68.44v13.54c0 7.14-5.79 12.93-12.94 12.93-7.14 0-12.93-5.79-12.93-12.93V68.44h25.87z\" id=\"XMLID_267_\"/><path class=\"st5\" d=\"M71.05 68.44v12.87c0 7.14-5.79 12.93-12.94 12.93h-.08c1.29.43 2.66.67 4.1.67 7.15 0 12.94-5.79 12.94-12.93V68.44h-4.02z\" id=\"XMLID_542_\"/><g id=\"XMLID_266_\"><path id=\"XMLID_1413_\" d=\"M62.14 95.5c-7.45 0-13.52-6.06-13.52-13.52V67.85h27.04v14.13c0 7.45-6.07 13.52-13.52 13.52zM49.79 69.02v12.96c0 6.81 5.54 12.35 12.35 12.35s12.35-5.54 12.35-12.35V69.02h-24.7z\"/></g><path class=\"st19\" d=\"M79.72 59.65v5.47a5.27 5.27 0 0 1-5.27 5.27H53.49c-1.45 0-2.63 1.18-2.63 2.64v3.45c0 .29-.24.53-.53.53h-2.62c-.29 0-.53-.24-.53-.53V66.47c.83-2.48 3.68-1.55 3.68-1.55a5.27 5.27 0 0 1 5.27-5.27h23.59z\" id=\"XMLID_265_\"/><path d=\"M73.89 68.23c3.15 0 5.7-2.55 5.7-5.7v-2.88H56.13a5.27 5.27 0 0 0-5.27 5.27s-2.85-.93-3.68 1.55v10.27h1.15c.31 0 .57-.25.57-.57v-5.09c0-1.58 1.28-2.85 2.85-2.85h22.14z\" fill=\"#757a81\" id=\"XMLID_264_\"/><g id=\"XMLID_263_\"><path id=\"XMLID_1410_\" d=\"M50.33 77.59h-2.62c-.61 0-1.11-.5-1.11-1.11l.03-10.19c.66-1.97 2.43-2.26 3.69-2.08a5.858 5.858 0 0 1 5.81-5.13H80.3v6.06c0 3.23-2.63 5.85-5.85 5.85H53.49c-1.13 0-2.05.92-2.05 2.05v3.45c0 .6-.5 1.1-1.11 1.1zm-2.56-11.02v9.91l2.57-.06-.06-3.39c0-1.77 1.44-3.22 3.22-3.22h20.96c2.58 0 4.68-2.1 4.68-4.68v-4.89H56.13c-2.58 0-4.68 2.1-4.68 4.69v.8l-.76-.24c-.25-.09-2.27-.68-2.92 1.08z\"/></g><g id=\"XMLID_511_\"><path id=\"XMLID_1409_\" d=\"M62.93 85.33h-1.52v-1.17h1.52c.19 0 .35-.16.35-.35 0-.28-.16-.44-.35-.44h-1.35v-3.26h1.17v2.09h.18c.84 0 1.52.68 1.52 1.52 0 .93-.68 1.61-1.52 1.61z\"/></g><g id=\"XMLID_510_\"><path id=\"XMLID_1408_\" d=\"M55.16 75.57h4.29v1.17h-4.29z\"/></g><g id=\"XMLID_509_\"><path id=\"XMLID_1407_\" d=\"M65.44 75.57h4.29v1.17h-4.29z\"/></g><path d=\"M58.39 78.17c0 .6-.49 1.09-1.09 1.09-.6 0-1.09-.49-1.09-1.09 0-.6.49-1.09 1.09-1.09.6.01 1.09.49 1.09 1.09z\" id=\"XMLID_508_\"/><path d=\"M68.68 78.17c0 .6-.49 1.09-1.09 1.09-.6 0-1.09-.49-1.09-1.09 0-.6.49-1.09 1.09-1.09.6.01 1.09.49 1.09 1.09z\" id=\"XMLID_504_\"/><path class=\"st2\" d=\"M65.63 87.96a3.34 3.34 0 1 1-6.68 0h6.68z\" id=\"XMLID_470_\"/><g id=\"XMLID_469_\"><path id=\"XMLID_1404_\" d=\"M62.29 91.89a3.93 3.93 0 0 1-3.93-3.93v-.58h7.85v.58a3.916 3.916 0 0 1-3.92 3.93zm-2.7-3.34c.27 1.24 1.38 2.18 2.7 2.18s2.43-.93 2.7-2.18h-5.4z\"/></g><g id=\"XMLID_456_\"><path id=\"XMLID_1403_\" d=\"M61.01 92.21h2.56v1.17h-2.56z\"/></g></g><g id=\"XMLID_409_\"><path class=\"st25\" d=\"M85.33 126.29H38.82c-1.45 0-2.77-.84-3.39-2.15l-1.15-2.45h55.6l-1.15 2.45a3.758 3.758 0 0 1-3.4 2.15z\" id=\"XMLID_414_\"/><g id=\"XMLID_413_\"><path id=\"XMLID_1400_\" d=\"M85.33 126.87H38.82c-1.67 0-3.21-.98-3.92-2.49l-.9-1.92c-.14-.3-.12-.64.06-.92a.96.96 0 0 1 .81-.45h54.42c.33 0 .63.17.81.44.18.28.2.62.06.92l-.9 1.92a4.342 4.342 0 0 1-3.93 2.5zm-50.13-4.6l.76 1.62c.52 1.1 1.64 1.82 2.86 1.82h46.51c1.22 0 2.35-.71 2.86-1.82l.76-1.62H35.2z\"/></g><path class=\"st8\" d=\"M82.84 123.61H41.32c-1.76 0-3.19-1.43-3.19-3.19V95.94c0-1.76 1.43-3.19 3.19-3.19h41.52c1.76 0 3.19 1.43 3.19 3.19v24.47c0 1.77-1.43 3.2-3.19 3.2z\" id=\"XMLID_412_\"/><g id=\"XMLID_411_\"><path id=\"XMLID_1397_\" d=\"M82.3 124.19H41.85a4.31 4.31 0 0 1-4.31-4.31V96.47a4.31 4.31 0 0 1 4.31-4.31H82.3a4.31 4.31 0 0 1 4.31 4.31v23.41c.01 2.38-1.93 4.31-4.31 4.31zM41.85 93.33c-1.73 0-3.14 1.41-3.14 3.14v23.41c0 1.73 1.41 3.14 3.14 3.14H82.3c1.73 0 3.14-1.41 3.14-3.14V96.47c0-1.73-1.41-3.14-3.14-3.14H41.85z\"/></g><path class=\"st25\" d=\"M65.8 108.17a3.72 3.72 0 1 1-7.44 0 3.72 3.72 0 0 1 3.72-3.72c2.05.01 3.72 1.67 3.72 3.72z\" id=\"XMLID_410_\"/></g><path class=\"st11\" d=\"M.66 24.16h12.51v12.51H.66z\" id=\"XMLID_826_\"/><g id=\"XMLID_825_\"><path id=\"XMLID_1394_\" d=\"M19.17 31H5.5V17.33h13.67V31zm-12.5-1.17h11.34V18.49H6.67v11.34z\"/></g><circle class=\"st16\" cx=\"109.86\" cy=\"19.34\" r=\"7.16\" id=\"XMLID_719_\"/><g id=\"XMLID_718_\"><path id=\"XMLID_1383_\" d=\"M113.59 29.89c-.15 0-.3 0-.45-.01l.07-1.16c.71.04 1.44-.03 2.12-.22l.31 1.13c-.66.17-1.35.26-2.05.26zm-2.89-.56c-.78-.32-1.5-.75-2.15-1.31l.76-.89c.55.47 1.16.84 1.82 1.11l-.43 1.09zm7.23-.77l-.65-.97c.59-.4 1.12-.9 1.55-1.47l.93.71c-.52.68-1.13 1.26-1.83 1.73zm-11-2.46c-.43-.73-.74-1.51-.92-2.34l1.14-.24c.15.7.41 1.37.78 1.99l-1 .59zm14.01-1.48l-1.11-.37c.23-.68.34-1.39.34-2.11h1.17c0 .85-.13 1.68-.4 2.48zm-.8-3.11a6.6 6.6 0 0 0-.54-2.06l1.06-.48c.35.77.56 1.59.64 2.43l-1.16.11zm-13.08-.12l-1.16-.13c.1-.84.33-1.65.69-2.42l1.06.5c-.32.64-.51 1.33-.59 2.05zm11.36-3.72c-.49-.53-1.06-.97-1.69-1.31l.56-1.02c.74.4 1.41.92 1.98 1.54l-.85.79zm-9.57-.09l-.84-.81a7.54 7.54 0 0 1 2.01-1.5l.54 1.04c-.64.32-1.21.75-1.71 1.27zm5.87-1.92c-.7-.12-1.44-.13-2.13-.02l-.18-1.15c.83-.13 1.69-.12 2.51.02l-.2 1.15z\"/></g><g id=\"XMLID_717_\"><path id=\"XMLID_1380_\" d=\"M20.21 58.72a1.52 1.52 0 1 1-.001-3.039 1.52 1.52 0 0 1 .001 3.039zm0-1.88c-.2 0-.36.16-.36.36 0 .2.16.36.36.36.2 0 .36-.16.36-.36 0-.2-.16-.36-.36-.36z\"/></g><g id=\"XMLID_716_\"><path id=\"XMLID_1377_\" d=\"M4.87 58.97a1.52 1.52 0 1 1-.001-3.039 1.52 1.52 0 0 1 .001 3.039zm0-1.88c-.2 0-.36.16-.36.36 0 .2.16.36.36.36.2 0 .36-.16.36-.36 0-.2-.16-.36-.36-.36z\"/></g><g id=\"XMLID_713_\"><path id=\"XMLID_1374_\" d=\"M12.82 12.99a1.52 1.52 0 1 1 1.52-1.52c.01.83-.68 1.52-1.52 1.52zm0-1.88c-.2 0-.36.16-.36.36 0 .2.16.36.36.36.2 0 .36-.16.36-.36 0-.2-.16-.36-.36-.36z\"/></g><g id=\"XMLID_712_\"><path id=\"XMLID_1371_\" d=\"M120.76 12.99a1.52 1.52 0 1 1-.001-3.039 1.52 1.52 0 0 1 .001 3.039zm0-1.88c-.2 0-.36.16-.36.36 0 .2.16.36.36.36.2 0 .36-.16.36-.36 0-.2-.16-.36-.36-.36z\"/></g><g id=\"XMLID_583_\"><g id=\"XMLID_645_\"><g id=\"XMLID_711_\"><path id=\"XMLID_1365_\" d=\"M103.86 55.48c-.85 0-1.68-.14-2.48-.41l.38-1.1c.67.23 1.38.35 2.1.35v1.16zm-4.7-1.6a7.483 7.483 0 0 1-1.7-1.85l.98-.64c.39.6.88 1.13 1.44 1.57l-.72.92zm-2.71-4.15c-.15-.61-.23-1.25-.24-1.88 0-.21.01-.42.03-.62l1.16.09a6.616 6.616 0 0 0 .18 2.13l-1.13.28zm1.47-4.48l-1.07-.47c.34-.77.8-1.48 1.37-2.11l.86.79c-.48.53-.88 1.13-1.16 1.79zm2.84-3.1l-.56-1.02c.74-.41 1.54-.68 2.38-.82l.19 1.15c-.71.11-1.38.35-2.01.69z\"/></g><g id=\"XMLID_710_\"><path id=\"XMLID_1364_\" d=\"M103.86 55.48v-1.17c3.57 0 6.48-2.91 6.48-6.48 0-3.57-2.91-6.48-6.48-6.48v-1.17c4.22 0 7.65 3.43 7.65 7.65s-3.44 7.65-7.65 7.65z\"/></g></g><g id=\"XMLID_641_\"><g id=\"XMLID_643_\"><path id=\"XMLID_1363_\" d=\"M102.53 47.26h2.65v1.17h-2.65z\"/></g><g id=\"XMLID_642_\"><path id=\"XMLID_1362_\" d=\"M103.27 46.52h1.17v2.65h-1.17z\"/></g></g></g><g id=\"XMLID_543_\"><g id=\"XMLID_582_\"><path id=\"XMLID_1361_\" d=\"M103.71 36.16h19.95v1.17h-19.95z\"/></g><g id=\"XMLID_575_\"><path id=\"XMLID_1360_\" d=\"M124.5 36.16h1.72v1.17h-1.72z\"/></g><g id=\"XMLID_573_\"><path id=\"XMLID_1359_\" d=\"M127.06 36.16h1.72v1.17h-1.72z\"/></g></g><g id=\"XMLID_526_\"><g id=\"XMLID_541_\"><path id=\"XMLID_1358_\" d=\"M32.68 5.53h19.15V6.7H32.68z\"/></g><g id=\"XMLID_540_\"><path id=\"XMLID_1357_\" d=\"M52.65 5.53h1.65V6.7h-1.65z\"/></g><g id=\"XMLID_535_\"><path id=\"XMLID_1356_\" d=\"M55.1 5.53h1.65V6.7H55.1z\"/></g></g><g id=\"XMLID_407_\"><g id=\"XMLID_455_\"><path id=\"XMLID_1355_\" d=\"M59.33 5.53h2.44V6.7h-2.44z\"/></g><g id=\"XMLID_408_\"><path id=\"XMLID_1354_\" d=\"M59.96 4.89h1.17v2.44h-1.17z\"/></g></g><g id=\"XMLID_404_\"><g id=\"XMLID_406_\"><path id=\"XMLID_1353_\" d=\"M93.93.64h2.44v1.17h-2.44z\"/></g><g id=\"XMLID_405_\"><path id=\"XMLID_1352_\" d=\"M94.57 0h1.17v2.44h-1.17z\"/></g></g><g id=\"XMLID_401_\"><g id=\"XMLID_403_\"><path id=\"XMLID_1351_\" d=\"M118.73 50.66h2.44v1.17h-2.44z\"/></g><g id=\"XMLID_402_\"><path id=\"XMLID_1350_\" d=\"M119.36 50.02h1.17v2.44h-1.17z\"/></g></g><g id=\"XMLID_397_\"><g id=\"XMLID_400_\"><path id=\"XMLID_1349_\" d=\"M127.56 27.62H130v1.17h-2.44z\"/></g><g id=\"XMLID_398_\"><path id=\"XMLID_1348_\" d=\"M128.2 26.98h1.17v2.44h-1.17z\"/></g></g><g id=\"XMLID_394_\"><g id=\"XMLID_396_\"><path id=\"XMLID_1347_\" d=\"M5.69 46.04h2.44v1.17H5.69z\"/></g><g id=\"XMLID_395_\"><path id=\"XMLID_1346_\" d=\"M6.32 45.4h1.17v2.44H6.32z\"/></g></g><g id=\"XMLID_383_\"><g id=\"XMLID_393_\"><path id=\"XMLID_1345_\" d=\"M70.28.64h1.22v1.17h-1.22z\"/></g><g id=\"XMLID_392_\"><path id=\"XMLID_1344_\" d=\"M72.48.64h1.22v1.17h-1.22z\"/></g><g id=\"XMLID_391_\"><path id=\"XMLID_1343_\" d=\"M74.69.64h1.22v1.17h-1.22z\"/></g><g id=\"XMLID_390_\"><path id=\"XMLID_1342_\" d=\"M76.9.64h1.22v1.17H76.9z\"/></g><g id=\"XMLID_389_\"><path id=\"XMLID_1341_\" d=\"M79.11.64h1.22v1.17h-1.22z\"/></g><g id=\"XMLID_388_\"><path id=\"XMLID_1340_\" d=\"M81.32.64h1.22v1.17h-1.22z\"/></g><g id=\"XMLID_387_\"><path id=\"XMLID_1339_\" d=\"M83.53.64h1.22v1.17h-1.22z\"/></g><g id=\"XMLID_386_\"><path id=\"XMLID_1338_\" d=\"M85.73.64h1.22v1.17h-1.22z\"/></g><g id=\"XMLID_385_\"><path id=\"XMLID_1337_\" d=\"M87.94.64h1.22v1.17h-1.22z\"/></g><g id=\"XMLID_384_\"><path id=\"XMLID_1336_\" d=\"M90.15.64h1.22v1.17h-1.22z\"/></g></g><g id=\"XMLID_382_\"><path id=\"XMLID_1335_\" d=\"M10.67 39.19h11.68v1.17H10.67z\"/></g><g id=\"XMLID_381_\"><path id=\"XMLID_1334_\" d=\"M75.27 5.53h33.99V6.7H75.27z\"/></g><g id=\"XMLID_379_\"><path id=\"XMLID_1333_\" d=\"M17.47 10.88h36.17v1.17H17.47z\"/></g><g id=\"XMLID_821_\"><path id=\"XMLID_1332_\" d=\"M0 125.71h125.28v1.17H0z\"/></g></g></svg>'),(5401,1047,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x32_\" x=\"0\" y=\"0\" viewBox=\"0 0 150 120.49\" xml:space=\"preserve\"><style>.st3{fill:#fff}.st4{fill:#f5a44a}.st5{fill:#bcbec0}.st6{fill:#adcac8}</style><g id=\"XMLID_26_\"><g id=\"XMLID_788_\"><path fill=\"#bfbaa3\" d=\"M49.81 0h68.12v119.79H49.81z\" id=\"XMLID_816_\"/><path fill=\"#fffffe\" d=\"M55.94 11.14h55.87v97.5H55.94z\" id=\"XMLID_815_\"/><g id=\"XMLID_791_\"><path id=\"XMLID_583_\" d=\"M112.51 109.35H55.24V10.44h57.27v98.91zm-55.87-1.41h54.46v-96.1H56.64v96.1z\"/></g><g id=\"XMLID_790_\"><path id=\"XMLID_581_\" d=\"M76.54 5.04H91.2v1.4H76.54z\"/></g><g id=\"XMLID_789_\"><path id=\"XMLID_572_\" d=\"M92.85 5.04h1.17v1.4h-1.17z\"/></g></g><g id=\"XMLID_764_\"><path d=\"M131.67 36.15c6.87-6.87 6.87-18.02 0-24.89-6.87-6.87-18.02-6.87-24.89 0-5.93 5.93-6.74 15.05-2.43 21.86l-5.01 10.35c-.13.27.15.55.42.42l10.29-5.15c6.79 4.13 15.76 3.28 21.62-2.59z\" fill=\"#dbd7c1\" id=\"XMLID_787_\"/><g id=\"XMLID_786_\"><path id=\"XMLID_571_\" d=\"M118.94.47h1.4v4.12h-1.4z\"/></g><g id=\"XMLID_785_\"><path id=\"XMLID_570_\" transform=\"rotate(-75.013 124.858 4.355)\" d=\"M123.83 3.65h2.06v1.41h-2.06z\"/></g><g id=\"XMLID_784_\"><path id=\"XMLID_569_\" transform=\"rotate(-59.974 130.206 5.576)\" d=\"M128.14 4.88h4.12v1.4h-4.12z\"/></g><g id=\"XMLID_783_\"><path id=\"XMLID_568_\" transform=\"rotate(-45.001 133.802 9.765)\" d=\"M132.77 9.06h2.06v1.4h-2.06z\"/></g><g id=\"XMLID_782_\"><path id=\"XMLID_567_\" transform=\"rotate(-29.991 137.826 13.488)\" d=\"M135.76 12.79h4.12v1.41h-4.12z\"/></g><g id=\"XMLID_781_\"><path id=\"XMLID_566_\" transform=\"rotate(-14.945 138.841 18.917)\" d=\"M137.81 18.22h2.06v1.4h-2.06z\"/></g><g id=\"XMLID_780_\"><path id=\"XMLID_565_\" d=\"M138.39 23.45h4.12v1.4h-4.12z\"/></g><g id=\"XMLID_779_\"><path id=\"XMLID_564_\" transform=\"rotate(-74.805 138.62 29.368)\" d=\"M137.92 28.35h1.4v2.04h-1.4z\"/></g><g id=\"XMLID_778_\"><path id=\"XMLID_563_\" transform=\"rotate(-59.96 137.402 34.706)\" d=\"M136.7 32.65h1.4v4.12h-1.4z\"/></g><g id=\"XMLID_777_\"><path id=\"XMLID_562_\" transform=\"rotate(-44.96 133.216 38.309)\" d=\"M132.52 37.28h1.4v2.06h-1.4z\"/></g><g id=\"XMLID_776_\"><path id=\"XMLID_561_\" transform=\"rotate(-29.955 129.486 42.321)\" d=\"M128.78 40.26h1.41v4.12h-1.41z\"/></g><g id=\"XMLID_775_\"><path id=\"XMLID_560_\" transform=\"rotate(-14.961 124.082 43.343)\" d=\"M123.36 42.31h1.41v2.06h-1.41z\"/></g><g id=\"XMLID_774_\"><path id=\"XMLID_559_\" d=\"M118.12 42.89h1.4v4.12h-1.4z\"/></g><g id=\"XMLID_773_\"><path id=\"XMLID_558_\" transform=\"rotate(-74.93 113.615 43.119)\" d=\"M112.59 42.42h2.05v1.4h-2.05z\"/></g><g id=\"XMLID_772_\"><path id=\"XMLID_556_\" transform=\"rotate(-14.939 99.66 28.562)\" d=\"M98.61 27.85h2.06v1.41h-2.06z\"/></g><g id=\"XMLID_771_\"><path id=\"XMLID_555_\" transform=\"rotate(-89.914 98.037 23.31)\" d=\"M97.33 21.25h1.4v4.12h-1.4z\"/></g><g id=\"XMLID_770_\"><path id=\"XMLID_554_\" transform=\"rotate(-74.919 99.865 18.1)\" d=\"M99.16 17.07h1.41v2.06h-1.41z\"/></g><g id=\"XMLID_769_\"><path id=\"XMLID_553_\" transform=\"rotate(-59.894 101.093 12.763)\" d=\"M100.39 10.7h1.41v4.12h-1.41z\"/></g><g id=\"XMLID_768_\"><path id=\"XMLID_552_\" transform=\"rotate(-44.887 105.294 9.166)\" d=\"M104.58 8.14h1.41v2.06h-1.41z\"/></g><g id=\"XMLID_767_\"><path id=\"XMLID_551_\" transform=\"rotate(-29.908 109.033 5.156)\" d=\"M108.32 3.1h1.41v4.12h-1.41z\"/></g><g id=\"XMLID_766_\"><path id=\"XMLID_550_\" transform=\"rotate(-14.895 114.43 4.146)\" d=\"M113.75 3.11h1.41v2.06h-1.41z\"/></g><g id=\"XMLID_765_\"><path id=\"XMLID_548_\" class=\"st3\" d=\"M116.13 32.18l-6.53-7.49 3.18-2.77 3.56 4.09 9.97-9.98 2.98 2.98z\"/></g></g><g id=\"XMLID_742_\"><path class=\"st3\" d=\"M120.49 81.69l25.79-4.06 2.97-3.4-3.48-22.13-2.62-1.8-26.93 4.24-1.95 2.52 3.67 23.27z\" id=\"XMLID_763_\"/><path class=\"st3\" d=\"M63.87 90.6l52.05-8.19 2.02-2.08-3.67-23.27-2.62-1.8-53.2 8.38-1.94 2.51 3.48 22.14z\" id=\"XMLID_762_\"/><path class=\"st4\" d=\"M143.15 50.3l2.62 1.8.7 4.43-31.5 4.96-.7-4.43 1.95-2.52z\" id=\"XMLID_761_\"/><path class=\"st4\" d=\"M57.23 70.58l-.7-4.46 1.92-2.48 53.2-8.38 2.62 1.8.7 4.43z\" id=\"XMLID_760_\"/><path class=\"st4\" d=\"M148.48 69.33l.77 4.9-2.97 3.4-25.79 4.06-2.55-1.36-.95-6.04z\" id=\"XMLID_759_\"/><path class=\"st4\" d=\"M116.99 74.29l.95 6.04-2.02 2.08-52.05 8.19-3.88-2.31-.77-4.9z\" id=\"XMLID_758_\"/><g id=\"XMLID_756_\"><path transform=\"rotate(-8.946 131.474 63.57)\" class=\"st5\" d=\"M122.55 62.64h17.76v1.83h-17.76z\" id=\"XMLID_757_\"/></g><g id=\"XMLID_754_\"><path transform=\"rotate(-8.946 132.279 68.72)\" class=\"st5\" d=\"M123.37 67.79h17.76v1.83h-17.76z\" id=\"XMLID_755_\"/></g><g id=\"XMLID_752_\"><path transform=\"rotate(-8.946 85.666 70.617)\" class=\"st5\" d=\"M65.28 69.69H106v1.83H65.28z\" id=\"XMLID_753_\"/></g><g id=\"XMLID_750_\"><path transform=\"rotate(-8.946 86.477 75.77)\" class=\"st5\" d=\"M66.1 74.84h40.72v1.83H66.1z\" id=\"XMLID_751_\"/></g><path transform=\"rotate(171.041 117.485 77.63)\" d=\"M116.21 76.35h2.54v2.54h-2.54z\" id=\"XMLID_749_\"/><path transform=\"rotate(171.041 116.763 73.044)\" d=\"M115.49 71.77h2.54v2.54h-2.54z\" id=\"XMLID_748_\"/><path transform=\"rotate(171.041 116.041 68.457)\" d=\"M114.77 67.18h2.54v2.54h-2.54z\" id=\"XMLID_747_\"/><path transform=\"rotate(171.041 115.319 63.87)\" d=\"M114.05 62.6h2.54v2.54h-2.54z\" id=\"XMLID_746_\"/><path transform=\"rotate(171.041 114.597 59.284)\" d=\"M113.32 58.01h2.54v2.54h-2.54z\" id=\"XMLID_745_\"/><g id=\"XMLID_744_\"><path id=\"XMLID_547_\" d=\"M120.37 82.42l-2.76-1.47.66-1.24 2.35 1.25 25.3-3.99 2.59-2.95-3.39-21.52-2.14-1.46-26.38 4.15-1.77 2.29-1.11-.85 2.11-2.74 27.48-4.33 3.11 2.13L150 74.45l-3.36 3.83z\"/></g><g id=\"XMLID_743_\"><path id=\"XMLID_542_\" d=\"M63.72 91.34l-4.37-2.62-3.59-22.76 2.3-2.98.28-.04 53.48-8.42 2.85 1.96-.79 1.15-2.4-1.63-52.64 8.29-1.59 2.05 3.38 21.51 3.38 2.02 51.57-8.12 1.86-1.91 1 .98-2.18 2.24-.23.04z\"/></g></g><g id=\"XMLID_703_\"><path class=\"st3\" d=\"M116.71 91.99h26.1l3.47-2.89V66.69l-2.31-2.18h-27.26l-2.31 2.18v23.57z\" id=\"XMLID_741_\"/><path class=\"st3\" d=\"M59.38 91.99h52.7l2.32-1.73V66.69l-2.32-2.18H58.23l-2.31 2.18V89.1z\" id=\"XMLID_740_\"/><path class=\"st4\" d=\"M143.97 64.51l2.31 2.18v4.49H114.4v-4.49l2.31-2.18z\" id=\"XMLID_739_\"/><path class=\"st4\" d=\"M55.94 71.18v-4.51l2.29-2.16h53.85l2.32 2.18v4.49z\" id=\"XMLID_738_\"/><path class=\"st4\" d=\"M146.28 84.14v4.96l-3.47 2.89h-26.1l-2.31-1.73v-6.12z\" id=\"XMLID_737_\"/><path class=\"st4\" d=\"M114.4 84.14v6.12l-2.32 1.73h-52.7l-3.46-2.89v-4.96z\" id=\"XMLID_736_\"/><g id=\"XMLID_734_\"><path class=\"st5\" d=\"M121.46 74.87h17.76v1.83h-17.76z\" id=\"XMLID_735_\"/></g><g id=\"XMLID_732_\"><path class=\"st5\" d=\"M121.46 80.09h17.76v1.83h-17.76z\" id=\"XMLID_733_\"/></g><g id=\"XMLID_730_\"><path class=\"st5\" d=\"M63.65 74.71h40.72v1.83H63.65z\" id=\"XMLID_731_\"/></g><g id=\"XMLID_728_\"><path class=\"st5\" d=\"M63.65 79.92h40.72v1.83H63.65z\" id=\"XMLID_729_\"/></g><path transform=\"rotate(-180 114.368 87.515)\" d=\"M113.1 86.24h2.54v2.54h-2.54z\" id=\"XMLID_727_\"/><path transform=\"rotate(-180 114.368 82.872)\" d=\"M113.1 81.6h2.54v2.54h-2.54z\" id=\"XMLID_726_\"/><path transform=\"rotate(-180 114.368 78.23)\" d=\"M113.1 76.96h2.54v2.54h-2.54z\" id=\"XMLID_725_\"/><path transform=\"rotate(-180 114.368 73.586)\" d=\"M113.1 72.31h2.54v2.54h-2.54z\" id=\"XMLID_724_\"/><path transform=\"rotate(-180 114.368 68.944)\" d=\"M113.1 67.67h2.54v2.54h-2.54z\" id=\"XMLID_723_\"/><g id=\"XMLID_722_\"><path id=\"XMLID_539_\" d=\"M143.06 92.7h-26.59l-2.5-1.88.85-1.12 2.12 1.59h25.62l3.02-2.52V67l-1.89-1.79h-26.7l-2.11 2-.97-1.03 2.52-2.37h27.81l2.74 2.58v23.04z\"/></g><g id=\"XMLID_704_\"><path id=\"XMLID_538_\" d=\"M112.32 92.7H59.13l-3.92-3.27V66.39l2.74-2.58h54.41l2.52 2.37-.97 1.03-2.11-2H58.51L56.62 67v21.77l3.02 2.52h52.21l2.12-1.59.85 1.12z\"/></g></g><g id=\"XMLID_502_\"><g id=\"XMLID_691_\"><path class=\"st6\" d=\"M28.19 111.98h36.39v7.81H28.19z\" id=\"XMLID_702_\"/><g id=\"XMLID_701_\"><path id=\"XMLID_537_\" d=\"M33.3 111.98h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_700_\"><path id=\"XMLID_536_\" d=\"M29.7 111.98h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_699_\"><path id=\"XMLID_534_\" d=\"M36.9 111.98h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_698_\"><path id=\"XMLID_533_\" d=\"M44.11 111.98h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_697_\"><path id=\"XMLID_532_\" d=\"M40.5 111.98h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_696_\"><path id=\"XMLID_531_\" d=\"M47.71 111.98h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_695_\"><path id=\"XMLID_530_\" d=\"M51.31 111.98h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_694_\"><path id=\"XMLID_529_\" d=\"M54.91 111.98h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_693_\"><path id=\"XMLID_528_\" d=\"M58.51 111.98h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_692_\"><path id=\"XMLID_527_\" d=\"M62.11 111.98h1.4v7.81h-1.4z\"/></g></g><g id=\"XMLID_679_\"><path class=\"st6\" d=\"M25.83 104.17h36.39v7.81H25.83z\" id=\"XMLID_690_\"/><g id=\"XMLID_689_\"><path id=\"XMLID_525_\" d=\"M30.94 104.17h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_688_\"><path id=\"XMLID_524_\" d=\"M27.34 104.17h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_687_\"><path id=\"XMLID_523_\" d=\"M34.54 104.17h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_686_\"><path id=\"XMLID_522_\" d=\"M41.75 104.17h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_685_\"><path id=\"XMLID_521_\" d=\"M38.15 104.17h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_684_\"><path id=\"XMLID_520_\" d=\"M45.35 104.17h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_683_\"><path id=\"XMLID_519_\" d=\"M48.95 104.17h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_682_\"><path id=\"XMLID_518_\" d=\"M52.55 104.17h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_681_\"><path id=\"XMLID_517_\" d=\"M56.16 104.17h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_680_\"><path id=\"XMLID_516_\" d=\"M59.76 104.17h1.4v7.81h-1.4z\"/></g></g><g id=\"XMLID_665_\"><path class=\"st6\" d=\"M26.61 96.36H63v7.81H26.61z\" id=\"XMLID_678_\"/><g id=\"XMLID_677_\"><path id=\"XMLID_515_\" d=\"M31.72 96.36h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_676_\"><path id=\"XMLID_514_\" d=\"M28.12 96.36h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_675_\"><path id=\"XMLID_513_\" d=\"M35.32 96.36h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_674_\"><path id=\"XMLID_512_\" d=\"M42.53 96.36h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_672_\"><path id=\"XMLID_511_\" d=\"M38.93 96.36h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_671_\"><path id=\"XMLID_510_\" d=\"M46.13 96.36h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_669_\"><path id=\"XMLID_509_\" d=\"M49.73 96.36h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_668_\"><path id=\"XMLID_508_\" d=\"M53.33 96.36h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_667_\"><path id=\"XMLID_507_\" d=\"M56.94 96.36h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_666_\"><path id=\"XMLID_506_\" d=\"M60.54 96.36h1.4v7.81h-1.4z\"/></g></g><g id=\"XMLID_617_\"><path class=\"st6\" d=\"M25.04 88.56h36.39v7.81H25.04z\" id=\"XMLID_664_\"/><g id=\"XMLID_663_\"><path id=\"XMLID_504_\" d=\"M30.15 88.56h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_662_\"><path id=\"XMLID_499_\" d=\"M26.54 88.56h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_661_\"><path id=\"XMLID_495_\" d=\"M33.75 88.56h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_660_\"><path id=\"XMLID_494_\" d=\"M40.95 88.56h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_658_\"><path id=\"XMLID_492_\" d=\"M37.35 88.56h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_657_\"><path id=\"XMLID_491_\" d=\"M44.55 88.56h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_624_\"><path id=\"XMLID_489_\" d=\"M48.16 88.56h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_623_\"><path id=\"XMLID_483_\" d=\"M51.76 88.56h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_622_\"><path id=\"XMLID_482_\" d=\"M55.36 88.56h1.4v7.81h-1.4z\"/></g><g id=\"XMLID_618_\"><path id=\"XMLID_481_\" d=\"M58.96 88.56h1.4v7.81h-1.4z\"/></g></g><g id=\"XMLID_503_\"><path class=\"st6\" d=\"M64.29 71.1c0 9.64-7.82 17.46-17.46 17.46S29.37 80.74 29.37 71.1s7.82-17.46 17.46-17.46 17.46 7.82 17.46 17.46z\" id=\"XMLID_616_\"/><path d=\"M60.18 71.1c0 7.37-5.98 13.35-13.35 13.35-7.37 0-13.35-5.98-13.35-13.35 0-7.37 5.98-13.35 13.35-13.35 7.37 0 13.35 5.98 13.35 13.35z\" fill=\"#cedfde\" id=\"XMLID_615_\"/><g id=\"XMLID_505_\"><path d=\"M46.03 79.04v-1.41c-1.63-.26-3.14-1-4.52-2.22l1.79-2.18c1 .88 1.91 1.44 2.72 1.68v-2.88c-1.35-.35-2.34-.81-2.97-1.4-.63-.59-.95-1.43-.95-2.53 0-1.1.36-2.01 1.08-2.72.72-.71 1.67-1.14 2.84-1.28v-.95h2.05v.98c1.29.18 2.57.71 3.84 1.6l-1.58 2.28c-.81-.58-1.56-.97-2.26-1.16v2.78c1.39.36 2.42.84 3.08 1.45.66.6.99 1.46.99 2.57 0 1.11-.37 2.02-1.11 2.74-.74.72-1.73 1.15-2.96 1.29v1.35h-2.04zm0-12.26c-.55.19-.83.55-.83 1.06 0 .52.28.91.83 1.18v-2.24zm3.03 7.03c0-.27-.07-.49-.21-.68-.14-.18-.4-.35-.77-.5V75c.65-.2.98-.6.98-1.19z\" id=\"XMLID_192_\"/></g></g></g><g id=\"XMLID_501_\"><path id=\"XMLID_480_\" d=\"M3.06 119.09h139.4v1.4H3.06z\"/></g><path class=\"st4\" d=\"M8.55 66.27c0 1.26-1.03 2.29-2.29 2.29s-2.29-1.03-2.29-2.29S5 63.98 6.26 63.98s2.29 1.03 2.29 2.29z\" id=\"XMLID_500_\"/><g id=\"XMLID_498_\"><path id=\"XMLID_472_\" d=\"M4.33 70.34c-2.1 0-3.8-1.71-3.8-3.8 0-2.1 1.71-3.8 3.8-3.8 2.1 0 3.8 1.71 3.8 3.8.01 2.09-1.7 3.8-3.8 3.8zm0-6.21c-1.32 0-2.4 1.08-2.4 2.4s1.08 2.4 2.4 2.4c1.32 0 2.4-1.08 2.4-2.4s-1.08-2.4-2.4-2.4z\"/></g><g id=\"XMLID_497_\"><path id=\"XMLID_469_\" d=\"M44.22 48.35l-5.83-3.37 5.83-3.37v6.74zm-3.02-3.37l1.62.93v-1.87l-1.62.94z\"/></g><g id=\"XMLID_496_\"><path id=\"XMLID_466_\" d=\"M16.28 90.09l-6.76-3.9 6.76-3.9v7.8zm-3.96-3.9l2.55 1.47v-2.94l-2.55 1.47z\"/></g><g id=\"XMLID_487_\"><g id=\"XMLID_493_\"><path id=\"XMLID_465_\" d=\"M0 26.95h30.48v1.4H0z\"/></g><g id=\"XMLID_490_\"><path id=\"XMLID_464_\" d=\"M31.78 26.95h2.63v1.4h-2.63z\"/></g><g id=\"XMLID_488_\"><path id=\"XMLID_463_\" d=\"M35.68 26.95h2.63v1.4h-2.63z\"/></g></g><g id=\"XMLID_484_\"><g id=\"XMLID_486_\"><path id=\"XMLID_462_\" d=\"M42.35 31.43h3.09v1.4h-3.09z\"/></g><g id=\"XMLID_485_\"><path id=\"XMLID_461_\" d=\"M43.19 30.59h1.4v3.08h-1.4z\"/></g></g><g id=\"XMLID_476_\"><g id=\"XMLID_478_\"><path id=\"XMLID_460_\" d=\"M21.03 68h3.08v1.4h-3.08z\"/></g><g id=\"XMLID_477_\"><path id=\"XMLID_459_\" d=\"M21.87 67.16h1.4v3.08h-1.4z\"/></g></g><g id=\"XMLID_338_\"><g id=\"XMLID_475_\"><path id=\"XMLID_458_\" d=\"M3.35 80.26h3.08v1.4H3.35z\"/></g><g id=\"XMLID_474_\"><path id=\"XMLID_457_\" d=\"M4.19 79.42h1.4v3.08h-1.4z\"/></g></g><g id=\"XMLID_334_\"><g id=\"XMLID_337_\"><path id=\"XMLID_456_\" d=\"M4.89 15.01h3.08v1.4H4.89z\"/></g><g id=\"XMLID_336_\"><path id=\"XMLID_454_\" d=\"M5.73 14.17h1.4v3.08h-1.4z\"/></g></g><g id=\"XMLID_333_\"><path id=\"XMLID_453_\" d=\"M22.57 31.43h16.92v1.4H22.57z\"/></g><path class=\"st4\" d=\"M20.97 5.27h14.05v14.05H20.97z\" id=\"XMLID_318_\"/><g id=\"XMLID_245_\"><path id=\"XMLID_442_\" d=\"M39.83 16.41h-2.81v-1.4h2.81v1.4zm-5.62 0H31.4v-1.4h2.81v1.4zm-5.62 0h-2.81v-1.4h2.81v1.4zm11.94-3.5h-1.4V10.1h1.4v2.81zm-14.04-.01h-1.4v-2.81h1.4v2.81zm14.04-5.61h-1.4V4.48h1.4v2.81zm-14.04-.01h-1.4V4.47h1.4v2.81zm13.34-4.91h-2.8V.97h3.51v.7h-.7v.7zm-5.61 0h-2.81V.97h2.81v1.4zm-5.62 0h-2.81V.97h2.81v1.4z\"/></g><path class=\"st6\" d=\"M26.96 51.98a3.64 3.64 0 1 1-7.28 0 3.64 3.64 0 0 1 7.28 0z\" id=\"XMLID_232_\"/><path d=\"M12.02 44.98c0 1.41-1.14 2.56-2.56 2.56S6.9 46.39 6.9 44.98c0-1.41 1.14-2.56 2.56-2.56s2.56 1.15 2.56 2.56z\" fill=\"#98a0a7\" id=\"XMLID_190_\"/><g id=\"XMLID_27_\"><path id=\"XMLID_436_\" d=\"M25.77 54.93c-.01 0-.01 0 0 0-.46 0-.9-.06-1.33-.17l.35-1.36c.32.08.61.13.98.12.47 0 .93-.08 1.36-.24l.49 1.32c-.6.22-1.22.33-1.85.33zm-4.04-1.85a5.309 5.309 0 0 1-1.26-2.92l1.4-.15c.08.8.4 1.54.93 2.15l-1.07.92zm8.4-.44l-1.15-.8c.46-.66.7-1.43.7-2.24 0-.27-.03-.55-.08-.81l1.37-.29c.08.36.11.73.11 1.1.01 1.1-.32 2.15-.95 3.04zm-7.81-4.93l-1.23-.68c.53-.96 1.32-1.72 2.3-2.2l.62 1.26a4 4 0 0 0-1.69 1.62zm6.13-.96a3.88 3.88 0 0 0-2.11-1.02l.2-1.39c1.08.16 2.07.64 2.87 1.39l-.96 1.02z\"/></g></g></svg>'),(5402,1042,'_elementor_inline_svg','<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"_x31_\" x=\"0\" y=\"0\" viewBox=\"0 0 150 126.33\" xml:space=\"preserve\"><style>.st1{opacity:.3}.st2{fill:#231f20}.st3{fill:#bfbaa3}.st4{fill:#afa88c}.st5{fill:#dbd7c1}.st7{fill:#e5e1d3}.st8{fill:#f5a44a}.st9{fill:#fefeff}.st10{fill:#2ecca7}.st11{fill:#adcac8}</style><g id=\"XMLID_306_\"><g id=\"XMLID_17_\"><path id=\"XMLID_814_\" d=\"M7.53 124.95h137.55v1.39H7.53z\"/></g><g id=\"XMLID_13_\"><path fill=\"#fff\" d=\"M44.23 24.11h67.3v96.91h-67.3z\" id=\"XMLID_231_\"/><g id=\"XMLID_230_\"><path id=\"XMLID_811_\" d=\"M112.23 121.72H43.54v-98.3h68.69v98.3zm-67.3-1.39h65.92V24.81H44.93v95.52z\"/></g><g id=\"XMLID_229_\" class=\"st1\"><path id=\"XMLID_806_\" class=\"st2\" d=\"M43.71 72.12h68.24v7.16H43.71z\"/></g><path class=\"st3\" d=\"M40.28 68.99h75.2v7.16h-75.2z\" id=\"XMLID_227_\"/><path class=\"st4\" d=\"M40.28 72.57h75.2v3.58h-75.2z\" id=\"XMLID_226_\"/><g id=\"XMLID_224_\"><path id=\"XMLID_807_\" d=\"M116.18 76.84H39.59V68.3h76.59v8.54zm-75.2-1.39h73.82v-5.77H40.98v5.77z\"/></g><g id=\"XMLID_223_\" class=\"st1\"><path id=\"XMLID_29_\" class=\"st2\" d=\"M43.71 21.58h68.24v7.16H43.71z\"/></g><path class=\"st3\" d=\"M40.28 18.45h75.2v7.16h-75.2z\" id=\"XMLID_213_\"/><path class=\"st4\" d=\"M40.28 22.03h75.2v3.58h-75.2z\" id=\"XMLID_210_\"/><g id=\"XMLID_209_\"><path id=\"XMLID_803_\" d=\"M116.18 26.3H39.59v-8.54h76.59v8.54zm-75.2-1.39h73.82v-5.77H40.98v5.77z\"/></g><path class=\"st5\" d=\"M48.62 32.61h11.85v31.37H48.62z\" id=\"XMLID_207_\"/><path class=\"st5\" d=\"M64.19 32.61h11.85v31.37H64.19z\" id=\"XMLID_206_\"/><path class=\"st5\" d=\"M79.76 32.61h11.85v31.37H79.76z\" id=\"XMLID_205_\"/><path class=\"st5\" d=\"M95.33 32.61h11.85v31.37H95.33z\" id=\"XMLID_204_\"/><path class=\"st5\" d=\"M48.6 82.04h11.85v31.37H48.6z\" id=\"XMLID_203_\"/><path class=\"st5\" d=\"M64.17 82.04h11.85v31.37H64.17z\" id=\"XMLID_202_\"/><path class=\"st5\" d=\"M79.74 82.04h11.85v31.37H79.74z\" id=\"XMLID_201_\"/><path class=\"st5\" d=\"M95.31 82.04h11.85v31.37H95.31z\" id=\"XMLID_200_\"/><path fill=\"#e6e7e8\" d=\"M44.18 117.81h68.4v7.83h-68.4z\" id=\"XMLID_199_\"/><path class=\"st4\" d=\"M44.18 121.53h68.4v4.1h-68.4z\" id=\"XMLID_193_\"/><g id=\"XMLID_191_\"><path id=\"XMLID_800_\" d=\"M113.27 126.33H43.48v-9.21h69.79v9.21zm-68.4-1.38h67.02v-6.44H44.87v6.44z\"/></g><g id=\"XMLID_189_\"><path id=\"XMLID_799_\" d=\"M47.64 63.29h14.18v1.39H47.64z\"/></g><g id=\"XMLID_188_\"><path id=\"XMLID_798_\" d=\"M63.02 63.29H77.2v1.39H63.02z\"/></g><g id=\"XMLID_187_\"><path id=\"XMLID_797_\" d=\"M78.41 63.29h14.18v1.39H78.41z\"/></g><g id=\"XMLID_96_\"><path id=\"XMLID_796_\" d=\"M93.8 63.29h14.18v1.39H93.8z\"/></g><g id=\"XMLID_95_\"><path id=\"XMLID_795_\" d=\"M47.76 112.72h14.18v1.39H47.76z\"/></g><g id=\"XMLID_94_\"><path id=\"XMLID_794_\" d=\"M63.15 112.72h14.18v1.39H63.15z\"/></g><g id=\"XMLID_93_\"><path id=\"XMLID_793_\" d=\"M78.54 112.72h14.18v1.39H78.54z\"/></g><g id=\"XMLID_50_\"><path id=\"XMLID_792_\" d=\"M93.92 112.72h14.18v1.39H93.92z\"/></g><path class=\"st7\" d=\"M48.62 45.16L60.47 33.3v-.69h-7.64l-4.21 4.21z\" id=\"XMLID_49_\"/><path class=\"st7\" d=\"M48.62 50.41l11.85-11.85v-3.19L48.62 47.23z\" id=\"XMLID_48_\"/><path class=\"st7\" d=\"M64.17 45.13l11.86-11.85v-.7h-7.64l-4.22 4.22z\" id=\"XMLID_47_\"/><path class=\"st7\" d=\"M64.17 50.39l11.86-11.86v-3.18L64.17 47.2z\" id=\"XMLID_46_\"/><path class=\"st7\" d=\"M79.73 45.11l11.85-11.86v-.69h-7.64l-4.21 4.21z\" id=\"XMLID_45_\"/><path class=\"st7\" d=\"M79.73 50.36L91.58 38.5v-3.18L79.73 47.17z\" id=\"XMLID_44_\"/><path class=\"st7\" d=\"M95.28 45.08l11.86-11.85v-.7H99.5l-4.22 4.22z\" id=\"XMLID_43_\"/><path class=\"st7\" d=\"M95.28 50.33l11.86-11.85v-3.19L95.28 47.15z\" id=\"XMLID_42_\"/><path class=\"st7\" d=\"M48.6 94.56l11.86-11.85v-.7h-7.64l-4.22 4.22z\" id=\"XMLID_41_\"/><path class=\"st7\" d=\"M48.6 99.81l11.86-11.85v-3.18L48.6 96.63z\" id=\"XMLID_40_\"/><path class=\"st7\" d=\"M64.17 94.56l11.86-11.85v-.7h-7.64l-4.22 4.22z\" id=\"XMLID_39_\"/><path class=\"st7\" d=\"M64.17 99.81l11.86-11.85v-3.18L64.17 96.63z\" id=\"XMLID_38_\"/><path class=\"st7\" d=\"M79.74 94.56L91.6 82.71v-.7h-7.64l-4.22 4.22z\" id=\"XMLID_37_\"/><path class=\"st7\" d=\"M79.74 99.81L91.6 87.96v-3.18L79.74 96.63z\" id=\"XMLID_36_\"/><path class=\"st7\" d=\"M95.31 94.56l11.86-11.85v-.7h-7.64l-4.22 4.22z\" id=\"XMLID_35_\"/><path class=\"st7\" d=\"M95.31 99.81l11.86-11.85v-3.18L95.31 96.63z\" id=\"XMLID_34_\"/><g id=\"XMLID_32_\"><path id=\"XMLID_721_\" d=\"M111.54 31.98h9.23v1.39h-9.23z\"/></g><g id=\"XMLID_31_\"><path id=\"XMLID_720_\" d=\"M111.54 62.29h9.23v1.39h-9.23z\"/></g><path class=\"st8\" d=\"M118.6 23.79h15.9v48.32h-15.9z\" id=\"XMLID_30_\"/><g id=\"XMLID_14_\"><path class=\"st9\" d=\"M128.04 36v-2.45h-2.98V36h-1.14v-6.06h1.14v2.55h2.98v-2.55h1.13V36h-1.13z\" id=\"XMLID_25_\"/><path class=\"st9\" d=\"M129.66 40.79c-.02 1.57-.98 3.13-3.11 3.13s-3.11-1.53-3.11-3.12 1.02-3.19 3.11-3.19 3.13 1.6 3.11 3.18zm-5.1.03c.03 1 .56 2.06 1.99 2.06s1.96-1.07 1.98-2.07c.02-1.02-.55-2.16-1.98-2.16-1.42 0-2.01 1.15-1.99 2.17z\" id=\"XMLID_22_\"/><path class=\"st9\" d=\"M125.98 46.56h-1.92v-1.04h4.98v1.04h-1.92v5.02h-1.14v-5.02z\" id=\"XMLID_20_\"/><path class=\"st9\" d=\"M128.82 59.37h-4.53v-6.06h4.53v1.11h-3.4v1.39h3.28v1.06h-3.28v1.37h3.4v1.13z\" id=\"XMLID_18_\"/><path class=\"st9\" d=\"M125.56 61.1v5h3.11v1.06h-4.26V61.1h1.15z\" id=\"XMLID_15_\"/></g></g><g id=\"XMLID_239_\"><g id=\"XMLID_247_\"><path id=\"XMLID_715_\" d=\"M32.11 98.99h1.39v26.63h-1.39z\"/></g><path class=\"st10\" d=\"M37.14 98.99c0 2.42-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37s1.96-4.37 4.37-4.37 4.37 1.96 4.37 4.37z\" id=\"XMLID_246_\"/><path class=\"st11\" d=\"M37.14 98.99c0 2.42-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37s1.96-4.37 4.37-4.37 4.37 1.96 4.37 4.37z\" id=\"XMLID_244_\"/><path class=\"st10\" d=\"M37.17 110.72c0 2.41-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37 0-2.42 1.96-4.37 4.37-4.37 2.42 0 4.37 1.95 4.37 4.37z\" id=\"XMLID_243_\"/><path class=\"st11\" d=\"M37.17 110.72c0 2.41-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37 0-2.42 1.96-4.37 4.37-4.37 2.42 0 4.37 1.95 4.37 4.37z\" id=\"XMLID_242_\"/><g id=\"XMLID_241_\"><path id=\"XMLID_710_\" d=\"M32.77 104.06c-2.79 0-5.07-2.27-5.07-5.07 0-2.79 2.27-5.07 5.07-5.07 2.79 0 5.07 2.27 5.07 5.07-.01 2.79-2.28 5.07-5.07 5.07zm0-8.75c-2.03 0-3.68 1.65-3.68 3.68 0 2.03 1.65 3.68 3.68 3.68 2.03 0 3.68-1.65 3.68-3.68 0-2.03-1.65-3.68-3.68-3.68z\"/></g><g id=\"XMLID_240_\"><path id=\"XMLID_707_\" d=\"M32.8 115.79c-2.79 0-5.07-2.27-5.07-5.07 0-2.79 2.27-5.07 5.07-5.07 2.79 0 5.07 2.27 5.07 5.07 0 2.8-2.28 5.07-5.07 5.07zm0-8.75c-2.03 0-3.68 1.65-3.68 3.68 0 2.03 1.65 3.68 3.68 3.68 2.03 0 3.68-1.65 3.68-3.68 0-2.03-1.65-3.68-3.68-3.68z\"/></g></g><g id=\"XMLID_255_\"><g id=\"XMLID_238_\"><path id=\"XMLID_706_\" d=\"M18.96 98.99h1.39v26.63h-1.39z\"/></g><path class=\"st10\" d=\"M23.99 98.99c0 2.42-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37s1.96-4.37 4.37-4.37 4.37 1.96 4.37 4.37z\" id=\"XMLID_237_\"/><path class=\"st11\" d=\"M23.99 98.99c0 2.42-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37s1.96-4.37 4.37-4.37 4.37 1.96 4.37 4.37z\" id=\"XMLID_236_\"/><path class=\"st10\" d=\"M24.03 110.72c0 2.41-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37 0-2.42 1.96-4.37 4.37-4.37s4.37 1.96 4.37 4.37z\" id=\"XMLID_235_\"/><path class=\"st11\" d=\"M24.03 110.72c0 2.41-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37 0-2.42 1.96-4.37 4.37-4.37s4.37 1.96 4.37 4.37z\" id=\"XMLID_234_\"/><g id=\"XMLID_233_\"><path id=\"XMLID_670_\" d=\"M19.62 104.06c-2.79 0-5.07-2.27-5.07-5.07 0-2.79 2.27-5.07 5.07-5.07s5.07 2.27 5.07 5.07c0 2.79-2.28 5.07-5.07 5.07zm0-8.75c-2.03 0-3.68 1.65-3.68 3.68 0 2.03 1.65 3.68 3.68 3.68 2.03 0 3.68-1.65 3.68-3.68 0-2.03-1.65-3.68-3.68-3.68z\"/></g><g id=\"XMLID_12_\"><path id=\"XMLID_655_\" d=\"M19.65 115.79c-2.79 0-5.07-2.27-5.07-5.07 0-2.79 2.27-5.07 5.07-5.07a5.07 5.07 0 0 1 0 10.14zm0-8.75c-2.03 0-3.68 1.65-3.68 3.68 0 2.03 1.65 3.68 3.68 3.68s3.68-1.65 3.68-3.68c.01-2.03-1.65-3.68-3.68-3.68z\"/></g></g><g id=\"XMLID_314_\"><g id=\"XMLID_344_\"><path id=\"XMLID_654_\" d=\"M134.68 98.99h1.39v26.63h-1.39z\"/></g><path class=\"st10\" d=\"M139.71 98.99c0 2.42-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37s1.96-4.37 4.37-4.37c2.42 0 4.37 1.96 4.37 4.37z\" id=\"XMLID_343_\"/><path class=\"st11\" d=\"M139.71 98.99c0 2.42-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37s1.96-4.37 4.37-4.37c2.42 0 4.37 1.96 4.37 4.37z\" id=\"XMLID_342_\"/><path class=\"st10\" d=\"M139.75 110.72c0 2.41-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37 0-2.42 1.96-4.37 4.37-4.37s4.37 1.95 4.37 4.37z\" id=\"XMLID_340_\"/><path class=\"st11\" d=\"M139.75 110.72c0 2.41-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37 0-2.42 1.96-4.37 4.37-4.37s4.37 1.95 4.37 4.37z\" id=\"XMLID_339_\"/><g id=\"XMLID_316_\"><path id=\"XMLID_651_\" d=\"M135.34 104.06c-2.79 0-5.07-2.27-5.07-5.07 0-2.79 2.27-5.07 5.07-5.07 2.79 0 5.07 2.27 5.07 5.07 0 2.79-2.28 5.07-5.07 5.07zm0-8.75c-2.03 0-3.68 1.65-3.68 3.68 0 2.03 1.65 3.68 3.68 3.68 2.03 0 3.68-1.65 3.68-3.68 0-2.03-1.65-3.68-3.68-3.68z\"/></g><g id=\"XMLID_315_\"><path id=\"XMLID_648_\" d=\"M135.38 115.79c-2.79 0-5.07-2.27-5.07-5.07 0-2.79 2.27-5.07 5.07-5.07 2.79 0 5.07 2.27 5.07 5.07-.01 2.8-2.28 5.07-5.07 5.07zm0-8.75c-2.03 0-3.68 1.65-3.68 3.68 0 2.03 1.65 3.68 3.68 3.68 2.03 0 3.68-1.65 3.68-3.68 0-2.03-1.65-3.68-3.68-3.68z\"/></g></g><g id=\"XMLID_198_\"><g id=\"XMLID_313_\"><path id=\"XMLID_647_\" d=\"M121.54 98.99h1.39v26.63h-1.39z\"/></g><path class=\"st10\" d=\"M126.57 98.99c0 2.42-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37s1.96-4.37 4.37-4.37 4.37 1.96 4.37 4.37z\" id=\"XMLID_312_\"/><path class=\"st11\" d=\"M126.57 98.99c0 2.42-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37s1.96-4.37 4.37-4.37 4.37 1.96 4.37 4.37z\" id=\"XMLID_311_\"/><path class=\"st10\" d=\"M126.6 110.72c0 2.41-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37 0-2.42 1.96-4.37 4.37-4.37s4.37 1.96 4.37 4.37z\" id=\"XMLID_310_\"/><path class=\"st11\" d=\"M126.6 110.72c0 2.41-1.96 4.37-4.37 4.37-2.42 0-4.37-1.96-4.37-4.37 0-2.42 1.96-4.37 4.37-4.37s4.37 1.96 4.37 4.37z\" id=\"XMLID_309_\"/><g id=\"XMLID_307_\"><path id=\"XMLID_644_\" d=\"M122.19 104.06c-2.79 0-5.07-2.27-5.07-5.07 0-2.79 2.27-5.07 5.07-5.07s5.07 2.27 5.07 5.07c0 2.79-2.27 5.07-5.07 5.07zm0-8.75c-2.03 0-3.68 1.65-3.68 3.68 0 2.03 1.65 3.68 3.68 3.68 2.03 0 3.68-1.65 3.68-3.68.01-2.03-1.65-3.68-3.68-3.68z\"/></g><g id=\"XMLID_221_\"><path id=\"XMLID_641_\" d=\"M122.23 115.79c-2.79 0-5.07-2.27-5.07-5.07 0-2.79 2.27-5.07 5.07-5.07 2.79 0 5.07 2.27 5.07 5.07 0 2.8-2.28 5.07-5.07 5.07zm0-8.75c-2.03 0-3.68 1.65-3.68 3.68 0 2.03 1.65 3.68 3.68 3.68 2.03 0 3.68-1.65 3.68-3.68 0-2.03-1.65-3.68-3.68-3.68z\"/></g></g><path class=\"st8\" d=\"M14.76 44.84h14.86V59.7H14.76z\" id=\"XMLID_299_\"/><g id=\"XMLID_298_\"><path id=\"XMLID_638_\" d=\"M36.76 52.96H20.52V36.71h16.24v16.25zM21.9 51.57h13.47V38.1H21.9v13.47z\"/></g><path class=\"st4\" d=\"M145.66 81.75c0 3.87-3.13 7-7 7s-7-3.13-7-7 3.13-7 7-7 7 3.13 7 7z\" id=\"XMLID_297_\"/><g id=\"XMLID_296_\"><path id=\"XMLID_629_\" d=\"M142.21 92.18a7.703 7.703 0 0 1-2.96-.63l.55-1.27c.77.33 1.58.51 2.43.52l-.02 1.38zm2.97-.56l-.52-1.28c.78-.31 1.47-.77 2.07-1.36l.97.99c-.72.71-1.57 1.27-2.52 1.65zm-8.42-1.8c-.71-.74-1.26-1.6-1.63-2.55l1.29-.5c.3.78.75 1.48 1.34 2.09l-1 .96zm12.65-2.37l-1.28-.53c.32-.77.49-1.59.49-2.43H150c0 1.02-.2 2.02-.59 2.96zM136 84.32l-1.39-.04c.03-1.03.25-2.02.67-2.95l1.26.57c-.33.77-.52 1.58-.54 2.42zm12.25-1.96c-.28-.79-.71-1.5-1.28-2.12l1.02-.94c.69.76 1.22 1.63 1.56 2.59l-1.3.47zm-10.26-2.47l-.95-1.01a7.72 7.72 0 0 1 2.57-1.6l.48 1.3c-.77.29-1.48.73-2.1 1.31zm6.97-1.13c-.76-.35-1.57-.55-2.41-.58l.05-1.38c1.03.04 2.02.28 2.94.71l-.58 1.25z\"/></g><g id=\"XMLID_295_\"><path id=\"XMLID_626_\" d=\"M37.79 83.13a1.81 1.81 0 1 1 0-3.62 1.81 1.81 0 0 1 0 3.62zm0-2.24c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42a.41.41 0 0 0-.42-.42z\"/></g><g id=\"XMLID_261_\"><g id=\"XMLID_283_\"><g id=\"XMLID_291_\"><path id=\"XMLID_613_\" d=\"M132.09 18.16c-1.01 0-2-.16-2.95-.49l.45-1.31c.8.27 1.64.41 2.5.41v1.39zm-5.57-1.91a9.341 9.341 0 0 1-2.02-2.19l1.16-.76c.47.71 1.05 1.34 1.72 1.86l-.86 1.09zm-3.23-4.93a9.35 9.35 0 0 1-.28-2.24c0-.25.01-.49.03-.73l1.38.11c-.02.21-.03.41-.03.62 0 .64.08 1.28.24 1.9l-1.34.34zM125.04 6l-1.27-.56c.4-.92.95-1.76 1.63-2.5l1.02.94c-.58.63-1.04 1.35-1.38 2.12zm3.37-3.68l-.66-1.22c.88-.48 1.83-.81 2.82-.98l.23 1.37a7.9 7.9 0 0 0-2.39.83z\"/></g><g id=\"XMLID_290_\"><path id=\"XMLID_612_\" d=\"M132.09 18.16v-1.39c4.24 0 7.7-3.45 7.7-7.7 0-4.24-3.45-7.7-7.7-7.7V0c5.01 0 9.08 4.07 9.08 9.08s-4.07 9.08-9.08 9.08z\"/></g></g><g id=\"XMLID_279_\"><g id=\"XMLID_281_\"><path id=\"XMLID_611_\" d=\"M130.52 8.39h3.14v1.39h-3.14z\"/></g><g id=\"XMLID_280_\"><path id=\"XMLID_610_\" d=\"M131.4 7.51h1.39v3.14h-1.39z\"/></g></g></g><g id=\"XMLID_257_\"><g id=\"XMLID_260_\"><path id=\"XMLID_609_\" d=\"M10.11 28.04h22.75v1.39H10.11z\"/></g><g id=\"XMLID_259_\"><path id=\"XMLID_608_\" d=\"M33.83 28.04h1.97v1.39h-1.97z\"/></g><g id=\"XMLID_258_\"><path id=\"XMLID_607_\" d=\"M36.74 28.04h1.97v1.39h-1.97z\"/></g></g><g id=\"XMLID_253_\"><g id=\"XMLID_256_\"><path id=\"XMLID_606_\" d=\"M41.75 28.04h2.9v1.39h-2.9z\"/></g><g id=\"XMLID_254_\"><path id=\"XMLID_605_\" d=\"M42.51 27.29h1.39v2.9h-1.39z\"/></g></g><g id=\"XMLID_250_\"><g id=\"XMLID_252_\"><path id=\"XMLID_604_\" d=\"M8.66 71.43h2.9v1.39h-2.9z\"/></g><g id=\"XMLID_251_\"><path id=\"XMLID_603_\" d=\"M9.41 70.67h1.39v2.9H9.41z\"/></g></g><g id=\"XMLID_300_\"><g id=\"XMLID_302_\"><path id=\"XMLID_602_\" d=\"M111.13 6.75h2.9v1.39h-2.9z\"/></g><g id=\"XMLID_301_\"><path id=\"XMLID_601_\" d=\"M111.89 5.99h1.39v2.9h-1.39z\"/></g></g><g id=\"XMLID_303_\"><g id=\"XMLID_305_\"><path id=\"XMLID_600_\" d=\"M28.17 10.53h2.9v1.39h-2.9z\"/></g><g id=\"XMLID_304_\"><path id=\"XMLID_599_\" d=\"M28.92 9.78h1.39v2.9h-1.39z\"/></g></g><g id=\"XMLID_544_\"><g id=\"XMLID_580_\"><path id=\"XMLID_598_\" d=\"M37.33 10.53h1.45v1.39h-1.45z\"/></g><g id=\"XMLID_579_\"><path id=\"XMLID_597_\" d=\"M39.95 10.53h1.45v1.39h-1.45z\"/></g><g id=\"XMLID_578_\"><path id=\"XMLID_596_\" d=\"M42.57 10.53h1.45v1.39h-1.45z\"/></g><g id=\"XMLID_577_\"><path id=\"XMLID_595_\" d=\"M45.2 10.53h1.45v1.39H45.2z\"/></g><g id=\"XMLID_576_\"><path id=\"XMLID_594_\" d=\"M47.82 10.53h1.45v1.39h-1.45z\"/></g><g id=\"XMLID_574_\"><path id=\"XMLID_593_\" d=\"M50.44 10.53h1.45v1.39h-1.45z\"/></g><g id=\"XMLID_557_\"><path id=\"XMLID_592_\" d=\"M53.07 10.53h1.45v1.39h-1.45z\"/></g><g id=\"XMLID_549_\"><path id=\"XMLID_591_\" d=\"M55.69 10.53h1.45v1.39h-1.45z\"/></g><g id=\"XMLID_546_\"><path id=\"XMLID_590_\" d=\"M58.31 10.53h1.45v1.39h-1.45z\"/></g><g id=\"XMLID_545_\"><path id=\"XMLID_589_\" d=\"M60.94 10.53h1.45v1.39h-1.45z\"/></g></g><g id=\"XMLID_274_\"><path id=\"XMLID_588_\" d=\"M17.87 81.02h13.88v1.39H17.87z\"/></g><g id=\"XMLID_249_\"><path id=\"XMLID_587_\" d=\"M66.02 6.75h40.37v1.39H66.02z\"/></g><g id=\"XMLID_248_\"><path id=\"XMLID_586_\" d=\"M0 62.29h42.96v1.39H0z\"/></g></g></svg>'),(5423,3793,'_elementor_edit_mode','builder'),(5424,3793,'_elementor_template_type','wp-page'),(5425,3793,'_elementor_version','2.9.9'),(5426,3793,'_elementor_pro_version','2.10.3'),(5427,3793,'_wp_page_template','default'),(5428,3793,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-17.jpeg\",\"id\":2652},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf7c8c8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c8be532\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f15c37b\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Guidance you need\",\"description_text\":\"We\'re here to strip the fear out of home buying and arm you with the confidence you need to make decisions\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-guidance\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"a3667fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2af9d1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Search that feels familiar\",\"description_text\":\"Our first-of-its-kind search experience enables you to plug in a monthly payment you\'re willing to make \",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-search-home\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"ca200a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"37db298\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Premium values\",\"description_text\":\"Luxury real estate is our passion and it demands our focus. We strive to provide a high level of personalised service\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-value\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ec65d2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-about.jpg\",\"id\":595},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e20115e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e43a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b397bbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"To help members\\nbecome more profitable\\nand successful\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fd9b7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Homey is America\'s largest trade association, representing 1.3 million members, including our institutes, societies, and councils, involved in all aspects of the residential and commercial real estate industries.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e97c0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Help sellers get the most for their properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Help sellers price their properties fairly\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Help buyers find the property that fits their needs\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Help buyers avoid over paying by strategically negotiating purchase\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#FF9933\",\"text_color\":\"#000000\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"3fb2936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"07a1772\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1070,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/parallax-about.jpg\",\"id\":605},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5ec34a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"83955a7\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1721,\"thousand_separator\":\"\",\"title\":\"Homes for sale\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"34fa6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb10dc3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":674,\"thousand_separator\":\"\",\"title\":\"Homes for rent\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"88e7d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"765c525\",\"elType\":\"widget\",\"settings\":{\"ending_number\":6599,\"thousand_separator\":\"\",\"title\":\"Recently sold\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"7f30c48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"bd956da\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5763,\"thousand_separator\":\"\",\"title\":\"Happy clients\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38c80d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c76a7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fbdaf84\",\"elType\":\"widget\",\"settings\":{\"title\":\"testimonials\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"661c7be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here\\u2019s what clients say<br>\\nabout us\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fcc4c16\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4d0eeb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"09a9b8c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"b2416f8\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"Corporate communications Executive\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true},{\"id\":\"eea7cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc1add0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b6dcce\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mrs. Emma Stone\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5430,3794,'_elementor_edit_mode','builder'),(5431,3794,'_elementor_template_type','wp-page'),(5432,3794,'_elementor_version','2.9.9'),(5433,3794,'_elementor_pro_version','2.10.3'),(5434,3794,'_wp_page_template','default'),(5435,3794,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"90\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"0\",\"left\":\"110\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#000000\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf7c8c8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"100\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"15\",\"bottom\":\"60\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"80\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"c8be532\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f15c37b\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Guidance you need\",\"description_text\":\"We\'re here to strip the fear out of home buying and arm you with the confidence you need to make decisions\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-guidance\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"a3667fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"15\",\"bottom\":\"30\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"b2af9d1\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Search that feels familiar\",\"description_text\":\"Our first-of-its-kind search experience enables you to plug in a monthly payment you\'re willing to make \",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-search-home\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"ca200a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"37db298\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Premium values\",\"description_text\":\"Luxury real estate is our passion and it demands our focus. We strive to provide a high level of personalised service\",\"icon_space\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_space_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_align\":\"left\",\"title_typography_typography\":\"custom\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"50\",\"bottom\":\"70\",\"left\":\"50\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-value\",\"library\":\"rentex-icon\"},\"title_typography_line_height_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ec65d2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/image-about.jpg\",\"id\":595},\"background_position\":\"center right\",\"background_xpos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e20115e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"110\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e43a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why us\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b397bbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"To help members\\nbecome more profitable\\nand successful\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fd9b7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The Homey is America\'s largest trade association, representing 1.3 million members, including our institutes, societies, and councils, involved in all aspects of the residential and commercial real estate industries.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e8e97c0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Help sellers get the most for their properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Help sellers price their properties fairly\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Help buyers find the property that fits their needs\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Help buyers avoid over paying by strategically negotiating purchase\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a26e867\"}],\"icon_color\":\"#FF9933\",\"text_color\":\"#000000\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"3fb2936\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"07a1772\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1070,\"sizes\":[]},\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/parallax-about.jpg\",\"id\":605},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"e5ec34a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"83955a7\",\"elType\":\"widget\",\"settings\":{\"ending_number\":1721,\"thousand_separator\":\"\",\"title\":\"Homes for sale\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"34fa6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb10dc3\",\"elType\":\"widget\",\"settings\":{\"ending_number\":674,\"thousand_separator\":\"\",\"title\":\"Homes for rent\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"88e7d1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"765c525\",\"elType\":\"widget\",\"settings\":{\"ending_number\":6599,\"thousand_separator\":\"\",\"title\":\"Recently sold\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"7f30c48\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"bd956da\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5763,\"thousand_separator\":\"\",\"title\":\"Happy clients\",\"position\":\"center\",\"number_color\":\"#FFFFFF\",\"typography_number_typography\":\"custom\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_number_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"spacing_number_wrapper\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"typography_title_typography\":\"custom\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b38c80d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#F5F5EF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c76a7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"fbdaf84\",\"elType\":\"widget\",\"settings\":{\"title\":\"testimonials\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"661c7be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Here\\u2019s what clients say<br>\\nabout us\\n\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fcc4c16\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"20\"},\"elements\":[{\"id\":\"4d0eeb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true}},\"elements\":[{\"id\":\"09a9b8c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"b2416f8\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\",\"testimonial_name\":\"Mr. William Smith\",\"testimonial_job\":\"Corporate communications Executive\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true},{\"id\":\"eea7cbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cc1add0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-quote-2\",\"library\":\"rentex-icon\"},\"align\":\"left\",\"primary_color\":\"#F5A44A\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8b6dcce\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\",\"testimonial_name\":\"Mrs. Emma Stone\",\"testimonial_job\":\"New York, USA\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"cc9e8c4\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_image_size\":\"full\",\"style\":\"1\",\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":415,\"sizes\":[]},\"content_content_color\":\"#000000\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"content_typography_font_weight\":\"500\",\"name_text_color\":\"#000000\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"name_typography_font_weight\":\"bold\",\"job_text_color\":\"#B4B4B4\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"job_typography_font_weight\":\"500\",\"_element_width_tablet\":\"initial\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(5494,3802,'_wp_page_template','default'),(5495,3802,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5496,3802,'_elementor_data','[{\"id\":\"7293bc15\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dfcf494\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14435b5f\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"d535454\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"637acdb9\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"597d6d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3d363020\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5497,3804,'_elementor_edit_mode','builder'),(5498,3804,'_elementor_template_type','section'),(5499,3804,'_elementor_version','2.9.9'),(5500,3804,'_elementor_pro_version','2.10.3'),(5501,3804,'_wp_page_template','default'),(5502,3804,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5503,3804,'_elementor_data','[{\"id\":\"7293bc15\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2dfcf494\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"14435b5f\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"d535454\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"637acdb9\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"597d6d41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3d363020\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5504,3802,'_elementor_controls_usage','a:3:{s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;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:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(5505,3805,'_elementor_edit_mode','builder'),(5506,3805,'_elementor_template_type','section'),(5507,3805,'inline_featured_image','0'),(5508,3805,'_elementor_version','2.9.9'),(5509,3805,'_elementor_pro_version','2.10.3'),(5510,3806,'_elementor_edit_mode','builder'),(5511,3806,'_elementor_template_type','section'),(5512,3806,'_elementor_version','2.9.9'),(5513,3806,'_elementor_pro_version','2.10.3'),(5514,3805,'_wp_page_template','default'),(5515,3805,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5516,3805,'_elementor_data','[{\"id\":\"3ffe8768\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6013c4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ead590e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"6a073ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2b50a179\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"39758102\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7d543fee\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5517,3807,'_elementor_edit_mode','builder'),(5518,3807,'_elementor_template_type','section'),(5519,3807,'_elementor_version','2.9.9'),(5520,3807,'_elementor_pro_version','2.10.3'),(5521,3807,'_wp_page_template','default'),(5522,3807,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5523,3807,'_elementor_data','[{\"id\":\"3ffe8768\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6013c4ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ead590e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"6a073ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2b50a179\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"39758102\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7d543fee\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5524,3805,'_elementor_controls_usage','a:3:{s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;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:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(5525,3808,'_elementor_edit_mode','builder'),(5526,3808,'_elementor_template_type','section'),(5527,3808,'inline_featured_image','0'),(5528,3808,'_elementor_version','2.9.9'),(5529,3808,'_elementor_pro_version','2.10.3'),(5530,3809,'_elementor_edit_mode','builder'),(5531,3809,'_elementor_template_type','section'),(5532,3809,'_elementor_version','2.9.9'),(5533,3809,'_elementor_pro_version','2.10.3'),(5534,3808,'_wp_page_template','default'),(5535,3808,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5536,3808,'_elementor_data','[{\"id\":\"2d6e1eca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"101e1f93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"55a9ba9a\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"5edcf59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4d04316a\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"38d4bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"17400fa6\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5537,3810,'_elementor_edit_mode','builder'),(5538,3810,'_elementor_template_type','section'),(5539,3810,'_elementor_version','2.9.9'),(5540,3810,'_elementor_pro_version','2.10.3'),(5541,3810,'_wp_page_template','default'),(5542,3810,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5543,3810,'_elementor_data','[{\"id\":\"2d6e1eca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"101e1f93\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"55a9ba9a\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"5edcf59c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4d04316a\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"38d4bef1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"17400fa6\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false}]'),(5544,3808,'_elementor_controls_usage','a:3:{s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;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:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(6726,3741,'stm_day_13','1'),(5546,2710,'_wp_old_date','2021-05-14'),(6108,2711,'_wp_old_date','2021-05-14'),(5552,3814,'_elementor_edit_mode','builder'),(5553,3814,'_elementor_template_type','section'),(5554,3814,'inline_featured_image','0'),(5555,3814,'_elementor_version','2.9.9'),(5556,3814,'_elementor_pro_version','2.10.3'),(5557,3815,'_elementor_edit_mode','builder'),(5558,3815,'_elementor_template_type','section'),(5559,3815,'_elementor_version','2.9.9'),(5560,3815,'_elementor_pro_version','2.10.3'),(5561,3814,'_wp_page_template','default'),(5562,3814,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5563,3814,'_elementor_data','[{\"id\":\"673c2d59\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4488bd5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12769dc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(5564,3816,'_elementor_edit_mode','builder'),(5565,3816,'_elementor_template_type','section'),(5566,3816,'_elementor_version','2.9.9'),(5567,3816,'_elementor_pro_version','2.10.3'),(5568,3816,'_wp_page_template','default'),(5569,3816,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5570,3816,'_elementor_data','[{\"id\":\"673c2d59\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4488bd5e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"12769dc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(5571,3814,'_elementor_controls_usage','a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;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:1;s:12:\"align_mobile\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_line_height\";i:1;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;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:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(5572,3817,'_elementor_edit_mode','builder'),(5573,3817,'_elementor_template_type','section'),(5574,3817,'inline_featured_image','0'),(5575,3817,'_elementor_version','2.9.9'),(5576,3817,'_elementor_pro_version','2.10.3'),(5577,3818,'_elementor_edit_mode','builder'),(5578,3818,'_elementor_template_type','section'),(5579,3818,'_elementor_version','2.9.9'),(5580,3818,'_elementor_pro_version','2.10.3'),(5581,3817,'_wp_page_template','default'),(5582,3817,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5583,3817,'_elementor_data','[{\"id\":\"2ee1fce3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4cb16f50\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66c9767d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26de379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8fbc2e4\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5584,3819,'_elementor_edit_mode','builder'),(5585,3819,'_elementor_template_type','section'),(5586,3819,'_elementor_version','2.9.9'),(5587,3819,'_elementor_pro_version','2.10.3'),(5588,3819,'_wp_page_template','default'),(5589,3819,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5590,3819,'_elementor_data','[{\"id\":\"2ee1fce3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4cb16f50\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66c9767d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26de379\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8fbc2e4\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5591,3817,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;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:1;s:12:\"align_mobile\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_line_height\";i:1;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:19:\"hover_primary_color\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:1;s:27:\"content_content_color_hover\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;s:26:\"name_typography_typography\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:1;s:21:\"space_between_widgets\";i:1;s:19:\"_inline_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:1;s:3:\"gap\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}}'),(5602,3821,'_elementor_version','2.9.9'),(5603,3821,'_elementor_pro_version','2.10.3'),(5604,3821,'_wp_page_template','default'),(5605,3821,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e253c6d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\"},\"elements\":[{\"id\":\"b61e69e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5600,3821,'_elementor_edit_mode','builder'),(5601,3821,'_elementor_template_type','wp-page'),(5724,3839,'_elementor_edit_mode','builder'),(5725,3839,'_elementor_template_type','wp-page'),(5726,3839,'_elementor_version','2.9.9'),(5727,3839,'_elementor_pro_version','2.10.3'),(5728,3839,'_wp_page_template','default'),(5729,3839,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e253c6d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_slideshow_gallery\":[{\"id\":2724,\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"b61e69e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.071999999999999175770426518283784389495849609375},\"elements\":[],\"isInner\":false},{\"id\":\"67a90c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.52000000000000312638803734444081783294677734375,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false}},\"elements\":[{\"id\":\"6192649\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7336325\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d1cb8e5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact form\"},\"elements\":[],\"widgetType\":\"rentex-contactform\"}],\"isInner\":false},{\"id\":\"a2b9995\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.071999999999999175770426518283784389495849609375},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5614,198,'_elementor_inline_svg','<svg viewBox=\"0 0 132.97 37\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M50.23 17.91c1.08-1.28 1.61-2.79 1.61-4.54 0-2.24-.74-4.04-2.21-5.39s-3.5-2.02-6.09-2.02h-9.01v23.8h4.52v-8.98h1.9l6.32 8.98h5.27l-6.49-9.28c1.71-.43 3.1-1.29 4.18-2.57zM39.06 16.5v-6.29h4.66c1.04 0 1.86.3 2.46.9s.9 1.35.9 2.26-.31 1.66-.92 2.24c-.61.59-1.45.88-2.52.88h-4.58zm26.21-2.77c-1.22-.69-2.57-1.04-4.05-1.04-1.54 0-2.96.37-4.25 1.1a8.231 8.231 0 0 0-3.08 3.09c-.76 1.33-1.14 2.84-1.14 4.54s.37 3.21 1.12 4.54 1.77 2.36 3.08 3.09c1.3.74 2.76 1.11 4.37 1.11 1.36 0 2.6-.26 3.72-.78s2.07-1.21 2.84-2.07l-2.69-2.89c-1.04 1.2-2.36 1.8-3.94 1.8-1.04 0-1.94-.31-2.7-.92s-1.24-1.47-1.45-2.58h11.97c.11-.77.17-1.47.17-2.11 0-1.47-.36-2.82-1.07-4.03a7.562 7.562 0 0 0-2.9-2.85zm-7.92 5.62c.29-.84.76-1.52 1.39-2.04s1.45-.78 2.45-.78c.97 0 1.79.27 2.45.8s1.09 1.21 1.29 2.02zm22.75-6.66c-1.02 0-1.91.24-2.67.72s-1.38 1.09-1.85 1.84V13.1h-4.25v16.66h4.25v-8.15c0-1.45.36-2.61 1.07-3.48.71-.86 1.58-1.3 2.6-1.3.97 0 1.72.35 2.24 1.06.52.7.78 1.69.78 2.97v8.9h4.25v-9.54c0-2.29-.57-4.12-1.72-5.48-1.14-1.37-2.71-2.05-4.7-2.05zm16.35 13.4c-.61 0-1.12-.23-1.53-.68s-.61-1.04-.61-1.77v-6.56h4.18V13.1h-4.18V8.34l-4.28 1.73v3.03h-2.24v3.98h2.24v6.73c0 2.09.51 3.67 1.53 4.74 1.02 1.08 2.39 1.62 4.11 1.62 1.07 0 2.04-.15 2.92-.44v-4.01a4.5 4.5 0 0 1-.93.29c-.31.05-.71.08-1.21.08zm11.39.13c-1.04 0-1.94-.31-2.7-.92s-1.24-1.47-1.45-2.58h11.97c.11-.77.17-1.47.17-2.11 0-1.47-.36-2.82-1.07-4.03s-1.68-2.16-2.91-2.86c-1.22-.69-2.57-1.04-4.05-1.04-1.54 0-2.96.37-4.25 1.1a8.231 8.231 0 0 0-3.08 3.09c-.76 1.33-1.14 2.84-1.14 4.54s.37 3.21 1.12 4.54 1.77 2.36 3.08 3.09c1.3.74 2.76 1.11 4.37 1.11 1.36 0 2.6-.26 3.72-.78s2.07-1.21 2.84-2.07l-2.69-2.89c-1.03 1.21-2.34 1.81-3.93 1.81zm-2.51-8.91c.63-.52 1.45-.78 2.45-.78.97 0 1.79.27 2.45.8s1.09 1.21 1.29 2.02h-7.58c.29-.83.75-1.51 1.39-2.04zm21.28 3.88l6.02-8.09h-5.1l-3.43 4.76-3.47-4.76h-5.07l6.02 8.13-6.36 8.53h5.07l3.77-5.2 3.81 5.2h5.1z\"/><path clip-rule=\"evenodd\" d=\"M27.7 13.27L14.72.3c-.4-.4-1.04-.4-1.44 0L.3 13.27c-.19.19-.3.45-.3.72v15.15c0 .56.45 1.01 1.02 1.01h6.73L9.3 28.6c-.12-.44-.19-.89-.19-1.34A4.88 4.88 0 0 1 14 22.37c1.3 0 2.54.51 3.46 1.42.92.92 1.43 2.16 1.43 3.46s-.51 2.54-1.43 3.46L14 34.17l-3.17-3.16 1.87-1.87c.37.25.81.4 1.3.4a2.279 2.279 0 1 0 0-4.56c-1.26 0-2.28 1.02-2.28 2.28 0 .44.12.85.34 1.19l-3.31 3.3.42.42.25.25L14 37l4.88-4.87a6.73 6.73 0 0 0 1.38-1.98h6.73c.56 0 1.02-.45 1.02-1.01V13.99c-.01-.27-.12-.53-.31-.72zM14 25.93a1.33 1.33 0 1 1-1.33 1.33c0-.74.59-1.33 1.33-1.33zm11.97 2.2h-5.13c.04-.29.05-.58.05-.87A6.86 6.86 0 0 0 14 20.38c-1.83 0-3.58.72-4.88 2.01a6.854 6.854 0 0 0-2.01 4.87c0 .29.02.58.05.87H2.03V14.41L14 2.45l11.97 11.96zM13.35 11.45h-1.52c-.1 0-.18.08-.18.18v1.51c0 .1.08.18.18.18h1.52c.1 0 .18-.08.18-.18v-1.51c0-.1-.08-.18-.18-.18zm1.3 1.88h1.52c.1 0 .18-.08.18-.18v-1.51c0-.1-.08-.18-.18-.18h-1.52c-.1 0-.18.08-.18.18v1.51c0 .1.08.18.18.18zm0 2.81h1.52c.1 0 .18-.08.18-.18v-1.51c0-.1-.08-.18-.18-.18h-1.52c-.1 0-.18.08-.18.18v1.51c0 .1.08.18.18.18zm-1.3-1.87h-1.52c-.1 0-.18.08-.18.18v1.51c0 .1.08.18.18.18h1.52c.1 0 .18-.08.18-.18v-1.51c0-.1-.08-.18-.18-.18z\" fill=\"#f5a44a\" fill-rule=\"evenodd\"/></svg>'),(6094,3892,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6095,3892,'_elementor_css','a:5:{s:4:\"time\";i:1624422564;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6089,3892,'_elementor_edit_mode','builder'),(6090,3892,'_elementor_template_type','wp-page'),(6091,3892,'_elementor_version','2.9.9'),(6092,3892,'_elementor_pro_version','2.10.3'),(6093,3892,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6088,3892,'_wp_page_template','elementor_header_footer'),(6214,3908,'_elementor_edit_mode','builder'),(6192,3905,'_elementor_edit_mode','builder'),(6193,3905,'_elementor_template_type','page'),(6194,3905,'_elementor_version','2.9.9'),(6195,3905,'_elementor_pro_version','2.10.3'),(6196,3905,'_wp_page_template','default'),(6197,3905,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#E1A563\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6139,3897,'_elementor_css','a:5:{s:4:\"time\";i:1624428756;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6103,3893,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6133,3897,'_elementor_edit_mode','builder'),(6134,3897,'_elementor_template_type','page'),(6135,3897,'_elementor_version','2.9.9'),(6136,3897,'_elementor_pro_version','2.10.3'),(6137,3897,'_wp_page_template','default'),(6138,3897,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cca1da7\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6123,1771,'stm_day_23','10'),(6363,3917,'_wp_page_template','elementor_header_footer'),(6364,3917,'_elementor_edit_mode','builder'),(6365,3917,'_elementor_template_type','wp-page'),(6366,3917,'_elementor_version','2.9.9'),(6367,3917,'_elementor_pro_version','2.10.3'),(6368,3917,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6114,3895,'_menu_item_menu_item_parent','0'),(6115,3895,'_menu_item_object_id','881'),(6116,3895,'_menu_item_object','page'),(6117,3895,'_menu_item_target',''),(6118,3895,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6119,3895,'_menu_item_xfn',''),(6120,3895,'_menu_item_url',''),(5886,3862,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5880,3862,'_elementor_edit_mode','builder'),(5881,3862,'_elementor_template_type','wp-page'),(5882,3862,'_elementor_version','2.9.9'),(5883,3862,'_elementor_pro_version','2.10.3'),(5884,3862,'_wp_page_template','default'),(5885,3862,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e253c6d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_slideshow_gallery\":[{\"id\":2724,\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"b61e69e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.071999999999999175770426518283784389495849609375},\"elements\":[],\"isInner\":false},{\"id\":\"67a90c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.52000000000000312638803734444081783294677734375,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false}},\"elements\":[{\"id\":\"6192649\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7336325\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d1cb8e5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact form\"},\"elements\":[],\"widgetType\":\"rentex-contactform\"}],\"isInner\":false},{\"id\":\"a2b9995\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.071999999999999175770426518283784389495849609375},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6130,3896,'_elementor_css','a:6:{s:4:\"time\";i:1622193560;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6215,3908,'_elementor_template_type','page'),(6216,3908,'_elementor_version','2.9.9'),(6217,3908,'_elementor_pro_version','2.10.3'),(6218,3908,'_wp_page_template','default'),(6142,3898,'inline_featured_image','0'),(6143,3899,'_elementor_edit_mode','builder'),(6144,3899,'_elementor_template_type','section'),(6145,3899,'inline_featured_image','0'),(6146,3899,'_elementor_version','2.9.9'),(6147,3899,'_elementor_pro_version','2.10.3'),(6148,3900,'_elementor_edit_mode','builder'),(6149,3900,'_elementor_template_type','section'),(6150,3900,'_elementor_version','2.9.9'),(6151,3900,'_elementor_pro_version','2.10.3'),(6152,3899,'_wp_page_template','default'),(6153,3899,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6154,3899,'_elementor_data','[{\"id\":\"57e9174c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"2931cc26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5b7e32e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(6155,3901,'_elementor_edit_mode','builder'),(6156,3901,'_elementor_template_type','section'),(6157,3901,'_elementor_version','2.9.9'),(6158,3901,'_elementor_pro_version','2.10.3'),(6159,3901,'_wp_page_template','default'),(6160,3901,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6161,3901,'_elementor_data','[{\"id\":\"57e9174c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"2931cc26\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"5b7e32e0\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]'),(6162,3899,'_elementor_controls_usage','a:3:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;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:1;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:6:{s:15:\"stretch_section\";i:1;s:3:\"gap\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:26:\"background_position_mobile\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:38:\"background_motion_fx_translateY_effect\";i:1;s:19:\"background_position\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}}'),(6163,3902,'_elementor_edit_mode','builder'),(6164,3902,'_elementor_template_type','wp-page'),(6165,3902,'_elementor_version','2.9.9'),(6166,3902,'_elementor_pro_version','2.10.3'),(6167,3902,'_wp_page_template','default'),(6168,3902,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5879,581,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6169,3902,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6170,3902,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;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:6;s:5:\"align\";i:4;s:11:\"header_size\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:6;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:4;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:5;s:8:\"_padding\";i:2;s:14:\"_margin_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:11;s:21:\"space_between_widgets\";i:7;s:19:\"_inline_size_tablet\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:5;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:15:\"stretch_section\";i:6;s:3:\"gap\";i:5;s:6:\"height\";i:2;s:13:\"custom_height\";i:4;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:15:\"column_position\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:2;s:26:\"background_position_mobile\";i:1;s:15:\"background_size\";i:2;s:40:\"background_motion_fx_motion_fx_scrolling\";i:2;s:38:\"background_motion_fx_translateY_effect\";i:2;s:19:\"background_position\";i:2;s:16:\"background_color\";i:4;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:6;s:6:\"margin\";i:6;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:4;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:10:\"text_color\";i:3;s:12:\"align_mobile\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:5:{s:10:\"email_to_2\";i:1;s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;s:16:\"email_reply_to_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:4:{s:22:\"field_background_color\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;s:11:\"field_align\";i:1;}s:20:\"section_button_style\";a:5:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:19:\"hover_primary_color\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:1;s:27:\"content_content_color_hover\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;s:26:\"name_typography_typography\";i:1;}}}}}'),(6171,3902,'_elementor_css','a:5:{s:4:\"time\";i:1624422527;s:5:\"fonts\";a:0:{}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:\"\";}'),(6175,3903,'_wp_page_template','default'),(6176,3903,'_elementor_edit_mode','builder'),(6177,3898,'_edit_lock','1624429273:8'),(6178,3898,'stm_post_views','22'),(6179,3898,'stm_day_23','10'),(6180,3898,'stm_month_06','14'),(6182,3898,'_elementor_template_type','wp-page'),(6183,3898,'_elementor_version','2.9.9'),(6184,3898,'_elementor_pro_version','2.10.3'),(6029,3884,'_elementor_edit_mode','builder'),(6030,3884,'_elementor_template_type','section'),(6031,3884,'inline_featured_image','0'),(6032,3884,'_elementor_version','2.9.9'),(6033,3884,'_elementor_pro_version','2.10.3'),(6034,3885,'_elementor_edit_mode','builder'),(6035,3885,'_elementor_template_type','section'),(6036,3885,'_elementor_version','2.9.9'),(6037,3885,'_elementor_pro_version','2.10.3'),(6038,3884,'_wp_page_template','default'),(6039,3884,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6040,3884,'_elementor_data','[{\"id\":\"2b1553c8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_slideshow_gallery\":[{\"id\":2724,\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bc25578\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.071999999999999175770426518283784389495849609375},\"elements\":[],\"isInner\":false},{\"id\":\"6c8e3e3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.52000000000000312638803734444081783294677734375,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dac746\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1345bdb7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23f5d923\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact form\"},\"elements\":[],\"widgetType\":\"rentex-contactform\"}],\"isInner\":false},{\"id\":\"8f81c54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.071999999999999175770426518283784389495849609375},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6041,3886,'_elementor_edit_mode','builder'),(6042,3886,'_elementor_template_type','section'),(6043,3886,'_elementor_version','2.9.9'),(6044,3886,'_elementor_pro_version','2.10.3'),(6045,3886,'_wp_page_template','default'),(6046,3886,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6047,3886,'_elementor_data','[{\"id\":\"2b1553c8\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_slideshow_gallery\":[{\"id\":2724,\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\"}],\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"3bc25578\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.071999999999999175770426518283784389495849609375},\"elements\":[],\"isInner\":false},{\"id\":\"6c8e3e3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.52000000000000312638803734444081783294677734375,\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false}},\"elements\":[{\"id\":\"58dac746\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1345bdb7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23f5d923\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"Contact form\"},\"elements\":[],\"widgetType\":\"rentex-contactform\"}],\"isInner\":false},{\"id\":\"8f81c54\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.071999999999999175770426518283784389495849609375},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6048,3884,'_elementor_controls_usage','a:5:{s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:18:\"rentex-contactform\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:38:\"background_motion_fx_translateY_effect\";i:1;s:28:\"background_slideshow_gallery\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(6049,3887,'_elementor_edit_mode','builder'),(6050,3887,'_elementor_template_type','section'),(6051,3887,'inline_featured_image','0'),(6052,3887,'_elementor_version','2.9.9'),(6053,3887,'_elementor_pro_version','2.10.3'),(6054,3888,'_elementor_edit_mode','builder'),(6055,3888,'_elementor_template_type','section'),(6056,3888,'_elementor_version','2.9.9'),(6057,3888,'_elementor_pro_version','2.10.3'),(6058,3887,'_wp_page_template','default'),(6059,3887,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6060,3887,'_elementor_data','[{\"id\":\"3ac84ecb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"61163205\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"5f887bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"3de96b25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1dd722\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5a712a89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"561d6a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6061,3889,'_elementor_edit_mode','builder'),(6062,3889,'_elementor_template_type','section'),(6063,3889,'_elementor_version','2.9.9'),(6064,3889,'_elementor_pro_version','2.10.3'),(6065,3889,'_wp_page_template','default'),(6066,3889,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6067,3889,'_elementor_data','[{\"id\":\"3ac84ecb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"61163205\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"5f887bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"3de96b25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a1dd722\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5a712a89\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"561d6a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(6009,3881,'_elementor_edit_mode','builder'),(6010,3881,'_elementor_template_type','section'),(6011,3881,'inline_featured_image','0'),(6012,3881,'_elementor_version','2.9.9'),(6013,3881,'_elementor_pro_version','2.10.3'),(6014,3882,'_elementor_edit_mode','builder'),(6015,3882,'_elementor_template_type','section'),(6016,3882,'_elementor_version','2.9.9'),(6017,3882,'_elementor_pro_version','2.10.3'),(6018,3881,'_wp_page_template','default'),(6019,3881,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6020,3881,'_elementor_data','[{\"id\":\"2428a0b5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5ae6d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e9c2c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2476b8ce\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6021,3883,'_elementor_edit_mode','builder'),(6022,3883,'_elementor_template_type','section'),(6023,3883,'_elementor_version','2.9.9'),(6024,3883,'_elementor_pro_version','2.10.3'),(6025,3883,'_wp_page_template','default'),(6026,3883,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6027,3883,'_elementor_data','[{\"id\":\"2428a0b5\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"37ee38f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a5ae6d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77e9c2c7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2476b8ce\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6028,3881,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;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:1;s:12:\"align_mobile\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_line_height\";i:1;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:19:\"hover_primary_color\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:1;s:27:\"content_content_color_hover\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;s:26:\"name_typography_typography\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:1;s:21:\"space_between_widgets\";i:1;s:19:\"_inline_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:1;s:3:\"gap\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}}'),(5908,3866,'_elementor_edit_mode','builder'),(5909,3866,'_elementor_template_type','section'),(5910,3866,'inline_featured_image','0'),(5911,3866,'_elementor_version','2.9.9'),(5912,3866,'_elementor_pro_version','2.10.3'),(5913,3867,'_elementor_edit_mode','builder'),(5914,3867,'_elementor_template_type','section'),(5915,3867,'_elementor_version','2.9.9'),(5916,3867,'_elementor_pro_version','2.10.3'),(5917,3866,'_wp_page_template','default'),(5918,3866,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5919,3866,'_elementor_data','[{\"id\":\"5f2886d7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3454f82a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"171a6c00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d92e31d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c1caffe\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5920,3868,'_elementor_edit_mode','builder'),(5921,3868,'_elementor_template_type','section'),(5922,3868,'_elementor_version','2.9.9'),(5923,3868,'_elementor_pro_version','2.10.3'),(5924,3868,'_wp_page_template','default'),(5925,3868,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(5926,3868,'_elementor_data','[{\"id\":\"5f2886d7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3454f82a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"171a6c00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d92e31d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"2c1caffe\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(5927,3866,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;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:1;s:12:\"align_mobile\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_line_height\";i:1;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:19:\"hover_primary_color\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:1;s:27:\"content_content_color_hover\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;s:26:\"name_typography_typography\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:1;s:21:\"space_between_widgets\";i:1;s:19:\"_inline_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:1;s:3:\"gap\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;}}}}}'),(6068,3887,'_elementor_controls_usage','a:5:{s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:14:\"padding_tablet\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:4:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:11:\"title_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:5:{s:10:\"email_to_2\";i:1;s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;s:16:\"email_reply_to_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:4:{s:22:\"field_background_color\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;s:11:\"field_align\";i:1;}s:20:\"section_button_style\";a:5:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:15:\"stretch_section\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:38:\"background_motion_fx_translateY_effect\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";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:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:5:{s:6:\"margin\";i:1;s:13:\"margin_tablet\";i:1;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(6075,3890,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6076,3890,'_elementor_css','a:5:{s:4:\"time\";i:1624420851;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6172,3898,'_edit_last','8'),(6173,3898,'_wp_page_template','default'),(6174,3898,'_elementor_edit_mode','builder'),(6080,2643,'_edit_last','8'),(6081,2643,'_wp_page_template','default'),(6082,3891,'_elementor_edit_mode','builder'),(6083,3891,'_elementor_template_type','wp-page'),(6084,3891,'_elementor_version','2.9.9'),(6085,3891,'_elementor_pro_version','2.10.3'),(6086,3891,'_elementor_css','a:6:{s:4:\"time\";i:1624411868;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:\"\";}'),(6087,3891,'_wp_page_template','default'),(6077,581,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;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:6;s:5:\"align\";i:4;s:11:\"header_size\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:6;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:4;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:5;s:8:\"_padding\";i:2;s:14:\"_margin_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:11;s:21:\"space_between_widgets\";i:7;s:19:\"_inline_size_tablet\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:5;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:15:\"stretch_section\";i:6;s:3:\"gap\";i:5;s:6:\"height\";i:2;s:13:\"custom_height\";i:4;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:15:\"column_position\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:2;s:26:\"background_position_mobile\";i:1;s:15:\"background_size\";i:2;s:40:\"background_motion_fx_motion_fx_scrolling\";i:2;s:38:\"background_motion_fx_translateY_effect\";i:2;s:19:\"background_position\";i:2;s:16:\"background_color\";i:4;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:6;s:6:\"margin\";i:6;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:4;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:10:\"text_color\";i:3;s:12:\"align_mobile\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:5:{s:10:\"email_to_2\";i:1;s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;s:16:\"email_reply_to_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:4:{s:22:\"field_background_color\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;s:11:\"field_align\";i:1;}s:20:\"section_button_style\";a:5:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:19:\"hover_primary_color\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:1;s:27:\"content_content_color_hover\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;s:26:\"name_typography_typography\";i:1;}}}}}'),(6200,3898,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6201,3898,'_elementor_data','[{\"id\":\"2fe3601d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"2ee44629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"54991d5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d30eac9\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"70\",\"bottom\":\"50\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[{\"id\":\"820b254\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.98799999999999954525264911353588104248046875,\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"13e6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Information\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a4a20d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"0e89b9c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"_id\":\"23578bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"f3565fd\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_color\":\"#F5A44A\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#B4B4B4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10d517c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/om.png\",\"id\":3940}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b011c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.01200000000000045474735088646411895751953125},\"elements\":[{\"id\":\"4ae94cd\",\"elType\":\"widget\",\"settings\":{\"cf_id\":\"6\",\"form_name\":\"Contact form\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F5F3F3\"},\"elements\":[],\"widgetType\":\"rentex-contactform\"}],\"isInner\":false}],\"isInner\":false}]'),(6198,3905,'_elementor_css','a:5:{s:4:\"time\";i:1624428898;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6219,3908,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#E1A563\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0b7d7eb\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6202,3906,'_wp_page_template','default'),(6203,3906,'_elementor_edit_mode','builder'),(6204,3906,'_elementor_template_type','wp-page'),(6205,3906,'_elementor_version','2.9.9'),(6206,3906,'_elementor_pro_version','2.10.3'),(6207,3906,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6208,3906,'_elementor_data','[{\"id\":\"2fe3601d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"2ee44629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"54991d5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d30eac9\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"70\",\"bottom\":\"30\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[{\"id\":\"820b254\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.98799999999999954525264911353588104248046875,\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"13e6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Information\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a4a20d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"0e89b9c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"_id\":\"23578bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"f3565fd\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_color\":\"#F5A44A\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#B4B4B4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"7b011c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.01200000000000045474735088646411895751953125},\"elements\":[{\"id\":\"4ae94cd\",\"elType\":\"widget\",\"settings\":{\"cf_id\":\"6\",\"form_name\":\"Contact form\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F5F3F3\"},\"elements\":[],\"widgetType\":\"rentex-contactform\"}],\"isInner\":false}],\"isInner\":false}]'),(6591,3951,'_wp_page_template','default'),(6592,3951,'_elementor_edit_mode','builder'),(6593,3951,'_elementor_template_type','wp-page'),(6594,3951,'_elementor_version','2.9.9'),(6595,3951,'_elementor_pro_version','2.10.3'),(6596,3951,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6597,3951,'_elementor_data','[{\"id\":\"2fe3601d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"2ee44629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"54991d5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d30eac9\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"70\",\"bottom\":\"50\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[{\"id\":\"820b254\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.98799999999999954525264911353588104248046875,\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"13e6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Information\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a4a20d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"0e89b9c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"_id\":\"23578bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"f3565fd\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_color\":\"#F5A44A\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#B4B4B4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"7b011c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.01200000000000045474735088646411895751953125},\"elements\":[{\"id\":\"4ae94cd\",\"elType\":\"widget\",\"settings\":{\"cf_id\":\"6\",\"form_name\":\"Contact form\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F5F3F3\"},\"elements\":[],\"widgetType\":\"rentex-contactform\"}],\"isInner\":false}],\"isInner\":false}]'),(7052,2781,'stm_day_25','1'),(7051,3898,'stm_day_25','1'),(6220,3908,'_elementor_css','a:5:{s:4:\"time\";i:1624430379;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6233,3910,'_elementor_edit_mode','builder'),(6234,3910,'_elementor_template_type','page'),(6235,3910,'_elementor_version','2.9.9'),(6236,3910,'_elementor_pro_version','2.10.3'),(6237,3910,'_wp_page_template','default'),(6238,3910,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#E1A563\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0b7d7eb\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6224,3909,'_elementor_edit_mode','builder'),(6225,3909,'_elementor_template_type','page'),(6226,3909,'_elementor_version','2.9.9'),(6227,3909,'_elementor_pro_version','2.10.3'),(6228,3909,'_wp_page_template','default'),(6229,3909,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#E1A563\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0b7d7eb\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"},{\"id\":\"d144cc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"https:\\/\\/om7717.dev34.info\\/\\\">Home<\\/a><\\/p><p><a href=\\\"https:\\/\\/om7717.dev34.info\\/properties\\/\\\">Property Search<\\/a><\\/p><p><a href=\\\"https:\\/\\/om7717.dev34.info\\/about-us\\/\\\">About Us<\\/a><\\/p><p><a href=\\\"https:\\/\\/om7717.dev34.info\\/#\\\">List Your Home<\\/a><\\/p><p><a href=\\\"https:\\/\\/om7717.dev34.info\\/#\\\">Beverly Hills Info<\\/a><\\/p><p>Contact Us<\\/p><p>Rental Agreement<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6223,581,'_elementor_css','a:5:{s:4:\"time\";i:1624430837;s:5:\"fonts\";a:0:{}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:\"\";}'),(6230,3909,'_elementor_css','a:5:{s:4:\"time\";i:1624430568;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6239,3910,'_elementor_css','a:5:{s:4:\"time\";i:1624430879;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6286,3912,'_elementor_edit_mode','builder'),(6287,3912,'_elementor_template_type','page'),(6288,3912,'_elementor_version','2.9.9'),(6278,3911,'_elementor_edit_mode','builder'),(6279,3911,'_elementor_template_type','page'),(6280,3911,'_elementor_version','2.9.9'),(6281,3911,'_elementor_pro_version','2.10.3'),(6282,3911,'_wp_page_template','default'),(6283,3911,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#E1A563\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0b7d7eb\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"nav_menu\":\"52\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"wp-widget-nav_menu\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"text_color\":\"#CFC355\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6271,3336,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A1110-2-1-615x431.jpg\",615,431,true]}'),(6251,3741,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/14-4-615x450.jpg\",615,450,true]}'),(6272,3337,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/23-2-615x450.jpg\",615,450,true]}'),(6273,3338,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0001-615x450.jpg\",615,450,true]}'),(6274,3339,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/E70CB066-84F5-4B88-AD9A-754D6EBC8C07-615x450.jpg\",615,450,true]}'),(6275,3340,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-p-web-37-615x450.jpg\",615,450,true]}'),(6276,3341,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/1-3-615x450.jpg\",615,450,true]}'),(6277,3297,'stm_day_23','1'),(6284,3911,'_elementor_css','a:5:{s:4:\"time\";i:1624430929;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6289,3912,'_elementor_pro_version','2.10.3'),(6290,3912,'_wp_page_template','default'),(6291,3912,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#E1A563\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#CFC355\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6293,3913,'_elementor_edit_mode','builder'),(6294,3913,'_elementor_template_type','page'),(6295,3913,'_elementor_version','2.9.9'),(6296,3913,'_elementor_pro_version','2.10.3'),(6297,3913,'_wp_page_template','default'),(6298,3913,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#E1A563\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6301,3914,'_elementor_edit_mode','builder'),(6302,3914,'_elementor_template_type','page'),(6303,3914,'_elementor_version','2.9.9'),(6304,3914,'_elementor_pro_version','2.10.3'),(6305,3914,'_wp_page_template','default'),(6306,3914,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#E1A563\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6307,3914,'_elementor_css','a:5:{s:4:\"time\";i:1624473718;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6309,3915,'_elementor_edit_mode','builder'),(6310,3915,'_elementor_template_type','page'),(6311,3915,'_elementor_version','2.9.9'),(6312,3915,'_elementor_pro_version','2.10.3'),(6313,3915,'_wp_page_template','default'),(6314,3915,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#C9AA65\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6619,3954,'_elementor_edit_mode','builder'),(6620,3954,'_elementor_template_type','page'),(6621,3954,'_elementor_version','2.9.9'),(6622,3954,'_elementor_pro_version','2.10.3'),(6623,3954,'_wp_page_template','default'),(6624,3954,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/list-your-property\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#C9AA65\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"21e8e1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Access | Terms | Privacy<\\/p>\",\"align\":\"right\",\"align_mobile\":\"center\",\"text_color\":\"#B4B4B4\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6317,3916,'inline_featured_image','0'),(6318,3916,'inline_featured_image','0'),(6319,3916,'inline_featured_image','0'),(6320,3916,'slide_template','default'),(6321,3916,'rs_page_bg_color','#ffffff'),(6322,3916,'_elementor_edit_mode','builder'),(6323,3916,'_elementor_template_type','wp-page'),(6324,3916,'_elementor_version','2.9.9'),(6325,3916,'_elementor_pro_version','2.10.3'),(6326,3916,'stm_post_views','178'),(6327,3916,'stm_day_2','28'),(6328,3916,'stm_month_06','111'),(6329,3916,'_wp_page_template','default'),(6330,3916,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/06\\/30-1-scaled.jpg\",\"id\":3555},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#D2C304\",\"align\":\"center\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae28084\",\"elType\":\"widget\",\"settings\":{\"title\":\"With Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75f2a3a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211736046833152\\\"><\\/script>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6451,3927,'_elementor_edit_mode','builder'),(6452,3927,'_elementor_template_type','wp-page'),(6453,3927,'_elementor_version','2.9.9'),(6454,3927,'_elementor_pro_version','2.10.3'),(6455,3927,'_wp_page_template','default'),(6456,3927,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#D2C304\",\"align\":\"center\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae28084\",\"elType\":\"widget\",\"settings\":{\"title\":\"With Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75f2a3a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211736046833152\\\"><\\/script>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6331,3916,'_oembed_f551c374233ebbf8065a235e8708d379','<iframe title=\"Video Placeholder\" width=\"980\" height=\"551\" src=\"https://www.youtube.com/embed/XHOmBV4js_E?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(6332,3916,'_oembed_time_f551c374233ebbf8065a235e8708d379','1591064352'),(6333,3916,'stm_day_3','8'),(6334,3916,'stm_day_4','2'),(6335,3916,'stm_day_6','2'),(6336,3916,'stm_day_8','13'),(6337,3916,'stm_day_12','1'),(6338,3916,'stm_day_18','1'),(6339,3916,'stm_day_22','1'),(6340,3916,'stm_day_24','8'),(6341,3916,'stm_day_25','2'),(6342,3916,'stm_day_30','15'),(6343,3916,'stm_day_1','7'),(6344,3916,'stm_month_07','65'),(6345,3916,'stm_day_7','20'),(6346,3916,'stm_day_9','2'),(6347,3916,'stm_day_13','3'),(6348,3916,'stm_day_14','9'),(6349,3916,'stm_day_17','10'),(6350,3916,'stm_day_20','7'),(6351,3916,'stm_day_21','1'),(6352,3916,'stm_day_27','1'),(6353,3916,'stm_day_29','1'),(6354,3916,'stm_day_5','1'),(6355,3916,'stm_month_08','1'),(6356,3916,'_wxr_import_user_slug','admin'),(6357,3916,'stm_month_05','1'),(6358,3916,'stm_day_15','1'),(6359,3916,'stm_day_23','34'),(6360,3916,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6369,3917,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6370,3917,'_elementor_css','a:5:{s:4:\"time\";i:1624426849;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6374,3918,'_elementor_edit_mode','builder'),(6375,3918,'_elementor_template_type','wp-page'),(6376,3918,'_elementor_version','2.9.9'),(6377,3918,'_elementor_pro_version','2.10.3');
INSERT INTO `wpew_postmeta` VALUES (6378,3918,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6379,3918,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6381,3919,'_wp_page_template','elementor_header_footer'),(6382,3919,'_elementor_edit_mode','builder'),(6383,3919,'_elementor_template_type','wp-page'),(6384,3919,'_elementor_version','2.9.9'),(6385,3919,'_elementor_pro_version','2.10.3'),(6386,3919,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6387,3919,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6390,3920,'_wp_page_template','elementor_header_footer'),(6391,3920,'_elementor_edit_mode','builder'),(6392,3920,'_elementor_template_type','wp-page'),(6393,3920,'_elementor_version','2.9.9'),(6394,3920,'_elementor_pro_version','2.10.3'),(6395,3920,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6389,3343,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/23-2-615x450.jpg\",615,450,true]}'),(6396,3920,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6414,3923,'_wp_page_template','elementor_header_footer'),(6415,3923,'_elementor_edit_mode','builder'),(6416,3923,'_elementor_template_type','wp-page'),(6417,3923,'_elementor_version','2.9.9'),(6418,3923,'_elementor_pro_version','2.10.3'),(6419,3923,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6412,3922,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6406,3922,'_wp_page_template','elementor_header_footer'),(6407,3922,'_elementor_edit_mode','builder'),(6408,3922,'_elementor_template_type','wp-page'),(6409,3922,'_elementor_version','2.9.9'),(6410,3922,'_elementor_pro_version','2.10.3'),(6411,3922,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"3\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6420,3923,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6422,3924,'_wp_page_template','elementor_header_footer'),(6423,3924,'_elementor_edit_mode','builder'),(6424,3924,'_elementor_template_type','wp-page'),(6425,3924,'_elementor_version','2.9.9'),(6426,3924,'_elementor_pro_version','2.10.3'),(6427,3924,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6428,3924,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6430,3925,'_wp_page_template','elementor_header_footer'),(6431,3925,'_elementor_edit_mode','builder'),(6432,3925,'_elementor_template_type','wp-page'),(6433,3925,'_elementor_version','2.9.9'),(6434,3925,'_elementor_pro_version','2.10.3'),(6435,3925,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"4\",\"listing_posts_item_columns\":\"2\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6436,3925,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6497,3933,'_wp_page_template','elementor_header_footer'),(6498,3933,'_elementor_edit_mode','builder'),(6499,3933,'_elementor_template_type','wp-page'),(6500,3933,'_elementor_version','2.9.9'),(6501,3933,'_elementor_pro_version','2.10.3'),(6502,3933,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6539,3943,'_wp_attached_file','2020/06/Screen-Shot-2021-06-23-at-12.49.07-PM-1.png'),(6540,3943,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1762;s:6:\"height\";i:1146;s:4:\"file\";s:51:\"2020/06/Screen-Shot-2021-06-23-at-12.49.07-PM-1.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-1024x666.png\";s:5:\"width\";i:1024;s:6:\"height\";i:666;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-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:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-768x500.png\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-1536x999.png\";s:5:\"width\";i:1536;s:6:\"height\";i:999;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:52:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-1000x565.png\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-615x360.png\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-615x450.png\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-960x450.png\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-692x450.png\";s:5:\"width\";i:692;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-850x600.png\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:43:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1.png\";s:5:\"width\";i:1762;s:6:\"height\";i:1146;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:{}}}'),(6439,3263,'stm_day_23','1'),(6440,3916,'_edit_lock','1624476281:1'),(6441,3916,'_edit_last','1'),(6442,3926,'_elementor_edit_mode','builder'),(6443,3926,'_elementor_template_type','wp-page'),(6444,3926,'_elementor_version','2.9.9'),(6445,3926,'_elementor_pro_version','2.10.3'),(6446,3926,'_wp_page_template','default'),(6447,3926,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"353e328\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.31000000000000227373675443232059478759765625,\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"bbe4104\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/sunset-3128170_1920.jpg\",\"id\":2654},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-1,\"unit\":\"px\"},\"_offset_y\":{\"size\":0,\"unit\":\"px\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.68999999999999772626324556767940521240234375,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"a9eb1e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"More About\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"011352a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.<\\/span><\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6448,3926,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6449,3926,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;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:6;s:5:\"align\";i:4;s:11:\"header_size\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:6;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:3;s:25:\"typography_text_transform\";i:1;s:22:\"typography_line_height\";i:4;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:5;s:8:\"_padding\";i:2;s:14:\"_margin_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:11;s:21:\"space_between_widgets\";i:7;s:19:\"_inline_size_tablet\";i:3;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:5;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:15:\"stretch_section\";i:6;s:3:\"gap\";i:5;s:6:\"height\";i:2;s:13:\"custom_height\";i:4;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:15:\"column_position\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:2;s:26:\"background_position_mobile\";i:1;s:15:\"background_size\";i:2;s:40:\"background_motion_fx_motion_fx_scrolling\";i:2;s:38:\"background_motion_fx_translateY_effect\";i:2;s:19:\"background_position\";i:2;s:16:\"background_color\";i:4;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:6;s:6:\"margin\";i:6;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:4;s:14:\"padding_tablet\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:10:\"text_color\";i:3;s:12:\"align_mobile\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:5:{s:10:\"email_to_2\";i:1;s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;s:16:\"email_reply_to_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:4:{s:22:\"field_background_color\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;s:11:\"field_align\";i:1;}s:20:\"section_button_style\";a:5:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:19:\"hover_primary_color\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:1;s:27:\"content_content_color_hover\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;s:26:\"name_typography_typography\";i:1;}}}}}'),(6450,3926,'_elementor_css','a:5:{s:4:\"time\";i:1624430837;s:5:\"fonts\";a:0:{}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:\"\";}'),(6457,3927,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6458,3927,'_elementor_css','a:5:{s:4:\"time\";i:1624430837;s:5:\"fonts\";a:0:{}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:\"\";}'),(6460,3928,'_elementor_edit_mode','builder'),(6461,3928,'_elementor_template_type','wp-page'),(6462,3928,'_elementor_version','2.9.9'),(6463,3928,'_elementor_pro_version','2.10.3'),(6464,3928,'_wp_page_template','default'),(6465,3928,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#D2C304\",\"align\":\"center\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae28084\",\"elType\":\"widget\",\"settings\":{\"title\":\"With Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75f2a3a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211736046833152\\\"><\\/script>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6466,3928,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6485,3931,'_elementor_edit_mode','builder'),(6486,3931,'_elementor_template_type','wp-page'),(6487,3931,'_elementor_version','2.9.9'),(6488,3931,'_elementor_pro_version','2.10.3'),(6489,3931,'_wp_page_template','default'),(6482,3930,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6490,3931,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/06\\/30-1-scaled.jpg\",\"id\":3555},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#D2C304\",\"align\":\"center\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae28084\",\"elType\":\"widget\",\"settings\":{\"title\":\"With Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75f2a3a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211736046833152\\\"><\\/script>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6476,3930,'_elementor_edit_mode','builder'),(6477,3930,'_elementor_template_type','wp-page'),(6478,3930,'_elementor_version','2.9.9'),(6479,3930,'_elementor_pro_version','2.10.3'),(6480,3930,'_wp_page_template','default'),(6481,3930,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/06\\/30-1-scaled.jpg\",\"id\":3555},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#D2C304\",\"align\":\"center\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae28084\",\"elType\":\"widget\",\"settings\":{\"title\":\"With Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75f2a3a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211736046833152\\\"><\\/script>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6491,3931,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6492,3931,'_elementor_css','a:5:{s:4:\"time\";i:1624476822;s:5:\"fonts\";a:0:{}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:\"\";}'),(6608,3953,'_elementor_edit_mode','builder'),(6609,3953,'_elementor_template_type','wp-page'),(6610,3953,'_elementor_version','2.9.9'),(6611,3953,'_elementor_pro_version','2.10.3'),(6612,3953,'_wp_page_template','default'),(6613,3953,'_elementor_data','[{\"id\":\"975a311\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/06\\/30-1-scaled.jpg\",\"id\":3555},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"ddbc7f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"38d3439\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ab19b87\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2fa7e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"z_index\":2,\"_inline_size_tablet\":70,\"align_mobile\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"03b0f50\",\"elType\":\"widget\",\"settings\":{\"title\":\"List Your Property\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#D2C304\",\"align\":\"center\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ae28084\",\"elType\":\"widget\",\"settings\":{\"title\":\"With Opulence Management\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5447dbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75f2a3a\",\"elType\":\"widget\",\"settings\":{\"html\":\"<script type=\\\"text\\/javascript\\\" src=\\\"https:\\/\\/form.jotform.com\\/jsform\\/211736046833152\\\"><\\/script>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a1174b3\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d248b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4bb04f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4dfdd1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"custom_height\":{\"unit\":\"px\",\"size\":121,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52d5277\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5f9a483\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"af1876d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"424ce5e\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b10026\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"557411d\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6070c247\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0001-scaled.jpg\",\"id\":2724},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"c302bfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"4337c966\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"38d00cf6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54bf011f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1eb94463\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"54053e46\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"655bcec7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"76d8ee77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":62,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"160649df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f9dc47\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"8927a6\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6616,3916,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:6;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:6;s:5:\"align\";i:6;s:12:\"align_mobile\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:6;s:21:\"typography_typography\";i:6;s:20:\"typography_font_size\";i:6;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:4;s:22:\"typography_line_height\";i:4;s:22:\"typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:5;s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:1;}s:17:\"_section_position\";a:1:{s:21:\"_element_custom_width\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:10;s:21:\"space_between_widgets\";i:6;s:19:\"_inline_size_tablet\";i:2;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:3:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:4;s:14:\"padding_tablet\";i:5;s:7:\"z_index\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:15:\"stretch_section\";i:6;s:3:\"gap\";i:5;s:6:\"height\";i:2;s:13:\"custom_height\";i:4;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:15:\"column_position\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:2;s:26:\"background_position_mobile\";i:1;s:15:\"background_size\";i:2;s:40:\"background_motion_fx_motion_fx_scrolling\";i:2;s:38:\"background_motion_fx_translateY_effect\";i:2;s:19:\"background_position\";i:2;s:16:\"background_color\";i:4;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:6;s:6:\"margin\";i:6;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:1;s:14:\"padding_mobile\";i:4;s:14:\"padding_tablet\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{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:1;s:20:\"typography_font_size\";i:1;s:10:\"text_color\";i:2;s:12:\"align_mobile\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:14:\"_margin_mobile\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:5:{s:10:\"email_to_2\";i:1;s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;s:16:\"email_reply_to_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:4:{s:22:\"field_background_color\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;s:11:\"field_align\";i:1;}s:20:\"section_button_style\";a:5:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:19:\"hover_primary_color\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:1;s:27:\"content_content_color_hover\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;s:26:\"name_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}'),(6503,3933,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6504,3933,'_elementor_css','a:5:{s:4:\"time\";i:1624475241;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6541,3944,'_wp_attached_file','2020/06/Screen-Shot-2021-06-23-at-1.08.45-PM-1.png'),(6542,3944,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1538;s:6:\"height\";i:1122;s:4:\"file\";s:50:\"2020/06/Screen-Shot-2021-06-23-at-1.08.45-PM-1.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-1024x747.png\";s:5:\"width\";i:1024;s:6:\"height\";i:747;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-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:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-768x560.png\";s:5:\"width\";i:768;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-1536x1121.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1121;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-1000x565.png\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-615x360.png\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-615x450.png\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-960x450.png\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-617x450.png\";s:5:\"width\";i:617;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-850x600.png\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:42:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1.png\";s:5:\"width\";i:1538;s:6:\"height\";i:1122;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:{}}}'),(6543,3945,'_wp_attached_file','2020/06/hurrican.jpg'),(6544,3945,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:643;s:4:\"file\";s:20:\"2020/06/hurrican.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"hurrican-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"hurrican-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:20:\"hurrican-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"hurrican-960x565.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"hurrican-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"hurrican-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"hurrican-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"hurrican-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"hurrican-672x450.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"hurrican-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"hurrican-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"hurrican-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"hurrican.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:643;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:{}}}'),(6508,3934,'_wp_attached_file','2020/06/Screen-Shot-2021-06-23-at-12.49.07-PM.png'),(6509,3934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1762;s:6:\"height\";i:1146;s:4:\"file\";s:49:\"2020/06/Screen-Shot-2021-06-23-at-12.49.07-PM.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1024x666.png\";s:5:\"width\";i:1024;s:6:\"height\";i:666;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-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:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-768x500.png\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1536x999.png\";s:5:\"width\";i:1536;s:6:\"height\";i:999;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-12.49.07-PM-1000x565.png\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2021-06-23-at-12.49.07-PM-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-615x360.png\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-615x450.png\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-960x450.png\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-692x450.png\";s:5:\"width\";i:692;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-850x600.png\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-12.49.07-PM-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:41:\"Screen-Shot-2021-06-23-at-12.49.07-PM.png\";s:5:\"width\";i:1762;s:6:\"height\";i:1146;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:{}}}'),(6510,3935,'_wp_attached_file','2020/06/Screen-Shot-2021-06-23-at-1.01.05-PM.png'),(6511,3935,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1640;s:6:\"height\";i:1104;s:4:\"file\";s:48:\"2020/06/Screen-Shot-2021-06-23-at-1.01.05-PM.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-1.01.05-PM-1024x689.png\";s:5:\"width\";i:1024;s:6:\"height\";i:689;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-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:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-768x517.png\";s:5:\"width\";i:768;s:6:\"height\";i:517;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.01.05-PM-1536x1034.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1034;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-1.01.05-PM-1000x565.png\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2021-06-23-at-1.01.05-PM-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-615x360.png\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-615x450.png\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-960x450.png\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-668x450.png\";s:5:\"width\";i:668;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-850x600.png\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.01.05-PM-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:40:\"Screen-Shot-2021-06-23-at-1.01.05-PM.png\";s:5:\"width\";i:1640;s:6:\"height\";i:1104;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:{}}}'),(6512,3936,'_wp_attached_file','2020/06/Screen-Shot-2021-06-23-at-1.08.45-PM.png'),(6513,3936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1538;s:6:\"height\";i:1122;s:4:\"file\";s:48:\"2020/06/Screen-Shot-2021-06-23-at-1.08.45-PM.png\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1024x747.png\";s:5:\"width\";i:1024;s:6:\"height\";i:747;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-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:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-768x560.png\";s:5:\"width\";i:768;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1536x1121.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1121;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-06-23-at-1.08.45-PM-1000x565.png\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2021-06-23-at-1.08.45-PM-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-615x360.png\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-615x450.png\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-960x450.png\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-617x450.png\";s:5:\"width\";i:617;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-850x600.png\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-06-23-at-1.08.45-PM-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:40:\"Screen-Shot-2021-06-23-at-1.08.45-PM.png\";s:5:\"width\";i:1538;s:6:\"height\";i:1122;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:{}}}'),(6514,3937,'_wp_attached_file','2020/06/vip-nightlife.jpeg'),(6515,3937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:413;s:4:\"file\";s:26:\"2020/06/vip-nightlife.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"vip-nightlife-300x207.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"vip-nightlife-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:24:\"vip-nightlife-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:26:\"vip-nightlife-600x360.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:26:\"vip-nightlife-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:26:\"vip-nightlife-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:18:\"vip-nightlife.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:413;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:{}}}'),(6516,3938,'_wp_attached_file','2020/06/luxury-shopping.jpeg'),(6517,3938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:391;s:4:\"file\";s:28:\"2020/06/luxury-shopping.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"luxury-shopping-300x192.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"luxury-shopping-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:26:\"luxury-shopping-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:28:\"luxury-shopping-612x360.jpeg\";s:5:\"width\";i:612;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:28:\"luxury-shopping-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:28:\"luxury-shopping-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:20:\"luxury-shopping.jpeg\";s:5:\"width\";i:612;s:6:\"height\";i:391;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Getty Images\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:66:\"Shot of a gorgeous and elegant young woman out on a shopping spree\";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:66:\"Shot of a gorgeous and elegant young woman out on a shopping spree\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6518,3939,'_wp_attached_file','2020/06/escalade.jpeg'),(6519,3939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:698;s:4:\"file\";s:21:\"2020/06/escalade.jpeg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"escalade-300x209.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"escalade-150x150.jpeg\";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:21:\"escalade-768x536.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"escalade-1000x565.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:19:\"escalade-80x80.jpeg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:21:\"escalade-615x360.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:21:\"escalade-615x450.jpeg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:21:\"escalade-960x450.jpeg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:21:\"escalade-645x450.jpeg\";s:5:\"width\";i:645;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:21:\"escalade-850x600.jpeg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:21:\"escalade-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:21:\"escalade-290x180.jpeg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:13:\"escalade.jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:698;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:{}}}'),(6520,3940,'_wp_attached_file','2020/06/om.png'),(6521,3940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:663;s:6:\"height\";i:555;s:4:\"file\";s:14:\"2020/06/om.png\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"om-300x251.png\";s:5:\"width\";i:300;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"om-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:12:\"om-80x80.png\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:14:\"om-615x360.png\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:14:\"om-615x450.png\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:14:\"om-663x450.png\";s:5:\"width\";i:663;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:14:\"om-538x450.png\";s:5:\"width\";i:538;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:14:\"om-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:14:\"om-290x180.png\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:6:\"om.png\";s:5:\"width\";i:663;s:6:\"height\";s:1:\"0\";s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:6:\"om.png\";s:5:\"width\";i:663;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:6:\"om.png\";s:5:\"width\";i:663;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:6:\"om.png\";s:5:\"width\";i:663;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:6:\"om.png\";s:5:\"width\";i:663;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:6:\"om.png\";s:5:\"width\";i:663;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";}s:4:\"full\";a:4:{s:4:\"file\";s:6:\"om.png\";s:5:\"width\";i:663;s:6:\"height\";i:555;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:{}}}'),(6537,3942,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6545,3946,'_wp_page_template','elementor_header_footer'),(6546,3946,'_elementor_edit_mode','builder'),(6547,3946,'_elementor_template_type','wp-page'),(6548,3946,'_elementor_version','2.9.9'),(6549,3946,'_elementor_pro_version','2.10.3'),(6550,3946,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e605d36\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-ess-grid-widget\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6534,3942,'_elementor_version','2.9.9'),(6535,3942,'_elementor_pro_version','2.10.3'),(6536,3942,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6531,3942,'_wp_page_template','elementor_header_footer'),(6532,3942,'_elementor_edit_mode','builder'),(6533,3942,'_elementor_template_type','wp-page'),(6551,3946,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6554,3947,'_wp_page_template','elementor_header_footer'),(6555,3947,'_elementor_edit_mode','builder'),(6556,3947,'_elementor_template_type','wp-page'),(6557,3947,'_elementor_version','2.9.9'),(6558,3947,'_elementor_pro_version','2.10.3'),(6559,3947,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6560,3947,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6561,3947,'_elementor_css','a:5:{s:4:\"time\";i:1624514403;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6564,3948,'_wp_page_template','elementor_header_footer'),(6565,3948,'_elementor_edit_mode','builder'),(6566,3948,'_elementor_template_type','wp-page'),(6567,3948,'_elementor_version','2.9.9'),(6568,3948,'_elementor_pro_version','2.10.3'),(6569,3948,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Inclusive Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6570,3948,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6571,3948,'_elementor_css','a:5:{s:4:\"time\";i:1624514464;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6573,3949,'_wp_page_template','elementor_header_footer'),(6574,3949,'_elementor_edit_mode','builder'),(6575,3949,'_elementor_template_type','wp-page'),(6576,3949,'_elementor_version','2.9.9'),(6577,3949,'_elementor_pro_version','2.10.3'),(6578,3949,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Inclusive Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99ccca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class.\\u00a0<\\/span><\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6579,3949,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6581,3950,'_wp_page_template','elementor_header_footer'),(6582,3950,'_elementor_edit_mode','builder'),(6583,3950,'_elementor_template_type','wp-page'),(6584,3950,'_elementor_version','2.9.9'),(6585,3950,'_elementor_pro_version','2.10.3'),(6586,3950,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Inclusive Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99ccca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class.\\u00a0<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6587,3950,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6695,3961,'_wp_page_template','elementor_header_footer'),(6696,3961,'_elementor_edit_mode','builder'),(6697,3961,'_elementor_template_type','wp-page'),(6698,3961,'_elementor_version','2.9.9'),(6699,3961,'_elementor_pro_version','2.10.3'),(6700,3961,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Inclusive Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99ccca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class.\\u00a0<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Customer\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6590,3898,'stm_day_24','4'),(6598,3951,'_elementor_css','a:5:{s:4:\"time\";i:1624430379;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:11:\"rentex-icon\";i:2;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6600,3952,'_wp_page_template','default'),(6601,3952,'_elementor_edit_mode','builder'),(6602,3952,'_elementor_template_type','wp-page'),(6603,3952,'_elementor_version','2.9.9'),(6604,3952,'_elementor_pro_version','2.10.3'),(6605,3952,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6606,3952,'_elementor_data','[{\"id\":\"2fe3601d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":160,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_position_mobile\":\"center right\",\"background_size\":\"cover\",\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_position\":\"bottom center\"},\"elements\":[{\"id\":\"2ee44629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"54991d5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":48,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d30eac9\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"70\",\"bottom\":\"50\",\"left\":\"70\",\"isLinked\":false}},\"elements\":[{\"id\":\"820b254\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.98799999999999954525264911353588104248046875,\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[{\"id\":\"13e6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Information\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a4a20d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"0e89b9c\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"_id\":\"23578bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"_id\":\"f3565fd\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_color\":\"#F5A44A\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#B4B4B4\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"10d517c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/om.png\",\"id\":3940}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7b011c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.01200000000000045474735088646411895751953125},\"elements\":[{\"id\":\"4ae94cd\",\"elType\":\"widget\",\"settings\":{\"cf_id\":\"6\",\"form_name\":\"Contact form\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#F5F3F3\"},\"elements\":[],\"widgetType\":\"rentex-contactform\"}],\"isInner\":false}],\"isInner\":false}]'),(6607,3898,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:3;s:21:\"space_between_widgets\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:15:\"stretch_section\";i:2;s:3:\"gap\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:8:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:26:\"background_position_mobile\";i:1;s:15:\"background_size\";i:1;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:38:\"background_motion_fx_translateY_effect\";i:1;s:19:\"background_position\";i:1;s:16:\"background_color\";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:14:\"section_border\";a:1:{s:26:\"box_shadow_box_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:2;s:6:\"margin\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:10:\"text_color\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:18:\"rentex-contactform\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"contactform7\";a:1:{s:5:\"cf_id\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}}'),(6614,3953,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6615,3953,'_elementor_css','a:5:{s:4:\"time\";i:1624477214;s:5:\"fonts\";a:0:{}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:\"\";}'),(6617,2643,'stm_day_24','7'),(6618,3916,'_elementor_css','a:5:{s:4:\"time\";i:1624550218;s:5:\"fonts\";a:0:{}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:\"\";}'),(6625,3954,'_elementor_css','a:5:{s:4:\"time\";i:1624473814;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6673,3960,'_elementor_edit_mode','builder'),(6674,3960,'_elementor_template_type','page'),(6637,3956,'_elementor_edit_mode','builder'),(6638,3956,'_elementor_template_type','page'),(6639,3956,'_elementor_version','2.9.9'),(6640,3956,'_elementor_pro_version','2.10.3'),(6641,3956,'_wp_page_template','default'),(6642,3956,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/list-your-property\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#C9AA65\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"8b14d3a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terms\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"Access\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\",\"view\":\"inline\",\"divider\":\"yes\",\"divider_color\":\"#9A9A9A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(6628,3342,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/0001-2-615x450.jpg\",615,450,true]}'),(6629,3898,'_elementor_css','a:5:{s:4:\"time\";i:1624551152;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:11:\"rentex-icon\";i:2;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6630,2720,'stm_day_24','1'),(6631,3263,'stm_day_24','1'),(6632,2784,'stm_day_24','1'),(6633,2781,'stm_day_24','1'),(6634,2781,'stm_month_06','1'),(6643,3956,'_elementor_css','a:5:{s:4:\"time\";i:1624550268;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6646,3957,'_elementor_edit_mode','builder'),(6647,3957,'_elementor_template_type','page'),(6648,3957,'_elementor_version','2.9.9'),(6649,3957,'_elementor_pro_version','2.10.3'),(6650,3957,'_wp_page_template','default'),(6651,3957,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/list-your-property\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#C9AA65\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"8b14d3a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terms\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"Access\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"}],\"icon_align\":\"right\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\",\"view\":\"inline\",\"divider\":\"yes\",\"divider_color\":\"#9A9A9A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(6652,3957,'_elementor_css','a:5:{s:4:\"time\";i:1625429091;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6655,3958,'_elementor_edit_mode','builder'),(6656,3958,'_elementor_template_type','page'),(6657,3958,'_elementor_version','2.9.9'),(6658,3958,'_elementor_pro_version','2.10.3'),(6659,3958,'_wp_page_template','default'),(6660,3958,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/list-your-property\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#C9AA65\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"8b14d3a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terms\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"Access\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\",\"view\":\"inline\",\"divider\":\"yes\",\"divider_color\":\"#9A9A9A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(6661,3958,'_elementor_css','a:5:{s:4:\"time\";i:1625429104;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6664,3959,'_elementor_edit_mode','builder'),(6665,3959,'_elementor_template_type','page'),(6666,3959,'_elementor_version','2.9.9'),(6667,3959,'_elementor_pro_version','2.10.3'),(6668,3959,'_wp_page_template','default'),(6669,3959,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/list-your-property\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#C9AA65\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3bfe6e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"8b14d3a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terms\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"Access\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"}],\"icon_align\":\"right\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\",\"view\":\"inline\",\"divider\":\"yes\",\"divider_color\":\"#9A9A9A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false}]'),(6670,3959,'_elementor_css','a:5:{s:4:\"time\";i:1625429115;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6675,3960,'_elementor_version','2.9.9'),(6676,3960,'_elementor_pro_version','2.10.3'),(6677,3960,'_wp_page_template','default'),(6678,3960,'_elementor_data','[{\"id\":\"8fd467e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_repeat\":\"no-repeat\",\"stretch_section\":\"section-stretched\",\"z_index\":2,\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"rgba(255, 255, 255, 0)\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_color_b\":\"#000000\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"custom_css\":\".elementor-1771 .elementor-element.elementor-element-8fd467e > .elementor-background-overlay {\\n    background-color: transparent;\\n    background-image: linear-gradient(\\n180deg\\n, rgba(255, 255, 255, 0) 50%, #000 50%);\\n    opacity: 1;\\n    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;\\n}\"},\"elements\":[{\"id\":\"40309e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#C9AA65\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"4b4ce76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>for clients<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54a93d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Are you looking for a<br>\\ndream vacation home?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a812991\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help you create unforgettable experiences<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e9bccab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties\",\"align\":\"center\",\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#292929\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"3cb6675\",\"elType\":\"widget\",\"settings\":{\"title\":\"or\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_color\":\"#FFFFFF\",\"_border_width\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"16\",\"bottom\":\"16\",\"left\":\"16\",\"isLinked\":false},\"_border_radius\":{\"unit\":\"%\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":16,\"color\":\"rgba(255, 255, 255, 0.2)\"},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_offset_y\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]},\"_box_shadow_box_shadow_type\":\"yes\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"f5bfcc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_repeat\":\"no-repeat\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_color\":\"#1E86AD\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"border_hover_color\":\"#C2A505\"},\"elements\":[{\"id\":\"e0e4f05\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Home Owners<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9cbfaf1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to join<br>\\nour network?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0aa2d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Monetize your properties without the headache of management<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ea7afaf\",\"elType\":\"widget\",\"settings\":{\"text\":\"Let\\u2019s Discuss Details\",\"align\":\"center\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#292929\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"hover_color\":\"#000000\",\"button_background_hover_color\":\"#FFFFFF\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/list-your-property\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"013480d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#3C3C3C\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":1,\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"f79f326\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":29,\"space_between_widgets\":0},\"elements\":[{\"id\":\"a78c43e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0ce4029\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"(424)-567-2106\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-phone-square\",\"library\":\"rentex-icon\"},\"_id\":\"8adf308\",\"link\":{\"url\":\"tel:(424)-567-2106\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@opulencemgmt.net\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-envelope\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"mailto:info@opulencemgmt.net\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"d07e42a\"},{\"text\":\"Beverly Hills, C.A.\",\"selected_icon\":{\"value\":\"fas fa-map-pin\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a602a23\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_align_mobile\":\"center\",\"text_color\":\"#B4B4B4\",\"text_color_hover\":\"#F5A44A\",\"icon_align\":\"center\",\"icon_color\":\"#C9AA65\",\"icon_color_hover\":\"#F5A44A\",\"icon_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"4a24da7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":39.60499999999999687361196265555918216705322265625,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false}},\"elements\":[{\"id\":\"362aff6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/2021-05-14.jpeg\",\"id\":2903},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"a9fc4a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":30,\"_inline_size_tablet\":38,\"space_between_widgets\":0,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ee5784f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Navigation\",\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a075bf\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Property Search\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"About\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"},{\"text\":\"List Your Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8fc7a2c\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/contact\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"ef60d38\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c8bb374\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"30\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_color_b\":\"#070707\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#D4AF37\"},\"elements\":[{\"id\":\"8a3758e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"8b14d3a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Terms\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"6720ae9\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"4bd85cb\"},{\"text\":\"Access\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/about-us\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"a2a6e48\"}],\"icon_align\":\"center\",\"text_color\":\"#C9AA65\",\"text_color_hover\":\"#F2B42D\",\"view\":\"inline\",\"divider\":\"yes\",\"divider_color\":\"#9A9A9A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"fd12457\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\">\\u00a9 2021 Opulent Management. All Rights Reserved.<\\/p>\",\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(6680,1771,'_elementor_controls_usage','a:7:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:5;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:4;s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:25:\"typography_text_transform\";i:2;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:5;s:5:\"align\";i:5;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:2;s:25:\"typography_text_transform\";i:3;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:5:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:4:{s:13:\"_border_width\";i:1;s:14:\"_border_radius\";i:1;s:22:\"_box_shadow_box_shadow\";i:1;s:27:\"_box_shadow_box_shadow_type\";i:1;}s:17:\"_section_position\";a:5:{s:14:\"_element_width\";i:1;s:21:\"_element_custom_width\";i:1;s:9:\"_position\";i:1;s:9:\"_offset_x\";i:1;s:9:\"_offset_y\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}}}}s:6:\"button\";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_button\";a:3:{s:4:\"text\";i:2;s:5:\"align\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_radius\";i:2;s:12:\"text_padding\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:6;s:21:\"space_between_widgets\";i:6;s:19:\"_inline_size_tablet\";i:3;s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:3;s:17:\"background_repeat\";i:3;s:16:\"background_color\";i:2;s:19:\"background_position\";i:1;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:2;s:20:\"border_radius_mobile\";i:2;s:20:\"border_radius_tablet\";i:2;s:18:\"border_hover_color\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:3;s:13:\"margin_tablet\";i:1;s:14:\"padding_mobile\";i:1;s:13:\"margin_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:3;s:15:\"stretch_section\";i:3;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:6:{s:17:\"background_repeat\";i:1;s:21:\"background_color_stop\";i:1;s:18:\"background_color_b\";i:2;s:23:\"background_color_b_stop\";i:1;s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:29:\"background_overlay_color_stop\";i:1;s:26:\"background_overlay_color_b\";i:1;s:31:\"background_overlay_color_b_stop\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"z_index\";i:2;s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:18:\"section_custom_css\";a:1:{s:10:\"custom_css\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:2:{s:9:\"icon_list\";i:3;s:4:\"view\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:5:{s:13:\"space_between\";i:1;s:17:\"icon_align_mobile\";i:1;s:10:\"icon_align\";i:3;s:7:\"divider\";i:1;s:13:\"divider_color\";i:1;}s:18:\"section_text_style\";a:3:{s:10:\"text_color\";i:3;s:16:\"text_color_hover\";i:3;s:26:\"icon_typography_typography\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:16:\"icon_color_hover\";i:1;}}}}s:5:\"image\";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_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}}'),(6679,3960,'_elementor_css','a:5:{s:4:\"time\";i:1625429125;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6681,1771,'_elementor_css','a:5:{s:4:\"time\";i:1625429164;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:0:\"\";i:2;s:11:\"rentex-icon\";i:4;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6682,2643,'stm_day_4','3'),(6683,2643,'stm_month_07','28'),(6684,3263,'stm_day_4','1'),(6685,3263,'stm_month_07','6'),(6686,3225,'stm_day_4','1'),(6687,3225,'stm_month_07','3'),(6688,2788,'stm_day_4','1'),(6689,2788,'stm_month_07','6'),(6690,3895,'_wp_old_date','2021-06-23'),(6691,2710,'_wp_old_date','2021-06-23'),(6692,2711,'_wp_old_date','2021-06-23'),(6693,2713,'_wp_old_date','2021-06-23'),(6694,2712,'_wp_old_date','2021-06-23'),(6701,3961,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6702,3961,'_elementor_css','a:5:{s:4:\"time\";i:1624514753;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6704,3962,'_wp_page_template','elementor_header_footer'),(6705,3962,'_elementor_edit_mode','builder'),(6706,3962,'_elementor_template_type','wp-page'),(6707,3962,'_elementor_version','2.9.9'),(6708,3962,'_elementor_pro_version','2.10.3'),(6709,3962,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header-2-1.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Inclusive Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99ccca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class.\\u00a0<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Valued Client\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6710,3962,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6715,3964,'_wp_page_template','elementor_header_footer'),(6716,3964,'_elementor_edit_mode','builder'),(6717,3964,'_elementor_template_type','wp-page'),(6718,3964,'_elementor_version','2.9.9'),(6719,3964,'_elementor_pro_version','2.10.3'),(6720,3964,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Inclusive Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99ccca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class.\\u00a0<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Valued Client\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6713,3963,'_wp_attached_file','2020/06/WB-Header.mp4'),(6714,3963,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:88365115;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:65;s:16:\"length_formatted\";s:4:\"1:05\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:1625492641;}'),(6721,3964,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6722,3964,'_elementor_css','a:5:{s:4:\"time\";i:1625431835;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6830,3975,'_wp_page_template','elementor_header_footer'),(6831,3975,'_elementor_edit_mode','builder'),(6832,3975,'_elementor_template_type','wp-page'),(6833,3975,'_elementor_version','2.9.9'),(6834,3975,'_elementor_pro_version','2.10.3'),(6835,3975,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_play_on_mobile\":\"yes\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Inclusive Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99ccca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class.\\u00a0<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Valued Client\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6727,3741,'stm_month_07','2'),(6728,3966,'inline_featured_image','0'),(6729,3966,'_edit_last','8'),(6730,3966,'_wp_page_template','default'),(6731,3966,'eg_sources_html5_mp4',''),(6732,3966,'eg_sources_youtube',''),(6733,3966,'eg_sources_vimeo',''),(6734,3966,'eg_sources_wistia',''),(6735,3966,'eg_sources_image',''),(6736,3966,'eg_sources_iframe',''),(6737,3966,'eg_sources_soundcloud',''),(6738,3966,'eg_vimeo_ratio','1'),(6739,3966,'eg_youtube_ratio','1'),(6740,3966,'eg_wistia_ratio','1'),(6741,3966,'eg_html5_ratio','1'),(6742,3966,'eg_soundcloud_ratio','1'),(6743,3966,'eg_sources_essgrid',''),(6744,3966,'eg_featured_grid',''),(6745,3966,'eg_settings_custom_meta_skin',''),(6746,3966,'eg_settings_custom_meta_element',''),(6747,3966,'eg_settings_custom_meta_setting',''),(6748,3966,'eg_settings_custom_meta_style',''),(6749,3966,'eg_custom_meta_216','true'),(6750,3966,'eg_votes_count','0'),(6751,3966,'_edit_lock','1626382385:10'),(6752,2642,'stm_day_13','2'),(6753,2642,'stm_month_07','2'),(6754,3967,'inline_featured_image','0'),(6755,3967,'stm_listing_item_card_0','a:2:{s:6:\"config\";a:0:{}s:8:\"sections\";a:0:{}}'),(6756,3967,'ulisting_listing_type_item_card_element_data_0','[]'),(6757,3967,'_edit_last','8'),(6758,3967,'_wp_page_template','default'),(6759,3967,'stm_listing_single_layout','0'),(6760,3967,'listing_type_layout','0'),(6761,3967,'stm_listing_order','a:2:{s:9:\"view_type\";s:4:\"list\";s:16:\"order_by_default\";s:0:\"\";}'),(6762,3967,'eg_sources_html5_mp4',''),(6763,3967,'eg_sources_youtube',''),(6764,3967,'eg_sources_vimeo',''),(6765,3967,'eg_sources_wistia',''),(6766,3967,'eg_sources_image',''),(6767,3967,'eg_sources_iframe',''),(6768,3967,'eg_sources_soundcloud',''),(6769,3967,'eg_vimeo_ratio','1'),(6770,3967,'eg_youtube_ratio','1'),(6771,3967,'eg_wistia_ratio','1'),(6772,3967,'eg_html5_ratio','1'),(6773,3967,'eg_soundcloud_ratio','1'),(6774,3967,'eg_sources_essgrid',''),(6775,3967,'eg_featured_grid',''),(6776,3967,'eg_settings_custom_meta_skin',''),(6777,3967,'eg_settings_custom_meta_element',''),(6778,3967,'eg_settings_custom_meta_setting',''),(6779,3967,'eg_settings_custom_meta_style',''),(6780,3967,'eg_custom_meta_216','true'),(6781,3967,'eg_votes_count','0'),(6782,3968,'inline_featured_image','0'),(6783,3968,'stm_listing_single_layout','0'),(6784,3968,'listing_type_layout','0'),(6785,3968,'stm_listing_order','a:2:{s:9:\"view_type\";s:4:\"list\";s:16:\"order_by_default\";s:0:\"\";}'),(6786,3968,'eg_sources_html5_mp4',''),(6787,3968,'eg_sources_youtube',''),(6788,3968,'eg_sources_vimeo',''),(6789,3968,'eg_sources_wistia',''),(6790,3968,'eg_sources_image',''),(6791,3968,'eg_sources_iframe',''),(6792,3968,'eg_sources_soundcloud',''),(6793,3968,'eg_vimeo_ratio','1'),(6794,3968,'eg_youtube_ratio','1'),(6795,3968,'eg_wistia_ratio','1'),(6796,3968,'eg_html5_ratio','1'),(6797,3968,'eg_soundcloud_ratio','1'),(6798,3968,'eg_sources_essgrid',''),(6799,3968,'eg_featured_grid',''),(6800,3968,'eg_settings_custom_meta_skin',''),(6801,3968,'eg_settings_custom_meta_element',''),(6802,3968,'eg_settings_custom_meta_setting',''),(6803,3968,'eg_settings_custom_meta_style',''),(6804,3968,'eg_custom_meta_216','true'),(6805,3968,'eg_votes_count','0'),(6806,3967,'_edit_lock','1626175791:8'),(6807,3967,'stm_post_views','2'),(6808,3967,'stm_day_13','2'),(6809,3967,'stm_month_07','2'),(6810,2643,'stm_day_13','2'),(6811,3966,'stm_post_views','12'),(6812,3966,'stm_day_13','1'),(6813,3966,'stm_month_07','12'),(6814,3969,'_wp_attached_file','2021/07/Residences02.jpg'),(6815,3969,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1520;s:6:\"height\";i:1013;s:4:\"file\";s:24:\"2021/07/Residences02.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Residences02-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:25:\"Residences02-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Residences02-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:\"Residences02-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Residences02-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"Residences02-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"Residences02-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"Residences02-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Residences02-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:24:\"Residences02-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:24:\"Residences02-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"Residences02-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"Residences02-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:16:\"Residences02.jpg\";s:5:\"width\";i:1520;s:6:\"height\";i:1013;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:{}}}'),(6816,3970,'_wp_attached_file','2021/07/NGP_0545.jpg'),(6817,3970,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1415;s:6:\"height\";i:1013;s:4:\"file\";s:20:\"2021/07/NGP_0545.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"NGP_0545-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"NGP_0545-1024x733.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"NGP_0545-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:20:\"NGP_0545-768x550.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"NGP_0545-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"NGP_0545-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"NGP_0545-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"NGP_0545-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"NGP_0545-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"NGP_0545-629x450.jpg\";s:5:\"width\";i:629;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"NGP_0545-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"NGP_0545-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"NGP_0545-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"NGP_0545.jpg\";s:5:\"width\";i:1415;s:6:\"height\";i:1013;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:{}}}'),(6818,3971,'_wp_attached_file','2021/07/NGP_3950.jpg'),(6819,3971,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1415;s:6:\"height\";i:1013;s:4:\"file\";s:20:\"2021/07/NGP_3950.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"NGP_3950-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"NGP_3950-1024x733.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"NGP_3950-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:20:\"NGP_3950-768x550.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"NGP_3950-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"NGP_3950-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"NGP_3950-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"NGP_3950-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"NGP_3950-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"NGP_3950-629x450.jpg\";s:5:\"width\";i:629;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"NGP_3950-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"NGP_3950-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"NGP_3950-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"NGP_3950.jpg\";s:5:\"width\";i:1415;s:6:\"height\";i:1013;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:{}}}'),(6820,3972,'_wp_attached_file','2021/07/Residences03.jpg'),(6821,3972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1520;s:6:\"height\";i:1013;s:4:\"file\";s:24:\"2021/07/Residences03.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Residences03-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:25:\"Residences03-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Residences03-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:\"Residences03-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"Residences03-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:22:\"Residences03-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:24:\"Residences03-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:24:\"Residences03-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:24:\"Residences03-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:24:\"Residences03-675x450.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:24:\"Residences03-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:24:\"Residences03-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:24:\"Residences03-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:16:\"Residences03.jpg\";s:5:\"width\";i:1520;s:6:\"height\";i:1013;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:{}}}'),(6822,3973,'_wp_attached_file','2021/07/NGP_3982.jpg'),(6823,3973,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1415;s:6:\"height\";i:1013;s:4:\"file\";s:20:\"2021/07/NGP_3982.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"NGP_3982-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"NGP_3982-1024x733.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:733;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"NGP_3982-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:20:\"NGP_3982-768x550.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"NGP_3982-1000x565.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-recent-post\";a:4:{s:4:\"file\";s:18:\"NGP_3982-80x80.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:80;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"rentex-post-grid\";a:4:{s:4:\"file\";s:20:\"NGP_3982-615x360.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"rentex-thumbnail-listing\";a:4:{s:4:\"file\";s:20:\"NGP_3982-615x450.jpg\";s:5:\"width\";i:615;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"rentex-ulisting-detail-gallery\";a:4:{s:4:\"file\";s:20:\"NGP_3982-960x450.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-2\";a:4:{s:4:\"file\";s:20:\"NGP_3982-629x450.jpg\";s:5:\"width\";i:629;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-gallery-3\";a:4:{s:4:\"file\";s:20:\"NGP_3982-850x600.jpg\";s:5:\"width\";i:850;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"rentex-ulisting-detail-thumbnail\";a:4:{s:4:\"file\";s:20:\"NGP_3982-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"rentex-map-listing\";a:4:{s:4:\"file\";s:20:\"NGP_3982-290x180.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:4:\"full\";a:4:{s:4:\"file\";s:12:\"NGP_3982.jpg\";s:5:\"width\";i:1415;s:6:\"height\";i:1013;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:{}}}'),(6828,2788,'stm_day_13','3'),(6825,3966,'ulisting_publish_date','2021-07-13 12:10'),(6826,3966,'ulisting_first_publish','1'),(6827,3966,'ulisting_publish_notification','0'),(6836,3975,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6837,3975,'_elementor_css','a:5:{s:4:\"time\";i:1625529748;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6846,3977,'_wp_page_template','elementor_header_footer'),(6847,3977,'_elementor_edit_mode','builder'),(6848,3977,'_elementor_template_type','wp-page'),(6849,3977,'_elementor_version','2.9.9'),(6850,3977,'_elementor_pro_version','2.10.3'),(6851,3977,'_elementor_data','[{\"id\":\"45a813b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":560,\"sizes\":[]},\"background_background\":\"video\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg.jpg\",\"id\":915},\"background_slideshow_slide_duration\":50000,\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":350,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_video_link\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2020\\/06\\/WB-Header.mp4\",\"margin\":{\"unit\":\"px\",\"top\":\"-130\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_play_on_mobile\":\"yes\"},\"elements\":[{\"id\":\"a8cd234\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"900c757\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Discover Your \",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24a375f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dream Vacation\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64a5f77\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management Proudly Showcases The Most Exclusive Properties<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":29,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e2fad0b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore The Collection\",\"align\":\"center\",\"size\":\"md\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_text_color\":\"#000000\",\"background_color\":\"#FFFFFF\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#F5A44A\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19d19f7\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"6f5a274\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"d4e1bd1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Featured Properties\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e46e930\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"573321d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"fb19e21\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"6\",\"listing_posts_item_columns\":\"3\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3194002\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":710,\"sizes\":[]},\"column_position\":\"top\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"30\",\"bottom\":\"100\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_color_b\":\"#FFFFFF\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"80\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"db90f07\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":42.63600000000000278532752417959272861480712890625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_mobile\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\",\"background_color\":\"#000000\",\"background_color_b\":\"#653C03\",\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"36\",\"right\":\"36\",\"bottom\":\"36\",\"left\":\"36\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a9595c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Welcome To\",\"header_size\":\"h6\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#B1DC6F\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d22dc54\",\"elType\":\"widget\",\"settings\":{\"title\":\"The World Famous\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbf3b0c\",\"elType\":\"widget\",\"settings\":{\"title\":\"California\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"title_color\":\"#FFFFFF\",\"text_shadow_text_shadow_type\":\"yes\",\"typography_font_weight\":\"bold\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b21e479\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"text_color\":\"#FFFFFF\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"328eb0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95b51c2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Experienced team at your service\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"_id\":\"8294625\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Family friendly properties\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"c1d457c\"},{\"text\":\"Special requests for our guests\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"b1c1699\"},{\"text\":\"Reliable and quick turnaround on bookings\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-check\",\"library\":\"rentex-icon\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"e464f6e\"}],\"icon_color\":\"#B1DC6F\",\"text_color\":\"#FFFFFF\",\"icon_typography_typography\":\"custom\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"_element_width_tablet\":\"auto\",\"_element_custom_width_tablet\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"872df84\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"f96a7fd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c38004\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align_tablet\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"98834c7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Explore Properties Now\",\"size\":\"md\",\"border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"selected_icon\":{\"value\":\"rentex-icon- rentex-icon-long-arrow-right\",\"library\":\"rentex-icon\"},\"icon_align\":\"right\",\"button_background_hover_color\":\"#FF8000\",\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"70340f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":57.36399999999999721467247582040727138519287109375,\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_background\":\"classic\"},\"elements\":[{\"id\":\"99b04ee\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/beverly-hills-116228_1920.jpg\",\"id\":2657},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"62eb1da\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3bcd820\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a7be9de\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/water-rescue-1657783_1920.jpg\",\"id\":2653},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d6f4fb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"fc6c0da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/hollywood-sign-1.jpeg\",\"id\":2702},\"image_size\":\"full\",\"align\":\"right\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-3\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f97334f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a6bb7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bb5076b\",\"elType\":\"widget\",\"settings\":{\"listing_posts_styles\":\"grid-style-4\",\"listing_posts_per_page\":\"8\",\"listing_posts_item_columns\":\"4\",\"listing_posts_order_by\":\"post_date\"},\"elements\":[],\"widgetType\":\"rentex_listing_all\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"085772b\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"916ee03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"dcb0c21\",\"elType\":\"widget\",\"settings\":{\"title\":\"Search By Property Type\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"764925d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b6442d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0012-scaled.jpg\",\"id\":2691},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.4899999999999999911182158029987476766109466552734375,\"sizes\":[]},\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"rgba(2, 1, 1, 0.38)\",\"background_position\":\"center center\"},\"elements\":[{\"id\":\"5903ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b657d8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0002-scaled.jpg\",\"id\":2771},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"d91e046\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Town Homes\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"08db6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rentex.wpopal.com\\/wp-content\\/uploads\\/2020\\/06\\/h5_bg-2.jpg\",\"id\":960},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_hover_background\":\"classic\",\"background_overlay_hover_color\":\"#000000\",\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.65000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[{\"id\":\"26fd4b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Luxury Condos\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#F5A44A\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":32,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/properties\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94dd508\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"content_width\":{\"unit\":\"px\",\"size\":1320,\"sizes\":[]},\"gap\":\"no\",\"background_background\":\"classic\",\"background_color_stop\":{\"unit\":\"%\",\"size\":64,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#000000\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"22ae62b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d61cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"All Inclusive Services\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"99ccca8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #ffffff;\\\">Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class.\\u00a0<\\/span><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"500\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"01f0fc0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[ess_grid alias=\\\"home main 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bc31f8a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"683dffc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6c07903\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Opulence Management Difference\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57b8bab\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f107772\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"3e9d8da\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"1 of a Kind Properties\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"376e752\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a110532\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"First Class Service\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false},{\"id\":\"9b8e2ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1cc467c\",\"elType\":\"widget\",\"settings\":{\"suffix\":\"%\",\"title\":\"Customer Satisfaction\",\"position\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fe3f810\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/om7717.dev34.info\\/wp-content\\/uploads\\/2021\\/05\\/0006-2-scaled.jpg\",\"id\":2917},\"background_motion_fx_motion_fx_scrolling\":\"yes\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002220446049250313080847263336181640625,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0782451\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false},{\"id\":\"a07a530\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":59.66599999999999681676854379475116729736328125,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"130\",\"bottom\":\"50\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"background_color_b\":\"#000000\"},\"elements\":[{\"id\":\"f6813da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Signup For Our Newsletter\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5147e44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5180afe\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"_id\":\"6c9b5a1\",\"selected_icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_size\":\"md\",\"button_align\":\"center\",\"submit_actions\":[\"mailchimp\"],\"email_to\":\"admin@admin.com\",\"email_subject\":\"New message from \\\"Listing\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@listing.local:8181\",\"email_from_name\":\"Listing\",\"email_to_2\":\"admin@admin.com\",\"email_subject_2\":\"New message from \\\"Listing\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@listing.local:8181\",\"email_from_name_2\":\"Listing\",\"email_reply_to_2\":\"admin@admin.com\",\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occured.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"field_background_color\":\"#F7F7F7\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"button_background_color\":\"#C7A402\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"field_align\":\"center\",\"button_background_hover_color\":\"#FF8000\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false},{\"id\":\"2820f4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":19.998999999999998777866494492627680301666259765625,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"rgba(255, 255, 255, 0)\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"130\",\"bottom\":\"70\",\"left\":\"130\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"cf3ed2c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"30\",\"bottom\":\"70\",\"left\":\"30\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b3811ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd99b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Client Reviews\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f1e974\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-quote-left\",\"library\":\"fa-solid\"},\"primary_color\":\"#C9AA65\",\"hover_primary_color\":\"#A48540\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4e8a739\",\"elType\":\"widget\",\"settings\":{\"testimonials\":[{\"testimonial_content\":\"\\\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\\\"\",\"testimonial_name\":\"Lincoln Jones\",\"testimonial_job\":\"Valued Client\",\"testimonial_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"6238c10\",\"testimonial_image\":{\"url\":\"\",\"id\":\"\"}}],\"testimonial_alignment\":\"center\",\"style\":\"2\",\"column\":\"2\",\"content_content_color\":\"#FFFFFF\",\"content_content_color_hover\":\"#FFFFFF\",\"name_text_color\":\"#FFFFFF\",\"name_text_color_hover\":\"#FFFFFF\",\"name_typography_typography\":\"custom\",\"enable_carousel\":\"yes\"},\"elements\":[],\"widgetType\":\"rentex-testimonials\"}],\"isInner\":false}],\"isInner\":false}]'),(6854,881,'_elementor_controls_usage','a:14:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{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:9:{s:5:\"align\";i:4;s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:4;s:25:\"typography_text_transform\";i:1;s:27:\"typography_font_size_mobile\";i:1;s:12:\"align_mobile\";i:2;s:12:\"align_tablet\";i:2;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:5;s:15:\"_padding_tablet\";i:2;s:15:\"_padding_mobile\";i:1;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:6:{s:5:\"title\";i:13;s:5:\"align\";i:10;s:12:\"align_mobile\";i:7;s:11:\"header_size\";i:4;s:12:\"align_tablet\";i:2;s:4:\"link\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:12:{s:11:\"title_color\";i:13;s:21:\"typography_typography\";i:13;s:20:\"typography_font_size\";i:13;s:25:\"typography_text_transform\";i:5;s:25:\"typography_letter_spacing\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:8;s:32:\"typography_letter_spacing_tablet\";i:1;s:32:\"typography_letter_spacing_mobile\";i:1;s:22:\"typography_font_weight\";i:4;s:22:\"typography_line_height\";i:8;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:13;s:8:\"_padding\";i:5;s:15:\"_padding_mobile\";i:4;s:14:\"_margin_tablet\";i:3;s:14:\"_margin_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}s:15:\"_section_border\";a:1:{s:14:\"_border_radius\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:4:\"text\";i:2;s:5:\"align\";i:1;s:4:\"size\";i:2;s:13:\"selected_icon\";i:2;s:10:\"icon_align\";i:2;s:4:\"link\";i:2;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:2;s:13:\"border_radius\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:3:{s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:1;s:7:\"_margin\";i:1;}s:17:\"_section_position\";a:2:{s:14:\"_element_width\";i:1;s:21:\"_element_width_mobile\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:6:{s:12:\"_inline_size\";i:22;s:21:\"space_between_widgets\";i:14;s:5:\"align\";i:3;s:12:\"align_tablet\";i:2;s:19:\"_inline_size_tablet\";i:5;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:13:\"margin_tablet\";i:5;s:14:\"padding_tablet\";i:9;s:7:\"padding\";i:7;s:14:\"padding_mobile\";i:5;s:6:\"margin\";i:3;s:13:\"margin_mobile\";i:3;}}s:5:\"style\";a:3:{s:13:\"section_style\";a:6:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:5;s:18:\"background_color_b\";i:2;s:16:\"background_image\";i:3;s:15:\"background_size\";i:3;s:19:\"background_position\";i:1;}s:14:\"section_border\";a:2:{s:13:\"border_radius\";i:4;s:20:\"border_radius_tablet\";i:1;}s:26:\"section_background_overlay\";a:6:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:1;s:35:\"background_overlay_hover_background\";i:3;s:30:\"background_overlay_hover_color\";i:3;s:32:\"background_overlay_hover_opacity\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:14;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:10:{s:15:\"stretch_section\";i:10;s:3:\"gap\";i:9;s:6:\"height\";i:1;s:13:\"custom_height\";i:2;s:20:\"custom_height_tablet\";i:1;s:20:\"custom_height_mobile\";i:1;s:16:\"content_position\";i:1;s:15:\"column_position\";i:1;s:6:\"layout\";i:1;s:13:\"content_width\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:16:{s:21:\"background_background\";i:10;s:16:\"background_image\";i:2;s:35:\"background_slideshow_slide_duration\";i:1;s:30:\"background_slideshow_ken_burns\";i:1;s:21:\"background_video_link\";i:1;s:25:\"background_play_on_mobile\";i:1;s:16:\"background_color\";i:8;s:21:\"background_color_stop\";i:3;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:3;s:25:\"background_gradient_angle\";i:1;s:24:\"background_gradient_type\";i:2;s:40:\"background_motion_fx_motion_fx_scrolling\";i:1;s:38:\"background_motion_fx_translateY_effect\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:7:\"padding\";i:11;s:6:\"margin\";i:8;s:13:\"margin_tablet\";i:7;s:14:\"padding_tablet\";i:5;s:14:\"padding_mobile\";i:5;s:13:\"margin_mobile\";i:5;}}}}s:18:\"rentex_listing_all\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:19:\"man_offices_content\";a:4:{s:20:\"listing_posts_styles\";i:2;s:22:\"listing_posts_per_page\";i:2;s:26:\"listing_posts_item_columns\";i:2;s:22:\"listing_posts_order_by\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:1;}s:18:\"section_text_style\";a:2:{s:10:\"text_color\";i:1;s:26:\"icon_typography_typography\";i:1;}}s:8:\"advanced\";a:1:{s:17:\"_section_position\";a:3:{s:21:\"_element_custom_width\";i:1;s:21:\"_element_width_tablet\";i:1;s:28:\"_element_custom_width_tablet\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:3;s:10:\"image_size\";i:3;s:5:\"align\";i:3;s:12:\"align_mobile\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:1:{s:19:\"image_border_radius\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:3;s:8:\"_padding\";i:2;}}}}s:9:\"shortcode\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:17:\"section_shortcode\";a:1:{s:9:\"shortcode\";i:1;}}}}s:7:\"counter\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:15:\"section_counter\";a:2:{s:6:\"suffix\";i:3;s:5:\"title\";i:3;}}s:5:\"style\";a:2:{s:15:\"section_wrapper\";a:1:{s:8:\"position\";i:3;}s:13:\"section_title\";a:1:{s:11:\"title_color\";i:3;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:2:{s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;}s:15:\"section_buttons\";a:3:{s:11:\"button_text\";i:1;s:11:\"button_size\";i:1;s:12:\"button_align\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:5:{s:10:\"email_to_2\";i:1;s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;s:16:\"email_reply_to_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:4:{s:22:\"field_background_color\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;s:11:\"field_align\";i:1;}s:20:\"section_button_style\";a:5:{s:23:\"button_background_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;}}}}s:4:\"icon\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_style_icon\";a:2:{s:13:\"primary_color\";i:1;s:19:\"hover_primary_color\";i:1;}}}}s:19:\"rentex-testimonials\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_testimonial\";a:4:{s:12:\"testimonials\";i:1;s:21:\"testimonial_alignment\";i:1;s:5:\"style\";i:1;s:6:\"column\";i:1;}s:24:\"section_carousel_options\";a:1:{s:15:\"enable_carousel\";i:1;}}s:5:\"style\";a:2:{s:31:\"section_style_testimonial_style\";a:2:{s:21:\"content_content_color\";i:1;s:27:\"content_content_color_hover\";i:1;}s:30:\"section_style_testimonial_name\";a:3:{s:15:\"name_text_color\";i:1;s:21:\"name_text_color_hover\";i:1;s:26:\"name_typography_typography\";i:1;}}}}}'),(6840,3263,'stm_day_14','2'),(6841,2781,'stm_month_07','8'),(6843,3335,'stm_day_14','1'),(6844,3335,'stm_month_07','1'),(6845,3966,'stm_day_14','1'),(6852,3977,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(6853,3977,'_elementor_css','a:5:{s:4:\"time\";i:1626221639;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6855,881,'_elementor_css','a:5:{s:4:\"time\";i:1626295353;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:11:\"rentex-icon\";i:6;s:0:\"\";i:7;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(6856,3898,'stm_day_14','6'),(6857,3898,'stm_month_07','8'),(6858,2720,'stm_month_07','11'),(6859,2769,'stm_month_07','4'),(6860,2779,'stm_month_07','4'),(6861,3966,'stm_day_15','9'),(6862,3966,'_thumbnail_id','3969'),(6863,3966,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/07/Residences02-615x450.jpg\",615,450,true]}');
INSERT INTO `wpew_postmeta` VALUES (6864,2720,'stm_day_15','7'),(6866,2643,'stm_day_15','5'),(6867,2769,'stm_day_15','3'),(6869,3898,'stm_day_15','1'),(6872,3703,'stm_month_07','1'),(6876,2779,'eg_sources_wistia',''),(6877,2779,'eg_sources_image',''),(6878,2779,'eg_sources_iframe',''),(6879,2779,'eg_sources_soundcloud',''),(6880,2779,'eg_vimeo_ratio','1'),(6881,2779,'eg_youtube_ratio','1'),(6882,2779,'eg_wistia_ratio','1'),(6883,2779,'eg_html5_ratio','1'),(6884,2779,'eg_soundcloud_ratio','1'),(6885,2779,'eg_sources_essgrid',''),(6886,2779,'eg_featured_grid',''),(6887,2779,'eg_settings_custom_meta_skin',''),(6888,2779,'eg_settings_custom_meta_element',''),(6889,2779,'eg_settings_custom_meta_setting',''),(6890,2779,'eg_settings_custom_meta_style',''),(6891,2779,'eg_custom_meta_216','true'),(6892,2779,'eg_votes_count','0'),(6893,2781,'stm_day_15','2'),(6894,2784,'stm_day_15','1'),(6895,2784,'stm_month_07','1'),(6896,2786,'stm_day_15','1'),(6897,2786,'stm_month_07','1'),(6901,2781,'eg_sources_wistia',''),(6902,2781,'eg_sources_image',''),(6903,2781,'eg_sources_iframe',''),(6904,2781,'eg_sources_soundcloud',''),(6905,2781,'eg_vimeo_ratio','1'),(6906,2781,'eg_youtube_ratio','1'),(6907,2781,'eg_wistia_ratio','1'),(6908,2781,'eg_html5_ratio','1'),(6909,2781,'eg_soundcloud_ratio','1'),(6910,2781,'eg_sources_essgrid',''),(6911,2781,'eg_featured_grid',''),(6912,2781,'eg_settings_custom_meta_skin',''),(6913,2781,'eg_settings_custom_meta_element',''),(6914,2781,'eg_settings_custom_meta_setting',''),(6915,2781,'eg_settings_custom_meta_style',''),(6916,2781,'eg_custom_meta_216','true'),(6917,2781,'eg_votes_count','0'),(6921,2784,'eg_sources_wistia',''),(6922,2784,'eg_sources_image',''),(6923,2784,'eg_sources_iframe',''),(6924,2784,'eg_sources_soundcloud',''),(6925,2784,'eg_vimeo_ratio','1'),(6926,2784,'eg_youtube_ratio','1'),(6927,2784,'eg_wistia_ratio','1'),(6928,2784,'eg_html5_ratio','1'),(6929,2784,'eg_soundcloud_ratio','1'),(6930,2784,'eg_sources_essgrid',''),(6931,2784,'eg_featured_grid',''),(6932,2784,'eg_settings_custom_meta_skin',''),(6933,2784,'eg_settings_custom_meta_element',''),(6934,2784,'eg_settings_custom_meta_setting',''),(6935,2784,'eg_settings_custom_meta_style',''),(6936,2784,'eg_custom_meta_216','true'),(6937,2784,'eg_votes_count','0'),(6941,2786,'eg_sources_wistia',''),(6942,2786,'eg_sources_image',''),(6943,2786,'eg_sources_iframe',''),(6944,2786,'eg_sources_soundcloud',''),(6945,2786,'eg_vimeo_ratio','1'),(6946,2786,'eg_youtube_ratio','1'),(6947,2786,'eg_wistia_ratio','1'),(6948,2786,'eg_html5_ratio','1'),(6949,2786,'eg_soundcloud_ratio','1'),(6950,2786,'eg_sources_essgrid',''),(6951,2786,'eg_featured_grid',''),(6952,2786,'eg_settings_custom_meta_skin',''),(6953,2786,'eg_settings_custom_meta_element',''),(6954,2786,'eg_settings_custom_meta_setting',''),(6955,2786,'eg_settings_custom_meta_style',''),(6956,2786,'eg_custom_meta_216','true'),(6957,2786,'eg_votes_count','0'),(6958,2788,'stm_day_15','2'),(6959,2790,'stm_month_07','2'),(6963,2788,'eg_sources_wistia',''),(6964,2788,'eg_sources_image',''),(6965,2788,'eg_sources_iframe',''),(6966,2788,'eg_sources_soundcloud',''),(6967,2788,'eg_vimeo_ratio','1'),(6968,2788,'eg_youtube_ratio','1'),(6969,2788,'eg_wistia_ratio','1'),(6970,2788,'eg_html5_ratio','1'),(6971,2788,'eg_soundcloud_ratio','1'),(6972,2788,'eg_sources_essgrid',''),(6973,2788,'eg_featured_grid',''),(6974,2788,'eg_settings_custom_meta_skin',''),(6975,2788,'eg_settings_custom_meta_element',''),(6976,2788,'eg_settings_custom_meta_setting',''),(6977,2788,'eg_settings_custom_meta_style',''),(6978,2788,'eg_custom_meta_216','true'),(6979,2788,'eg_votes_count','0'),(6983,2790,'eg_sources_wistia',''),(6984,2790,'eg_sources_image',''),(6985,2790,'eg_sources_iframe',''),(6986,2790,'eg_sources_soundcloud',''),(6987,2790,'eg_vimeo_ratio','1'),(6988,2790,'eg_youtube_ratio','1'),(6989,2790,'eg_wistia_ratio','1'),(6990,2790,'eg_html5_ratio','1'),(6991,2790,'eg_soundcloud_ratio','1'),(6992,2790,'eg_sources_essgrid',''),(6993,2790,'eg_featured_grid',''),(6994,2790,'eg_settings_custom_meta_skin',''),(6995,2790,'eg_settings_custom_meta_element',''),(6996,2790,'eg_settings_custom_meta_setting',''),(6997,2790,'eg_settings_custom_meta_style',''),(6998,2790,'eg_custom_meta_216','true'),(6999,2790,'eg_votes_count','0'),(7003,3225,'eg_sources_wistia',''),(7004,3225,'eg_sources_image',''),(7005,3225,'eg_sources_iframe',''),(7006,3225,'eg_sources_soundcloud',''),(7007,3225,'eg_vimeo_ratio','1'),(7008,3225,'eg_youtube_ratio','1'),(7009,3225,'eg_wistia_ratio','1'),(7010,3225,'eg_html5_ratio','1'),(7011,3225,'eg_soundcloud_ratio','1'),(7012,3225,'eg_sources_essgrid',''),(7013,3225,'eg_featured_grid',''),(7014,3225,'eg_settings_custom_meta_skin',''),(7015,3225,'eg_settings_custom_meta_element',''),(7016,3225,'eg_settings_custom_meta_setting',''),(7017,3225,'eg_settings_custom_meta_style',''),(7018,3225,'eg_custom_meta_216','true'),(7019,3225,'eg_votes_count','0'),(7023,3263,'eg_sources_wistia',''),(7024,3263,'eg_sources_image',''),(7025,3263,'eg_sources_iframe',''),(7026,3263,'eg_sources_soundcloud',''),(7027,3263,'eg_vimeo_ratio','1'),(7028,3263,'eg_youtube_ratio','1'),(7029,3263,'eg_wistia_ratio','1'),(7030,3263,'eg_html5_ratio','1'),(7031,3263,'eg_soundcloud_ratio','1'),(7032,3263,'eg_sources_essgrid',''),(7033,3263,'eg_featured_grid',''),(7034,3263,'eg_settings_custom_meta_skin',''),(7035,3263,'eg_settings_custom_meta_element',''),(7036,3263,'eg_settings_custom_meta_setting',''),(7037,3263,'eg_settings_custom_meta_style',''),(7038,3263,'eg_custom_meta_216','true'),(7039,3263,'eg_votes_count','0'),(7040,2779,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\",615,450,true]}'),(7041,3263,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\",615,450,true]}'),(7042,2790,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\",615,450,true]}'),(7043,2781,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\",615,450,true]}'),(7044,2784,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\",615,427,true]}'),(7045,2786,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\",615,450,true]}'),(7046,2788,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\",615,450,true]}'),(7047,2643,'stm_day_16','2'),(7048,3225,'ulisting_feature_image_cache','{\"rentex-thumbnail-listing\":[\"https://om7717.dev34.info/wp-content/uploads/2021/06/0021-615x450.jpg\",615,450,true]}'),(7049,581,'stm_day_16','1'),(7050,3966,'stm_day_16','1');
/*!40000 ALTER TABLE `wpew_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_posts`
--

DROP TABLE IF EXISTS `wpew_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_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_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=3980 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_posts`
--

LOCK TABLES `wpew_posts` WRITE;
/*!40000 ALTER TABLE `wpew_posts` DISABLE KEYS */;
INSERT INTO `wpew_posts` VALUES (2642,1,'2021-05-13 22:44:50','2021-05-13 22:44:50','','Property Listings','','publish','closed','closed','','rentex-listing-type','','','2021-06-23 07:12:16','2021-06-23 07:12:16','',0,'https://om7717.dev34.info/listing_type/rentex-listing-type/',0,'listing_type','',0),(2643,1,'2021-05-13 22:44:50','2021-05-13 22:44:50','','Properties','','publish','closed','closed','','properties','','','2021-06-23 04:35:59','2021-06-23 04:35:59','',0,'https://om7717.dev34.info/rentex-listing-type/',0,'page','',0),(2,1,'2021-05-13 20:32:38','2021-05-13 20:32:38','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://om7717.dev34.info/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2021-05-13 20:32:38','2021-05-13 20:32:38','',0,'https://om7717.dev34.info/?page_id=2',0,'page','',0),(3,1,'2021-05-13 20:32:38','2021-05-13 20:32:38','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://om7717.dev34.info.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-05-13 20:32:38','2021-05-13 20:32:38','',0,'https://om7717.dev34.info/?page_id=3',0,'page','',0),(6,1,'2021-05-13 20:37:46','2021-05-13 20:37:46','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@om7717.dev34.info>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[_site_admin_email]\nReply-To: [your-email]\n\n0\n0\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@om7717.dev34.info>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\n[your-email]\nReply-To: [_site_admin_email]\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2021-05-13 20:37:46','2021-05-13 20:37:46','',0,'https://om7717.dev34.info/?post_type=wpcf7_contact_form&p=6',0,'wpcf7_contact_form','',0),(47,1,'2020-05-21 08:13:20','2020-05-21 08:13:20','','placeholder','','inherit','open','closed','','placeholder','','','2020-05-21 08:13:20','2020-05-21 08:13:20','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg',0,'attachment','image/jpeg',0),(195,1,'2020-05-25 04:21:55','2020-05-25 04:21:55','','favicon','','inherit','open','closed','','favicon','','','2020-05-25 04:21:55','2020-05-25 04:21:55','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/favicon.png',0,'attachment','image/png',0),(196,1,'2020-05-25 04:22:03','2020-05-25 04:22:03','https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/cropped-favicon.png','cropped-favicon.png','','inherit','open','closed','','cropped-favicon-png','','','2020-05-25 04:22:03','2020-05-25 04:22:03','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/cropped-favicon.png',0,'attachment','image/png',0),(198,1,'2020-05-25 04:29:51','2020-05-25 04:29:51','','logo','','inherit','open','closed','','logo','','','2020-05-25 04:29:51','2020-05-25 04:29:51','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/logo.svg',0,'attachment','image/svg+xml',0),(226,1,'2020-05-25 07:30:34','2020-05-25 07:30:34','','h1_img1','','inherit','open','closed','','h1_img1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h1_img1.jpg',0,'attachment','image/jpeg',0),(235,1,'2020-05-25 07:48:39','2020-05-25 07:48:39','','floorplan-01','','inherit','open','closed','','floorplan-01','','','2020-05-25 07:48:39','2020-05-25 07:48:39','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/floorplan-01.jpg',0,'attachment','image/jpeg',0),(245,1,'2020-05-25 08:14:25','2020-05-25 08:14:25','','brand-1','','inherit','open','closed','','brand-1','','','2020-05-25 08:14:25','2020-05-25 08:14:25','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/brand-1.png',0,'attachment','image/png',0),(246,1,'2020-05-25 08:14:26','2020-05-25 08:14:26','','brand-2','','inherit','open','closed','','brand-2','','','2020-05-25 08:14:26','2020-05-25 08:14:26','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/brand-2.png',0,'attachment','image/png',0),(247,1,'2020-05-25 08:14:27','2020-05-25 08:14:27','','brand-3','','inherit','open','closed','','brand-3','','','2020-05-25 08:14:27','2020-05-25 08:14:27','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/brand-3.png',0,'attachment','image/png',0),(248,1,'2020-05-25 08:14:28','2020-05-25 08:14:28','','brand-4','','inherit','open','closed','','brand-4','','','2020-05-25 08:14:28','2020-05-25 08:14:28','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/brand-4.png',0,'attachment','image/png',0),(249,1,'2020-05-25 08:14:29','2020-05-25 08:14:29','','brand-5','','inherit','open','closed','','brand-5','','','2020-05-25 08:14:29','2020-05-25 08:14:29','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/brand-5.png',0,'attachment','image/png',0),(250,1,'2020-05-25 08:14:30','2020-05-25 08:14:30','','brand-6','','inherit','open','closed','','brand-6','','','2020-05-25 08:14:30','2020-05-25 08:14:30','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/brand-6.png',0,'attachment','image/png',0),(272,1,'2020-05-25 08:52:02','2020-05-25 08:52:02','','h1_find-1','','inherit','open','closed','','h1_find-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h1_find-1.jpg',0,'attachment','image/jpeg',0),(273,1,'2020-05-25 08:52:04','2020-05-25 08:52:04','','h1_find-2','','inherit','open','closed','','h1_find-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h1_find-2.jpg',0,'attachment','image/jpeg',0),(274,1,'2020-05-25 08:52:06','2020-05-25 08:52:06','','h1_find-3','','inherit','open','closed','','h1_find-3','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h1_find-3.jpg',0,'attachment','image/jpeg',0),(275,1,'2020-05-25 08:52:07','2020-05-25 08:52:07','','h1_find-4','','inherit','open','closed','','h1_find-4','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h1_find-4.jpg',0,'attachment','image/jpeg',0),(276,1,'2020-05-25 08:52:09','2020-05-25 08:52:09','','h1_find-5','','inherit','open','closed','','h1_find-5','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h1_find-5.jpg',0,'attachment','image/jpeg',0),(277,1,'2020-05-25 08:52:10','2020-05-25 08:52:10','','h1_find-6','','inherit','open','closed','','h1_find-6','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h1_find-6.jpg',0,'attachment','image/jpeg',0),(286,1,'2020-05-25 08:59:05','2020-05-25 08:59:05','','h1_img2','','inherit','open','closed','','h1_img2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h1_img2.jpg',0,'attachment','image/jpeg',0),(317,1,'2020-05-25 09:25:58','2020-05-25 09:25:58','','revslider-h1','','inherit','open','closed','','revslider-h1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/revslider-h1.jpg',0,'attachment','image/jpeg',0),(349,1,'2020-05-26 01:43:44','2020-05-26 01:43:44','','h2_img1','','inherit','open','closed','','h2_img1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',343,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h2_img1.jpg',0,'attachment','image/jpeg',0),(358,1,'2020-05-26 01:53:24','2020-05-26 01:53:24','','bg-newsletter','','inherit','open','closed','','bg-newsletter','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',326,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/bg-newsletter.jpg',0,'attachment','image/jpeg',0),(361,1,'2020-05-26 01:58:34','2020-05-26 01:58:34','','image-footer','','inherit','open','closed','','image-footer','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',326,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/image-footer.png',0,'attachment','image/png',0),(383,1,'2020-05-26 02:19:23','2020-05-26 02:19:23','','h2_bg-video','','inherit','open','closed','','h2_bg-video','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',343,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h2_bg-video.jpg',0,'attachment','image/jpeg',0),(391,1,'2020-05-26 02:52:04','2020-05-26 02:52:04','','revslider-h2','','inherit','open','closed','','revslider-h2','','','2020-05-26 02:52:04','2020-05-26 02:52:04','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/revslider-h2.jpg',0,'attachment','image/jpeg',0),(392,1,'2020-05-26 03:07:44','2020-05-26 03:07:44','','floorplans01','','inherit','open','closed','','floorplans01','','','2020-05-26 03:07:44','2020-05-26 03:07:44','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/floorplans01.jpg',0,'attachment','image/jpeg',0),(393,1,'2020-05-26 03:07:49','2020-05-26 03:07:49','','floorplans02','','inherit','open','closed','','floorplans02','','','2020-05-26 03:07:49','2020-05-26 03:07:49','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/floorplans02.jpg',0,'attachment','image/jpeg',0),(394,1,'2020-05-26 03:07:52','2020-05-26 03:07:52','','floorplans03','','inherit','open','closed','','floorplans03','','','2020-05-26 03:07:52','2020-05-26 03:07:52','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/floorplans03.jpg',0,'attachment','image/jpeg',0),(397,1,'2020-05-27 02:48:21','2020-05-27 02:48:21','','revslider-h3','','inherit','open','closed','','revslider-h3','','','2020-05-27 02:48:21','2020-05-27 02:48:21','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/revslider-h3.jpg',0,'attachment','image/jpeg',0),(403,1,'2020-05-27 07:27:42','2020-05-27 07:27:42','','h2_bg-1','','inherit','open','closed','','h2_bg-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',343,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h2_bg-1.jpg',0,'attachment','image/jpeg',0),(421,1,'2020-05-27 08:18:49','2020-05-27 08:18:49','','h2_bg-2','','inherit','open','closed','','h2_bg-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',343,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h2_bg-2.jpg',0,'attachment','image/jpeg',0),(442,1,'2020-05-28 02:06:24','2020-05-28 02:06:24','','h3_bg-1','','inherit','open','closed','','h3_bg-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',398,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h3_bg-1.jpg',0,'attachment','image/jpeg',0),(452,1,'2020-05-28 02:17:27','2020-05-28 02:17:27','','h3_bg-2','','inherit','open','closed','','h3_bg-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',398,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/h3_bg-2.jpg',0,'attachment','image/jpeg',0),(459,1,'2020-05-28 03:10:35','2020-05-28 03:10:35','','services-1','Service 1','inherit','open','closed','','services-1','','','2020-05-28 03:10:35','2020-05-28 03:10:35','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/services-1.jpg',0,'attachment','image/jpeg',0),(476,1,'2020-05-28 08:03:28','2020-05-28 08:03:28','','services-2','Service 2','inherit','open','closed','','services-2','','','2020-05-28 08:03:28','2020-05-28 08:03:28','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/services-2.jpg',0,'attachment','image/jpeg',0),(477,1,'2020-05-28 08:03:31','2020-05-28 08:03:31','','services-3','Service 3','inherit','open','closed','','services-3','','','2020-05-28 08:03:31','2020-05-28 08:03:31','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/services-3.jpg',0,'attachment','image/jpeg',0),(478,1,'2020-05-28 08:03:33','2020-05-28 08:03:33','','services-4','Service 4','inherit','open','closed','','services-4','','','2020-05-28 08:03:33','2020-05-28 08:03:33','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/services-4.jpg',0,'attachment','image/jpeg',0),(595,1,'2020-06-02 01:58:29','2020-06-02 01:58:29','','image-about','','inherit','open','closed','','image-about','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',581,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/image-about.jpg',0,'attachment','image/jpeg',0),(605,1,'2020-06-02 02:13:37','2020-06-02 02:13:37','','parallax-about','','inherit','open','closed','','parallax-about','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',581,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/parallax-about.jpg',0,'attachment','image/jpeg',0),(743,1,'2020-06-04 07:19:04','2020-06-04 07:19:04','','slider1-h7','','inherit','open','closed','','slider1-h7','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',739,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/slider1-h7.jpg',0,'attachment','image/jpeg',0),(756,1,'2020-06-04 07:50:25','2020-06-04 07:50:25','','h4_bg-1','','inherit','open','closed','','h4_bg-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',754,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h4_bg-1.jpg',0,'attachment','image/jpeg',0),(792,1,'2020-06-04 08:38:57','2020-06-04 08:38:57','','h4_img-1','','inherit','open','closed','','h4_img-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',754,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h4_img-1.jpg',0,'attachment','image/jpeg',0),(795,1,'2020-06-04 08:40:16','2020-06-04 08:40:16','','image1-h7','','inherit','open','closed','','image1-h7','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',739,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/image1-h7.jpg',0,'attachment','image/jpeg',0),(818,1,'2020-06-04 09:19:31','2020-06-04 09:19:31','','bg1-h7','','inherit','open','closed','','bg1-h7','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',739,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/bg1-h7.png',0,'attachment','image/png',0),(834,1,'2020-06-04 09:51:41','2020-06-04 09:51:41','','avatar-4','','inherit','open','closed','','avatar-4','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',754,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/avatar-4.jpg',0,'attachment','image/jpeg',0),(835,1,'2020-06-04 09:51:59','2020-06-04 09:51:59','','avatar-1','','inherit','open','closed','','avatar-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',754,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/avatar-1.jpg',0,'attachment','image/jpeg',0),(852,1,'2020-06-05 02:04:07','2020-06-05 02:04:07','','parallax-h8','','inherit','open','closed','','parallax-h8','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',848,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/parallax-h8.jpg',0,'attachment','image/jpeg',0),(858,1,'2020-06-05 02:33:34','2020-06-05 02:33:34','','avatar-10','','inherit','open','closed','','avatar-10','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',625,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/avatar-10.jpg',0,'attachment','image/jpeg',0),(894,1,'2020-06-05 10:01:32','2020-06-05 10:01:32','','h5_img-1','','inherit','open','closed','','h5_img-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_img-1.jpg',0,'attachment','image/jpeg',0),(895,1,'2020-06-05 10:01:35','2020-06-05 10:01:35','','h5_img-2','','inherit','open','closed','','h5_img-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_img-2.jpg',0,'attachment','image/jpeg',0),(896,1,'2020-06-05 10:01:37','2020-06-05 10:01:37','','h5_img-3','','inherit','open','closed','','h5_img-3','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_img-3.jpg',0,'attachment','image/jpeg',0),(901,1,'2020-06-05 10:08:06','2020-06-05 10:08:06','','h5_shape-1','','inherit','open','closed','','h5_shape-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_shape-1.jpg',0,'attachment','image/jpeg',0),(902,1,'2020-06-05 10:08:08','2020-06-05 10:08:08','','h5_shape-2','','inherit','open','closed','','h5_shape-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_shape-2.jpg',0,'attachment','image/jpeg',0),(915,1,'2020-06-05 10:29:08','2020-06-05 10:29:08','','h5_bg','','inherit','open','closed','','h5_bg','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_bg.jpg',0,'attachment','image/jpeg',0),(930,1,'2020-06-06 01:50:38','2020-06-06 01:50:38','','slider1-h9','','inherit','open','closed','','slider1-h9','','','2020-06-06 01:50:38','2020-06-06 01:50:38','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/slider1-h9.jpg',0,'attachment','image/jpeg',0),(948,1,'2020-06-06 02:20:48','2020-06-06 02:20:48','','image1-h9','','inherit','open','closed','','image1-h9','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',875,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/image1-h9.jpg',0,'attachment','image/jpeg',0),(951,1,'2020-06-06 02:27:14','2020-06-06 02:27:14','','h5_bg-1','','inherit','open','closed','','h5_bg-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_bg-1.jpg',0,'attachment','image/jpeg',0),(960,1,'2020-06-06 02:34:04','2020-06-06 02:34:04','','h5_bg-2','','inherit','open','closed','','h5_bg-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_bg-2.jpg',0,'attachment','image/jpeg',0),(961,1,'2020-06-06 02:34:07','2020-06-06 02:34:07','','h5_bg-3','','inherit','open','closed','','h5_bg-3','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_bg-3.jpg',0,'attachment','image/jpeg',0),(972,1,'2020-06-06 02:52:18','2020-06-06 02:52:18','','h5_bg-4','','inherit','open','closed','','h5_bg-4','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',881,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h5_bg-4.jpg',0,'attachment','image/jpeg',0),(999,1,'2020-06-06 03:22:32','2020-06-06 03:22:32','','h6_bg1','','inherit','open','closed','','h6_bg1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',883,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h6_bg1.jpg',0,'attachment','image/jpeg',0),(1042,1,'2020-06-06 09:12:19','2020-06-06 09:12:19','','wide_range','','inherit','open','closed','','wide_range','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',883,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/wide_range.svg',0,'attachment','image/svg+xml',0),(1047,1,'2020-06-06 09:24:06','2020-06-06 09:24:06','','financing','','inherit','open','closed','','financing','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',883,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/financing.svg',0,'attachment','image/svg+xml',0),(1048,1,'2020-06-06 09:24:07','2020-06-06 09:24:07','','trust','','inherit','open','closed','','trust','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',883,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/trust.svg',0,'attachment','image/svg+xml',0),(1064,1,'2020-06-06 10:19:08','2020-06-06 10:19:08','','h6_bg2','','inherit','open','closed','','h6_bg2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',883,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h6_bg2.jpg',0,'attachment','image/jpeg',0),(1091,1,'2020-06-08 03:12:24','2020-06-08 03:12:24','','avatar-2','','inherit','open','closed','','avatar-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/avatar-2.jpg',0,'attachment','image/jpeg',0),(1092,1,'2020-06-08 03:12:26','2020-06-08 03:12:26','','avatar-3','','inherit','open','closed','','avatar-3','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/avatar-3.jpg',0,'attachment','image/jpeg',0),(1093,1,'2020-06-08 03:12:26','2020-06-08 03:12:26','','avatar-5','','inherit','open','closed','','avatar-5','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/avatar-5.jpg',0,'attachment','image/jpeg',0),(1094,1,'2020-06-08 03:12:27','2020-06-08 03:12:27','','avatar-6','','inherit','open','closed','','avatar-6','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/avatar-6.jpg',0,'attachment','image/jpeg',0),(1116,1,'2020-06-08 07:36:58','2020-06-08 07:36:58','','buy_a_home','','inherit','open','closed','','buy_a_home','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/buy_a_home.svg',0,'attachment','image/svg+xml',0),(1118,1,'2020-06-08 07:39:39','2020-06-08 07:39:39','','neighborhoods','','inherit','open','closed','','neighborhoods','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/neighborhoods.svg',0,'attachment','image/svg+xml',0),(1119,1,'2020-06-08 07:39:40','2020-06-08 07:39:40','','rent_a_home','','inherit','open','closed','','rent_a_home','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/rent_a_home.svg',0,'attachment','image/svg+xml',0),(1333,1,'2020-06-15 04:01:39','2020-06-15 04:01:39','','bg1-h7','','inherit','open','closed','','bg1-h7-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',739,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/bg1-h7.jpg',0,'attachment','image/jpeg',0),(1349,1,'2020-06-15 04:26:21','2020-06-15 04:26:21','','region1-h9','','inherit','open','closed','','region1-h9','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',875,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/region1-h9.jpg',0,'attachment','image/jpeg',0),(1353,1,'2020-06-15 04:33:39','2020-06-15 04:33:39','','region3-h9','','inherit','open','closed','','region3-h9','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',875,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/region3-h9.jpg',0,'attachment','image/jpeg',0),(1354,1,'2020-06-15 04:33:40','2020-06-15 04:33:40','','region4-h9','','inherit','open','closed','','region4-h9','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',875,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/region4-h9.jpg',0,'attachment','image/jpeg',0),(1359,1,'2020-06-15 06:51:39','2020-06-15 06:51:39','','region2-h9','','inherit','open','closed','','region2-h9','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',875,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/region2-h9.jpg',0,'attachment','image/jpeg',0),(1360,1,'2020-06-15 06:51:40','2020-06-15 06:51:40','','region5-h9','','inherit','open','closed','','region5-h9','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',875,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/region5-h9.jpg',0,'attachment','image/jpeg',0),(1405,1,'2020-06-16 02:10:45','2020-06-16 02:10:45','','banner1-h8','','inherit','open','closed','','banner1-h8','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',848,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/banner1-h8.jpg',0,'attachment','image/jpeg',0),(1411,1,'2020-06-16 03:50:09','2020-06-16 03:50:09','','slider1-h10','','inherit','open','closed','','slider1-h10','','','2020-06-16 03:50:09','2020-06-16 03:50:09','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/slider1-h10.jpg',0,'attachment','image/jpeg',0),(1415,1,'2020-06-16 03:55:06','2020-06-16 03:55:06','','banner1-h10','','inherit','open','closed','','banner1-h10','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',1408,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/banner1-h10.jpg',0,'attachment','image/jpeg',0),(1427,1,'2020-06-16 06:27:08','2020-06-16 06:27:08','','banner2-h10','','inherit','open','closed','','banner2-h10','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',1408,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/banner2-h10.jpg',0,'attachment','image/jpeg',0),(1428,1,'2020-06-16 06:27:10','2020-06-16 06:27:10','','banner3-h10','','inherit','open','closed','','banner3-h10','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',1408,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/banner3-h10.jpg',0,'attachment','image/jpeg',0),(1442,1,'2020-06-16 06:44:44','2020-06-16 06:44:44','','banner4-h10','','inherit','open','closed','','banner4-h10','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',1408,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/banner4-h10.jpg',0,'attachment','image/jpeg',0),(1581,1,'2020-06-22 01:35:18','2020-06-22 01:35:18','','logo-light','','inherit','open','closed','','logo-light','','','2020-06-22 01:35:18','2020-06-22 01:35:18','',0,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/logo-light.png',0,'attachment','image/png',0),(1789,1,'2020-06-24 03:00:03','2020-06-24 03:00:03','','image-footer4','','inherit','open','closed','','image-footer4','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',1771,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/image-footer4.png',0,'attachment','image/png',0),(1888,1,'2020-06-26 03:44:25','2020-06-26 03:44:25','','h3_img-1','','inherit','open','closed','','h3_img-1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',398,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h3_img-1.jpg',0,'attachment','image/jpeg',0),(1889,1,'2020-06-26 03:44:26','2020-06-26 03:44:26','','h3_img-2','','inherit','open','closed','','h3_img-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',398,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h3_img-2.jpg',0,'attachment','image/jpeg',0),(1890,1,'2020-06-26 03:44:26','2020-06-26 03:44:26','','h3_img-3','','inherit','open','closed','','h3_img-3','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',398,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h3_img-3.jpg',0,'attachment','image/jpeg',0),(1891,1,'2020-06-26 03:44:27','2020-06-26 03:44:27','','h3_img-4','','inherit','open','closed','','h3_img-4','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',398,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h3_img-4.jpg',0,'attachment','image/jpeg',0),(1892,1,'2020-06-26 03:44:28','2020-06-26 03:44:28','','h3_img-5','','inherit','open','closed','','h3_img-5','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',398,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/06/h3_img-5.jpg',0,'attachment','image/jpeg',0),(2039,1,'2020-07-02 01:46:40','2020-07-02 01:46:40','','h6_find-8','','inherit','open','closed','','h6_find-8','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',883,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/h6_find-8.jpg',0,'attachment','image/jpeg',0),(2041,1,'2020-07-02 01:47:03','2020-07-02 01:47:03','','h6_find-7','','inherit','open','closed','','h6_find-7','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',883,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/h6_find-7.jpg',0,'attachment','image/jpeg',0),(2366,1,'2020-07-13 02:28:33','2020-07-13 02:28:33','','bg-videoh7','','inherit','open','closed','','bg-videoh7','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',739,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/bg-videoh7.jpg',0,'attachment','image/jpeg',0),(2372,1,'2020-07-13 07:34:16','2020-07-13 07:34:16','','h3_img-6.','','inherit','open','closed','','h3_img-6','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',398,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/h3_img-6..jpg',0,'attachment','image/jpeg',0),(2373,1,'2020-07-13 07:34:17','2020-07-13 07:34:17','','h3_img-7.','','inherit','open','closed','','h3_img-7','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',398,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/h3_img-7..jpg',0,'attachment','image/jpeg',0),(2378,1,'2020-07-13 08:18:52','2020-07-13 08:18:52','','region6-h9','','inherit','open','closed','','region6-h9','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',875,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/region6-h9.jpg',0,'attachment','image/jpeg',0),(2379,1,'2020-07-13 08:18:52','2020-07-13 08:18:52','','region7-h9','','inherit','open','closed','','region7-h9','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',875,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/region7-h9.jpg',0,'attachment','image/jpeg',0),(2478,1,'2020-07-17 04:03:24','2020-07-17 04:03:24','','about-us','','inherit','open','closed','','about-us-2','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',581,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/about-us.jpg',0,'attachment','image/jpeg',0),(2514,1,'2020-07-20 07:49:43','2020-07-20 07:49:43','','h1-bg1','','inherit','open','closed','','h1-bg1','','','2021-05-13 22:44:46','2021-05-13 22:44:46','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/h1-bg1.jpg',0,'attachment','image/jpeg',0),(2515,1,'2020-05-11 03:21:38','2020-05-11 03:21:38','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://demo2wpopal.b-cdn.net/rentex/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page-2','','','2020-05-11 03:21:38','2020-05-11 03:21:38','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=2',0,'page','',0),(2516,1,'2020-05-11 03:21:38','2020-05-11 03:21:38','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: https://demo2wpopal.b-cdn.net/rentex.</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-05-11 03:21:38','2020-05-11 03:21:38','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=3',0,'page','',0),(5,1,'2020-05-11 03:28:48','2020-05-11 03:28:48','','Account','','publish','closed','closed','','account','','','2020-05-11 03:28:48','2020-05-11 03:28:48','',0,'https://demo2wpopal.b-cdn.net/rentex/account/',0,'page','',0),(2517,1,'2020-05-11 03:28:48','2020-05-11 03:28:48','','AddListing','','publish','closed','closed','','addlisting','','','2020-05-11 03:28:48','2020-05-11 03:28:48','',0,'https://demo2wpopal.b-cdn.net/rentex/addlisting/',0,'page','',0),(2518,1,'2020-05-11 03:28:48','2020-05-11 03:28:48','','Pricing Plan','','publish','closed','closed','','pricing-plan','','','2020-05-11 03:28:48','2020-05-11 03:28:48','',0,'https://demo2wpopal.b-cdn.net/rentex/pricing-plan/',0,'page','',0),(8,1,'2020-05-11 03:28:48','2020-05-11 03:28:48','','Wishlist','','publish','closed','closed','','wishlist','','','2020-05-11 03:28:48','2020-05-11 03:28:48','',0,'https://demo2wpopal.b-cdn.net/rentex/wishlist/',0,'page','',0),(57,1,'2020-05-21 08:17:02','2020-05-21 08:17:02','Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy.<!--more-->\n\nSocial currency pipeline. Churning anomalies cannibalize this vendor is incompetent cross-pollination. When does this sunset? no scraps hit the floor ramp up put a record on and see who dances, so critical mass. Digital literacy it’s a simple lift and shift job. Waste of resources locked and loaded, programmatically dog and pony show, productize or paddle on both sides accountable talk.\n\nRace without a finish line this is not the hill i want to die on work flows , but deliverables, so low-hanging fruit blue sky thinking. Run it up the flag pole red flag. Diversify kpis get buy-in organic growth.\n\n<!-- [if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<audio id=\"audio-4003-1\" class=\"wp-audio-shortcode\" style=\"width: 100%;\" preload=\"none\" controls=\"controls\"><source type=\"audio/mpeg\" src=\"#wp-content/uploads/2018/11/audio.mp3?_=1\"><a href=\"#wp-content/uploads/2018/11/audio.mp3\">#wp-content/uploads/2018/11/audio.mp3</a></audio>\n<h4>Mosaic gallery fringilla velaliquet nec</h4>\n<figure class=\"wp-block-pullquote is-style-solid-color\">\n<blockquote class=\"wp-block-quote has-text-color has-very-dark-gray-color\">This successful response to the Clever Hands test highlights a potential for hypnosis in “treating addictions or compulsive behaviours, where people don’t feel like they’re able to inhibit very ingrained responses\n\n<cite>said Polito</cite></blockquote>\n</figure>\nThose options are already baked in with this model race without a finish line value-added, so curate, nor prethink deploy. On your plate personal development it’s about managing expectations or run it up the flag pole but fire up your browser put a record on and see who dances. Out of the loop peel the onion we need to start advertising on social media. Pipeline bottleneck mice or run it up the flag pole, beef up, but run it up the flagpole quick win.\n\nWe are running out of runway touch base we need to touch base off-line before we fire the new ux experience. In an ideal world we just need to put these last issues to bed. No scraps hit the floor I just wanted to give you a heads-up, so three-martini lunch. Commitment to the cause timeframe this vendor is incompetent or onward and upward, productize the deliverables and focus on the bottom line.','Retail banks wake up to digital lending this year','<p>Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy. Social [&hellip;]</p>\n','publish','open','open','','retail-banks-wake-up-to-digital-lending-this-year','','','2020-05-21 08:17:02','2020-05-21 08:17:02','',0,'https://demo2wpopal.b-cdn.net/rentex/retail-banks-wake-up-to-digital-lending-this-year/',0,'post','',3),(58,1,'2020-05-21 08:17:02','2020-05-21 08:17:02','Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy.<!--more-->\n\nSocial currency pipeline. Churning anomalies cannibalize this vendor is incompetent cross-pollination. When does this sunset? no scraps hit the floor ramp up put a record on and see who dances, so critical mass. Digital literacy it’s a simple lift and shift job. Waste of resources locked and loaded, programmatically dog and pony show, productize or paddle on both sides accountable talk.\n\nRace without a finish line this is not the hill i want to die on work flows , but deliverables, so low-hanging fruit blue sky thinking. Run it up the flag pole red flag. Diversify kpis get buy-in organic growth.\n\n<!-- [if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<audio id=\"audio-4003-1\" class=\"wp-audio-shortcode\" style=\"width: 100%;\" preload=\"none\" controls=\"controls\"><source type=\"audio/mpeg\" src=\"#wp-content/uploads/2018/11/audio.mp3?_=1\"><a href=\"#wp-content/uploads/2018/11/audio.mp3\">#wp-content/uploads/2018/11/audio.mp3</a></audio>\n<h4>Mosaic gallery fringilla velaliquet nec</h4>\n<figure class=\"wp-block-pullquote is-style-solid-color\">\n<blockquote class=\"wp-block-quote has-text-color has-very-dark-gray-color\">This successful response to the Clever Hands test highlights a potential for hypnosis in “treating addictions or compulsive behaviours, where people don’t feel like they’re able to inhibit very ingrained responses\n\n<cite>said Polito</cite></blockquote>\n</figure>\nThose options are already baked in with this model race without a finish line value-added, so curate, nor prethink deploy. On your plate personal development it’s about managing expectations or run it up the flag pole but fire up your browser put a record on and see who dances. Out of the loop peel the onion we need to start advertising on social media. Pipeline bottleneck mice or run it up the flag pole, beef up, but run it up the flagpole quick win.\n\nWe are running out of runway touch base we need to touch base off-line before we fire the new ux experience. In an ideal world we just need to put these last issues to bed. No scraps hit the floor I just wanted to give you a heads-up, so three-martini lunch. Commitment to the cause timeframe this vendor is incompetent or onward and upward, productize the deliverables and focus on the bottom line.','Strategic and commercial approach with issues','<p>Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy. Social [&hellip;]</p>\n','publish','open','open','','strategic-and-commercial-approach-with-issues','','','2020-05-21 08:17:02','2020-05-21 08:17:02','',0,'https://demo2wpopal.b-cdn.net/rentex/strategic-and-commercial-approach-with-issues/',0,'post','',3),(59,1,'2020-05-21 08:17:02','2020-05-21 08:17:02','Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy.<!--more-->\n\nSocial currency pipeline. Churning anomalies cannibalize this vendor is incompetent cross-pollination. When does this sunset? no scraps hit the floor ramp up put a record on and see who dances, so critical mass. Digital literacy it’s a simple lift and shift job. Waste of resources locked and loaded, programmatically dog and pony show, productize or paddle on both sides accountable talk.\n\nRace without a finish line this is not the hill i want to die on work flows , but deliverables, so low-hanging fruit blue sky thinking. Run it up the flag pole red flag. Diversify kpis get buy-in organic growth.\n\n<!-- [if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<audio id=\"audio-4003-1\" class=\"wp-audio-shortcode\" style=\"width: 100%;\" preload=\"none\" controls=\"controls\"><source type=\"audio/mpeg\" src=\"#wp-content/uploads/2018/11/audio.mp3?_=1\"><a href=\"#wp-content/uploads/2018/11/audio.mp3\">#wp-content/uploads/2018/11/audio.mp3</a></audio>\n<h4>Mosaic gallery fringilla velaliquet nec</h4>\n<figure class=\"wp-block-pullquote is-style-solid-color\">\n<blockquote class=\"wp-block-quote has-text-color has-very-dark-gray-color\">This successful response to the Clever Hands test highlights a potential for hypnosis in “treating addictions or compulsive behaviours, where people don’t feel like they’re able to inhibit very ingrained responses\n\n<cite>said Polito</cite></blockquote>\n</figure>\nThose options are already baked in with this model race without a finish line value-added, so curate, nor prethink deploy. On your plate personal development it’s about managing expectations or run it up the flag pole but fire up your browser put a record on and see who dances. Out of the loop peel the onion we need to start advertising on social media. Pipeline bottleneck mice or run it up the flag pole, beef up, but run it up the flagpole quick win.\n\nWe are running out of runway touch base we need to touch base off-line before we fire the new ux experience. In an ideal world we just need to put these last issues to bed. No scraps hit the floor I just wanted to give you a heads-up, so three-martini lunch. Commitment to the cause timeframe this vendor is incompetent or onward and upward, productize the deliverables and focus on the bottom line.','Within the construction industry as their overdraft','<p>Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy. Social [&hellip;]</p>\n','publish','open','open','','within-the-construction-industry-as-their-overdraft','','','2020-05-21 08:17:02','2020-05-21 08:17:02','',0,'https://demo2wpopal.b-cdn.net/rentex/within-the-construction-industry-as-their-overdraft/',0,'post','',3),(60,1,'2020-05-21 08:17:02','2020-05-21 08:17:02','Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy.<!--more-->\n\nSocial currency pipeline. Churning anomalies cannibalize this vendor is incompetent cross-pollination. When does this sunset? no scraps hit the floor ramp up put a record on and see who dances, so critical mass. Digital literacy it’s a simple lift and shift job. Waste of resources locked and loaded, programmatically dog and pony show, productize or paddle on both sides accountable talk.\n\nRace without a finish line this is not the hill i want to die on work flows , but deliverables, so low-hanging fruit blue sky thinking. Run it up the flag pole red flag. Diversify kpis get buy-in organic growth.\n\n<!-- [if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<audio id=\"audio-4003-1\" class=\"wp-audio-shortcode\" style=\"width: 100%;\" preload=\"none\" controls=\"controls\"><source type=\"audio/mpeg\" src=\"#wp-content/uploads/2018/11/audio.mp3?_=1\"><a href=\"#wp-content/uploads/2018/11/audio.mp3\">#wp-content/uploads/2018/11/audio.mp3</a></audio>\n<h4>Mosaic gallery fringilla velaliquet nec</h4>\n<figure class=\"wp-block-pullquote is-style-solid-color\">\n<blockquote class=\"wp-block-quote has-text-color has-very-dark-gray-color\">This successful response to the Clever Hands test highlights a potential for hypnosis in “treating addictions or compulsive behaviours, where people don’t feel like they’re able to inhibit very ingrained responses\n\n<cite>said Polito</cite></blockquote>\n</figure>\nThose options are already baked in with this model race without a finish line value-added, so curate, nor prethink deploy. On your plate personal development it’s about managing expectations or run it up the flag pole but fire up your browser put a record on and see who dances. Out of the loop peel the onion we need to start advertising on social media. Pipeline bottleneck mice or run it up the flag pole, beef up, but run it up the flagpole quick win.\n\nWe are running out of runway touch base we need to touch base off-line before we fire the new ux experience. In an ideal world we just need to put these last issues to bed. No scraps hit the floor I just wanted to give you a heads-up, so three-martini lunch. Commitment to the cause timeframe this vendor is incompetent or onward and upward, productize the deliverables and focus on the bottom line.','A digital prescription for the pharma industry','<p>Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy. Social [&hellip;]</p>\n','publish','open','open','','a-digital-prescription-for-the-pharma-industry','','','2020-05-21 08:17:02','2020-05-21 08:17:02','',0,'https://demo2wpopal.b-cdn.net/rentex/a-digital-prescription-for-the-pharma-industry/',0,'post','',3),(61,1,'2020-05-21 08:17:02','2020-05-21 08:17:02','Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy.<!--more-->\n\nSocial currency pipeline. Churning anomalies cannibalize this vendor is incompetent cross-pollination. When does this sunset? no scraps hit the floor ramp up put a record on and see who dances, so critical mass. Digital literacy it’s a simple lift and shift job. Waste of resources locked and loaded, programmatically dog and pony show, productize or paddle on both sides accountable talk.\n\nRace without a finish line this is not the hill i want to die on work flows , but deliverables, so low-hanging fruit blue sky thinking. Run it up the flag pole red flag. Diversify kpis get buy-in organic growth.\n\n<!-- [if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<audio id=\"audio-4003-1\" class=\"wp-audio-shortcode\" style=\"width: 100%;\" preload=\"none\" controls=\"controls\"><source type=\"audio/mpeg\" src=\"#wp-content/uploads/2018/11/audio.mp3?_=1\"><a href=\"#wp-content/uploads/2018/11/audio.mp3\">#wp-content/uploads/2018/11/audio.mp3</a></audio>\n<h4>Mosaic gallery fringilla velaliquet nec</h4>\n<figure class=\"wp-block-pullquote is-style-solid-color\">\n<blockquote class=\"wp-block-quote has-text-color has-very-dark-gray-color\">This successful response to the Clever Hands test highlights a potential for hypnosis in “treating addictions or compulsive behaviours, where people don’t feel like they’re able to inhibit very ingrained responses\n\n<cite>said Polito</cite></blockquote>\n</figure>\nThose options are already baked in with this model race without a finish line value-added, so curate, nor prethink deploy. On your plate personal development it’s about managing expectations or run it up the flag pole but fire up your browser put a record on and see who dances. Out of the loop peel the onion we need to start advertising on social media. Pipeline bottleneck mice or run it up the flag pole, beef up, but run it up the flagpole quick win.\n\nWe are running out of runway touch base we need to touch base off-line before we fire the new ux experience. In an ideal world we just need to put these last issues to bed. No scraps hit the floor I just wanted to give you a heads-up, so three-martini lunch. Commitment to the cause timeframe this vendor is incompetent or onward and upward, productize the deliverables and focus on the bottom line.','Harvest great ideas from your company’s best assets','<p>Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy. Social [&hellip;]</p>\n','publish','open','open','','harvest-great-ideas-from-your-companys-best-assets','','','2020-05-21 08:17:02','2020-05-21 08:17:02','',0,'https://demo2wpopal.b-cdn.net/rentex/harvest-great-ideas-from-your-companys-best-assets/',0,'post','',3),(62,1,'2020-05-21 08:17:02','2020-05-21 08:17:02','Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy.<!--more-->\n\nSocial currency pipeline. Churning anomalies cannibalize this vendor is incompetent cross-pollination. When does this sunset? no scraps hit the floor ramp up put a record on and see who dances, so critical mass. Digital literacy it’s a simple lift and shift job. Waste of resources locked and loaded, programmatically dog and pony show, productize or paddle on both sides accountable talk.\n\nRace without a finish line this is not the hill i want to die on work flows , but deliverables, so low-hanging fruit blue sky thinking. Run it up the flag pole red flag. Diversify kpis get buy-in organic growth.\n\n<!-- [if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<audio id=\"audio-4003-1\" class=\"wp-audio-shortcode\" style=\"width: 100%;\" preload=\"none\" controls=\"controls\"><source type=\"audio/mpeg\" src=\"#wp-content/uploads/2018/11/audio.mp3?_=1\"><a href=\"#wp-content/uploads/2018/11/audio.mp3\">#wp-content/uploads/2018/11/audio.mp3</a></audio>\n<h4>Mosaic gallery fringilla velaliquet nec</h4>\n<figure class=\"wp-block-pullquote is-style-solid-color\">\n<blockquote class=\"wp-block-quote has-text-color has-very-dark-gray-color\">This successful response to the Clever Hands test highlights a potential for hypnosis in “treating addictions or compulsive behaviours, where people don’t feel like they’re able to inhibit very ingrained responses\n\n<cite>said Polito</cite></blockquote>\n</figure>\nThose options are already baked in with this model race without a finish line value-added, so curate, nor prethink deploy. On your plate personal development it’s about managing expectations or run it up the flag pole but fire up your browser put a record on and see who dances. Out of the loop peel the onion we need to start advertising on social media. Pipeline bottleneck mice or run it up the flag pole, beef up, but run it up the flagpole quick win.\n\nWe are running out of runway touch base we need to touch base off-line before we fire the new ux experience. In an ideal world we just need to put these last issues to bed. No scraps hit the floor I just wanted to give you a heads-up, so three-martini lunch. Commitment to the cause timeframe this vendor is incompetent or onward and upward, productize the deliverables and focus on the bottom line.','The Gifts We Want to Give in 2018','<p>Show pony game plan, close the loop so what do you feel you would bring to the table if you were hired for this position. Powerpoint Bunny shotgun approach, nor powerPointless. We just need to put these last issues to bed. Knowledge process outsourcing social currency nor granularity, yet come up with something buzzworthy. Social [&hellip;]</p>\n','publish','open','open','','the-gifts-we-want-to-give-in-2018','','','2020-05-21 08:17:02','2020-05-21 08:17:02','',0,'https://demo2wpopal.b-cdn.net/rentex/the-gifts-we-want-to-give-in-2018/',0,'post','',3),(64,1,'2020-05-21 08:18:43','2020-05-21 08:18:43','','Blog','','publish','closed','closed','','blog','','','2020-05-21 08:18:43','2020-05-21 08:18:43','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=64',0,'page','',0),(75,1,'2020-05-25 02:24:10','2020-05-25 02:24:10',' ','','','publish','closed','closed','','75','','','2020-05-25 02:24:10','2020-05-25 02:24:10','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=75',58,'nav_menu_item','',0),(192,1,'2020-05-25 03:55:03','2020-05-25 03:55:03','<!-- wp:paragraph -->\n<p>[rentex-icons-preview]</p>\n<!-- /wp:paragraph -->','Icons','','publish','closed','closed','','icons','','','2020-05-25 03:55:03','2020-05-25 03:55:03','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=192',0,'page','',0),(200,1,'2020-05-25 06:52:00','2020-05-25 06:52:00','','Home 1','','publish','closed','closed','','home-1','','','2020-05-25 06:52:00','2020-05-25 06:52:00','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=200',0,'page','',0),(202,1,'2020-05-25 06:52:06','2020-05-25 06:52:06','','Default Kit','','publish','closed','closed','','default-kit','','','2020-05-25 06:52:06','2020-05-25 06:52:06','',0,'https://demo2wpopal.b-cdn.net/rentex/?elementor_library=default-kit',0,'elementor_library','',0),(234,1,'2020-05-25 07:47:37','2020-05-25 07:47:37','','FooterBuilder 1','','publish','closed','closed','','footerbuilder-1','','','2020-05-25 07:47:37','2020-05-25 07:47:37','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=elementor_library&amp;p=234',0,'elementor_library','',0),(326,1,'2020-05-25 09:30:44','2020-05-25 09:30:44','','FooterBuilder 2','','publish','closed','closed','','footerbuilder-2','','','2020-05-25 09:30:44','2020-05-25 09:30:44','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=elementor_library&amp;p=326',0,'elementor_library','',0),(343,1,'2020-05-26 01:35:29','2020-05-26 01:35:29','','Home 2','','publish','closed','closed','','home-2','','','2020-05-26 01:35:29','2020-05-26 01:35:29','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=343',0,'page','',0),(395,1,'2020-05-26 06:17:44','2020-05-26 06:17:44','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]\nListing \"[your-subject]\"\nListing <wordpress@>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Listing (https://demo2wpopal.b-cdn.net/rentex)\nadmin@admin.com\nReply-To: [your-email]\n\n0\n0\n\nListing \"[your-subject]\"\nListing <wordpress@>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Listing (https://demo2wpopal.b-cdn.net/rentex)\n[your-email]\nReply-To: admin@admin.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1-2','','','2020-05-26 06:17:44','2020-05-26 06:17:44','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=wpcf7_contact_form&amp;p=395',0,'wpcf7_contact_form','',0),(398,1,'2020-05-27 03:00:41','2020-05-27 03:00:41','','Home 3','','publish','closed','closed','','home-3','','','2020-05-27 03:00:41','2020-05-27 03:00:41','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=398',0,'page','',0),(495,1,'2020-05-29 03:11:41','2020-05-29 03:11:41','','Find a Home','','publish','closed','closed','','find-a-home','','','2020-05-29 03:11:41','2020-05-29 03:11:41','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=495',1,'nav_menu_item','',0),(496,1,'2020-05-29 03:11:41','2020-05-29 03:11:41','','Sell a Home','','publish','closed','closed','','sell-a-home','','','2020-05-29 03:11:41','2020-05-29 03:11:41','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=496',2,'nav_menu_item','',0),(497,1,'2020-05-29 03:11:41','2020-05-29 03:11:41','','Become an Agent','','publish','closed','closed','','become-an-agent','','','2020-05-29 03:11:41','2020-05-29 03:11:41','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=497',3,'nav_menu_item','',0),(503,1,'2020-05-29 08:39:05','2020-05-29 08:39:05','','Home','','publish','closed','closed','','home','','','2020-05-29 08:39:05','2020-05-29 08:39:05','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=503',1,'nav_menu_item','',0),(551,1,'2020-06-01 09:42:14','2020-06-01 09:42:14','','Contact Us','','publish','closed','closed','','contact-us','','','2020-06-01 09:42:14','2020-06-01 09:42:14','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=551',0,'page','',0),(581,1,'2020-06-02 01:26:23','2020-06-02 01:26:23','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','About us','','publish','closed','closed','','about-us','','','2021-06-23 04:28:21','2021-06-23 04:28:21','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=581',0,'page','',0),(612,1,'2020-06-02 02:28:44','2020-06-02 02:28:44','','Page','','publish','closed','closed','','page','','','2020-06-02 02:28:44','2020-06-02 02:28:44','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=612',48,'nav_menu_item','',0),(613,1,'2020-06-02 02:28:44','2020-06-02 02:28:44',' ','','','publish','closed','closed','','613','','','2020-06-02 02:28:44','2020-06-02 02:28:44','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=613',57,'nav_menu_item','',0),(614,1,'2020-06-02 02:28:44','2020-06-02 02:28:44',' ','','','publish','closed','closed','','614','','','2020-06-02 02:28:44','2020-06-02 02:28:44','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=614',60,'nav_menu_item','',0),(615,1,'2020-06-02 02:28:44','2020-06-02 02:28:44',' ','','','publish','closed','closed','','615','','','2020-06-02 02:28:44','2020-06-02 02:28:44','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=615',62,'nav_menu_item','',0),(625,1,'2020-06-02 02:41:44','2020-06-02 02:41:44','','Frequently asked questions','','publish','closed','closed','','faqs','','','2020-06-02 02:41:44','2020-06-02 02:41:44','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=625',0,'page','',0),(650,1,'2020-06-02 04:01:14','2020-06-02 04:01:14','<!-- wp:paragraph -->\n<p>$228 a year</p>\n<!-- /wp:paragraph -->','Basic','','publish','closed','closed','','basic','','','2020-06-02 04:01:14','2020-06-02 04:01:14','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=stm_pricing_plans&amp;p=650',0,'stm_pricing_plans','',0),(651,1,'2020-06-02 04:02:15','2020-06-02 04:02:15','<!-- wp:paragraph -->\n<p>$348 a year</p>\n<!-- /wp:paragraph -->','Advanced','','publish','closed','closed','','advanced','','','2020-06-02 04:02:15','2020-06-02 04:02:15','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=stm_pricing_plans&amp;p=651',0,'stm_pricing_plans','',0),(652,1,'2020-06-02 04:02:50','2020-06-02 04:02:50','<!-- wp:paragraph -->\n<p>$468 a year</p>\n<!-- /wp:paragraph -->','Premium','','publish','closed','closed','','premium','','','2020-06-02 04:02:50','2020-06-02 04:02:50','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=stm_pricing_plans&amp;p=652',0,'stm_pricing_plans','',0),(698,1,'2020-06-03 02:15:33','2020-06-03 02:15:33','','404 Page','','publish','closed','closed','','404-page','','','2020-06-03 02:15:33','2020-06-03 02:15:33','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=698',59,'nav_menu_item','',0),(699,1,'2020-06-03 02:16:25','2020-06-03 02:16:25',' ','','','publish','closed','closed','','699','','','2020-06-03 02:16:25','2020-06-03 02:16:25','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=699',43,'nav_menu_item','',0),(739,1,'2020-06-04 07:11:24','2020-06-04 07:11:24','','Home 7','','publish','closed','closed','','home-7','','','2020-06-04 07:11:24','2020-06-04 07:11:24','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=739',0,'page','',0),(754,1,'2020-06-04 07:42:54','2020-06-04 07:42:54','','Home 4','','publish','closed','closed','','home-4','','','2020-06-04 07:42:54','2020-06-04 07:42:54','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=754',0,'page','',0),(848,1,'2020-06-04 10:18:47','2020-06-04 10:18:47','','Home 8','','publish','closed','closed','','home-8','','','2020-06-04 10:18:47','2020-06-04 10:18:47','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=848',0,'page','',0),(875,1,'2020-06-05 04:15:30','2020-06-05 04:15:30','','Home 9','','publish','closed','closed','','home-9','','','2020-06-05 04:15:30','2020-06-05 04:15:30','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=875',0,'page','',0),(881,1,'2020-06-05 09:23:59','2020-06-05 09:23:59','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>All Inclusive Services</h2>		\n		<p>Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class. </p>[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\"                                                                \n                                    Lincoln Jones                                    Valued Client','Home 5','','publish','closed','closed','','home-5','','','2021-07-14 20:41:54','2021-07-14 20:41:54','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=881',0,'page','',0),(883,1,'2020-06-05 09:24:54','2020-06-05 09:24:54','','Home 6','','publish','closed','closed','','home-6','','','2020-06-05 09:24:54','2020-06-05 09:24:54','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=883',0,'page','',0),(1019,1,'2020-06-06 06:40:56','2020-06-06 06:40:56','<div class=\"form-author-wrap\">\r\n  <div class=\"form-field\">\r\n    [text* your-name default:user_display_name placeholder \"Your Name\"]<br>\r\n  </div>\r\n\r\n  <div class=\"form-field\">\r\n    [email* your-email default:user_email placeholder \"Your Email\"]<br>\r\n  </div>\r\n\r\n  <div class=\"form-field\">\r\n    [tel* your-phone placeholder \"Your Phone\"]<br>\r\n  </div>\r\n\r\n  <div class=\"form-field\">\r\n    [textarea your-message x5]<br>\r\n  </div>\r\n\r\n  <div class=\"form-field hidden\">\r\n    [email* author-email default:shortcode_attr]<be>\r\n    [textarea information]<br>\r\n  </div>\r\n\r\n  <div class=\"form-submit\">\r\n    [submit class:btn-block \"Request Details\"]\r\n  </div>\r\n\r\n</div>\n1\nListing \"[your-subject]\"\nListing <wordpress@listing.local:8181>\n[author-email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\nYour phone: [your-phone]\r\n\r\nMessage Body:\r\nHi, \r\n[your-message]\r\n\r\n======\r\n\r\n[information]\r\n\r\nContact me soon[your-phone]\r\n\r\nThanks,\r\n\r\n=======\r\n\r\nThis customer is concerning about the property: \r\nhttps://demo2wpopal.b-cdn.net/rentex/listing/neue-dimensionen-im-schragdach/\nReply-To: [your-email]\n\n\n\n\nListing \"[your-subject]\"\nListing <wordpress@listing.local:8181>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Listing (https://demo2wpopal.b-cdn.net/rentex)\nReply-To: admin@admin.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Agent Contact Form','','publish','closed','closed','','contact-form','','','2020-06-06 06:40:56','2020-06-06 06:40:56','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=wpcf7_contact_form&amp;p=1019',0,'wpcf7_contact_form','',0),(1408,1,'2020-06-16 02:52:23','2020-06-16 02:52:23','','Home 10','','publish','closed','closed','','home-10','','','2020-06-16 02:52:23','2020-06-16 02:52:23','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=1408',0,'page','',0),(1591,1,'2020-06-22 03:26:01','2020-06-22 03:26:01','','FooterBuilder ldp','','publish','closed','closed','','footerbuilder-ldp','','','2020-06-22 03:26:01','2020-06-22 03:26:01','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=elementor_library&amp;p=1591',0,'elementor_library','',0),(1771,1,'2020-06-24 01:52:06','2020-06-24 01:52:06','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"https://om7717.dev34.info/list-your-property/\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Home\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Property Search\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					About\n											</a>\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/contact/\">					Contact\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Terms\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Privacy\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					Access\n											</a>\n									</li>\n						</ul>\n		<p style=\"text-align: center;\">© 2021 Opulent Management. All Rights Reserved.</p>','FooterBuilder 3','','publish','closed','closed','','footerbuilder-3','','','2021-07-04 20:06:01','2021-07-04 20:06:01','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=elementor_library&#038;p=1771',0,'elementor_library','',0),(1839,1,'2020-06-25 02:24:10','2020-06-25 02:24:10','','Agents List','','publish','closed','closed','','agents-list','','','2020-06-25 02:24:10','2020-06-25 02:24:10','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=1839',0,'page','',0),(1841,1,'2020-06-25 02:33:51','2020-06-25 02:33:51','','Agents Grid','','publish','closed','closed','','agents-grid','','','2020-06-25 02:33:51','2020-06-25 02:33:51','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=1841',0,'page','',0),(1843,1,'2020-06-25 02:34:16','2020-06-25 02:34:16','','Agency List','','publish','closed','closed','','agency-list','','','2020-06-25 02:34:16','2020-06-25 02:34:16','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=1843',0,'page','',0),(1963,1,'2020-06-30 03:14:02','2020-06-30 03:14:02','','Compare','','publish','closed','closed','','compare','','','2020-06-30 03:14:02','2020-06-30 03:14:02','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=1963',0,'page','',0),(2105,1,'2020-07-02 06:24:33','2020-07-02 06:24:33','','FAQ\'s','','publish','closed','closed','','faqs','','','2020-07-02 06:24:33','2020-07-02 06:24:33','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=2105',61,'nav_menu_item','',0),(2127,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Home','Home','Home','publish','closed','closed','','home-2','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/home-2/',0,'nav_menu_item','',0),(2128,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Featured Listings','Featured Listings','Featured Listings','publish','closed','closed','','featured-listings','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/featured-listings/',2,'nav_menu_item','',0),(2129,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Property Search','Property Search','Property Search','publish','closed','closed','','property-search','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/property-search/',3,'nav_menu_item','',0),(2130,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Search','Search','Search','publish','closed','closed','','search','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/search/',4,'nav_menu_item','',0),(2131,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Map Search','Map Search','Map Search','publish','closed','closed','','map-search','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/map-search/',5,'nav_menu_item','',0),(2132,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Open Homes','Open Homes','Open Homes','publish','closed','closed','','open-homes','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/open-homes/',6,'nav_menu_item','',0),(2133,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Advanced Search','Advanced Search','Advanced Search','publish','closed','closed','','advanced-search','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/advanced-search/',7,'nav_menu_item','',0),(2134,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Email Alerts','Email Alerts','Email Alerts','publish','closed','closed','','email-alerts','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/email-alerts/',8,'nav_menu_item','',0),(2135,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Communities','Communities','Communities','publish','closed','closed','','communities','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/communities/',9,'nav_menu_item','',0),(2136,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Buyers & Sellers','Buyers & Sellers','Buyers & Sellers','publish','closed','closed','','buyers-sellers','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/buyers-sellers/',10,'nav_menu_item','',0),(2137,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Property Organizer','Property Organizer','Property Organizer','publish','closed','closed','','property-organizer','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/property-organizer/',11,'nav_menu_item','',0),(2138,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Valuation Request','Valuation Request','Valuation Request','publish','closed','closed','','valuation-request','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/valuation-request/',12,'nav_menu_item','',0),(2139,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Contact','Contact','Contact','publish','closed','closed','','contact','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/contact/',13,'nav_menu_item','',0),(2140,1,'2020-07-04 01:39:55','2020-07-04 01:39:55','Mortgage Calculator','Mortgage Calculator','Mortgage Calculator','publish','closed','closed','','mortgage-calculator','','','2020-07-04 01:39:55','2020-07-04 01:39:55','',0,'https://demo2wpopal.b-cdn.net/rentex/mortgage-calculator/',14,'nav_menu_item','',0),(2141,1,'2020-07-04 02:02:32','2020-07-04 02:02:32','<!-- wp:paragraph -->\n<p>[optima_express_search zoom=\"10\"]</p>\n<!-- /wp:paragraph -->','iHomeFinder Map Search','','publish','closed','closed','','ihomefinder-map-search','','','2020-07-04 02:02:32','2020-07-04 02:02:32','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=2141',0,'page','',0),(2143,1,'2020-07-04 02:07:56','2020-07-04 02:07:56','<!-- wp:paragraph -->\n<p>[optima_express_featured displayType=\"grid\" resultsPerPage=\"4\" header=\"false\" includeMap=\"false\" status=\"active\"]</p>\n<!-- /wp:paragraph -->','iHomeFinder Listing Grid','','publish','closed','closed','','ihomefinder-listing-grid','','','2020-07-04 02:07:56','2020-07-04 02:07:56','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=2143',0,'page','',0),(2146,1,'2020-07-04 02:09:59','2020-07-04 02:09:59','<!-- wp:paragraph -->\n<p>[optima_express_featured displayType=\"list\" resultsPerPage=\"4\" header=\"false\" includeMap=\"false\" status=\"active\"]</p>\n<!-- /wp:paragraph -->','iHomeFinder Listing List','','publish','closed','closed','','ihomefinder-listing-list','','','2020-07-04 02:09:59','2020-07-04 02:09:59','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=2146',0,'page','',0),(2149,1,'2020-07-04 02:20:08','2020-07-04 02:20:08','<!-- wp:heading -->\n<h2>Unversal</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>[optima_express_quick_search style=\"universal\"]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Twoline</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>[optima_express_quick_search style=\"twoline\" showPropertyType=\"true\"]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Vertical</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>[optima_express_quick_search style=\"vertical\" showPropertyType=\"true\"]</p>\n<!-- /wp:paragraph -->','iHomeFinder Search Form','','publish','closed','closed','','ihomefinder-search-form','','','2020-07-04 02:20:08','2020-07-04 02:20:08','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=2149',0,'page','',0),(2152,1,'2020-07-04 02:25:08','2020-07-04 02:25:08','<!-- wp:paragraph -->\n<p>[optima_express_valuation_widget style=\"vertical\"]</p>\n<!-- /wp:paragraph -->','iHomeFinder Sell my house form','','publish','closed','closed','','ihomefinder-sell-my-house-form','','','2020-07-04 02:25:08','2020-07-04 02:25:08','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=2152',0,'page','',0),(2154,1,'2020-07-04 02:38:56','2020-07-04 02:38:56','<!-- wp:heading -->\n<h2>Row - 1, Columns - 3</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>[optima_express_gallery_slider rows=\"1\" nav=\"top\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"true\" status=\"active\" maxResults=\"6\"]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Row - 1, Columns - 3</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>[optima_express_gallery_slider rows=\"2\" nav=\"top\" style=\"grid\" columns=\"3\" effect=\"slide\" auto=\"true\" status=\"active\" maxResults=\"12\"]</p>\n<!-- /wp:paragraph -->','iHomeFinder Slider','','publish','closed','closed','','ihomefinder-slider','','','2020-07-04 02:38:56','2020-07-04 02:38:56','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=2154',0,'page','',0),(2157,1,'2020-07-04 02:42:25','2020-07-04 02:42:25','<!-- wp:heading -->\n<h2>Organizer login</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>[optima_express_organizer_login]</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Valuation form</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>[optima_express_valuation_form]</p>\n<!-- /wp:paragraph -->','iHomeFinder Valuation','','publish','closed','closed','','ihomefinder-valuation','','','2020-07-04 02:42:25','2020-07-04 02:42:25','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=2157',0,'page','',0),(2393,1,'2020-07-14 06:34:29','2020-07-14 06:34:29','','Why choose us','','publish','closed','closed','','why-choose-us','','','2020-07-14 06:34:29','2020-07-14 06:34:29','',0,'https://demo2wpopal.b-cdn.net/rentex/?post_type=elementor_library&amp;p=2393',0,'elementor_library','',0),(2450,1,'2020-07-17 02:48:07','2020-07-17 02:48:07','','demo','','publish','closed','closed','','demo','','','2020-07-17 02:48:07','2020-07-17 02:48:07','',0,'https://demo2wpopal.b-cdn.net/rentex/?page_id=2450',0,'page','',0),(2475,1,'2020-07-17 04:02:41','2020-07-17 04:02:41','','Home 3','','publish','closed','closed','','home-3','','','2020-07-17 04:02:41','2020-07-17 04:02:41','',0,'https://demo2wpopal.b-cdn.net/rentex/?elementor_library=home-3',0,'elementor_library','',0),(2519,1,'2020-07-20 08:00:14','2020-07-20 08:00:14','','h1_find-7','','inherit','open','closed','','h1_find-7','','','2020-07-20 08:00:14','2020-07-20 08:00:14','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/h1_find-7.jpg',0,'attachment','image/jpeg',0),(2520,1,'2020-07-20 08:00:16','2020-07-20 08:00:16','','h1_find-8','','inherit','open','closed','','h1_find-8','','','2020-07-20 08:00:16','2020-07-20 08:00:16','',200,'https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/07/h1_find-8.jpg',0,'attachment','image/jpeg',0),(2584,1,'2020-07-28 07:23:54','2020-07-28 07:23:54','','Listing','','publish','closed','closed','','listing-2','','','2020-07-28 07:23:54','2020-07-28 07:23:54','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=2584',12,'nav_menu_item','',0),(2585,1,'2020-07-28 08:44:06','2020-07-28 08:44:06','','Agents','','publish','closed','closed','','agents-2','','','2020-07-28 08:44:06','2020-07-28 08:44:06','',0,'https://demo2wpopal.b-cdn.net/rentex/?p=2585',35,'nav_menu_item','',0),(2638,1,'2020-08-17 02:29:10','2020-08-17 02:29:10','','Listing Type','','publish','closed','closed','','listing-type','','','2020-08-17 02:29:10','2020-08-17 02:29:10','',0,'https://demo2wpopal.b-cdn.net/rentex/listing-type/',12,'nav_menu_item','',0),(2639,1,'2020-08-17 02:29:10','2020-08-17 02:29:10','','Agent Grid','','publish','closed','closed','','agent-grid','','','2020-08-17 02:29:10','2020-08-17 02:29:10','',0,'https://demo2wpopal.b-cdn.net/rentex/agent-grid/',13,'nav_menu_item','',0),(2640,1,'2020-08-17 02:29:11','2020-08-17 02:29:11','','Agent List','','publish','closed','closed','','agent-list','','','2020-08-17 02:29:11','2020-08-17 02:29:11','',0,'https://demo2wpopal.b-cdn.net/rentex/agent-list/',14,'nav_menu_item','',0),(2641,1,'2020-08-17 02:29:11','2020-08-17 02:29:11','','Agent Profile','','publish','closed','closed','','agent-profile','','','2020-08-17 02:29:11','2020-08-17 02:29:11','',0,'https://demo2wpopal.b-cdn.net/rentex/agent-profile/',15,'nav_menu_item','',0),(2650,1,'2021-05-13 22:47:53','2021-05-13 22:47:53','','Default Kit','','publish','closed','closed','','default-kit-2','','','2021-05-13 22:47:53','2021-05-13 22:47:53','',0,'https://om7717.dev34.info/?elementor_library=default-kit-2',0,'elementor_library','',0),(3210,1,'2021-05-28 17:51:43','2021-05-28 17:51:43','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li>\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li>\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li>\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li>\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n												<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />														\n												<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />														\n												<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />														\n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n				0\n				%\n							1 of a Kind Properties\n				0\n				%\n							First Class Service\n				0\n				%\n							Customer Satisfaction\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-28 17:51:43','2021-05-28 17:51:43','',881,'https://om7717.dev34.info/?p=3210',0,'revision','',0),(2802,1,'2021-05-14 07:17:57','2021-05-14 07:17:57','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuySoldVacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            RentVacation Rentals            \n      43 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,900                 <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 07:17:57','2021-05-14 07:17:57','',881,'https://om7717.dev34.info/?p=2802',0,'revision','',0),(2663,1,'2021-05-14 00:10:42','2021-05-14 00:10:42','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:10:42','2021-05-14 00:10:42','',881,'https://om7717.dev34.info/?p=2663',0,'revision','',0),(2656,1,'2021-05-13 22:59:58','2021-05-13 22:59:58','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>welcome</h6>		\n			<h2>The experts international property</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n            <a role=\"button\" href=\"https://www.youtube.com/watch?v=XHOmBV4js_E\" data-effect=\"mfp-zoom-in\">\n                Watch Video            </a>\n										<img width=\"539\" height=\"380\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_img-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_img-1.jpg 539w, https://om7717.dev34.info/wp-content/uploads/2020/06/h5_img-1-300x212.jpg 300w\" sizes=\"(max-width: 539px) 100vw, 539px\" />											\n										<img width=\"100\" height=\"100\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-1.jpg 100w, https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-1-80x80.jpg 80w\" sizes=\"(max-width: 100px) 100vw, 100px\" />											\n										<img width=\"190\" height=\"200\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_img-2.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"430\" height=\"200\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_img-3.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_img-3.jpg 430w, https://om7717.dev34.info/wp-content/uploads/2020/06/h5_img-3-300x140.jpg 300w\" sizes=\"(max-width: 430px) 100vw, 430px\" />											\n										<img width=\"100\" height=\"100\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-2.jpg 100w, https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-2-80x80.jpg 80w\" sizes=\"(max-width: 100px) 100vw, 100px\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>career opportunities</h6>		\n			<h2>Work with us</h2>		\n		We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-1.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-2.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-3.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-4.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-5.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-6.png\" alt=\"\" loading=\"lazy\" /></a>','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-13 22:59:58','2021-05-13 22:59:58','',881,'https://om7717.dev34.info/?p=2656',0,'revision','',0),(2652,1,'2021-05-13 22:58:55','2021-05-13 22:58:55','','Afternoon aerial view of Beverly Hills and Century City buildings and streets in Los Angeles, California.','Afternoon aerial view of Beverly Hills and Century City buildings and streets in Los Angeles, California.','inherit','open','closed','','afternoon-aerial-view-of-beverly-hills-and-century-city-buildings-and-streets-in-los-angeles-california','','','2021-05-13 22:58:55','2021-05-13 22:58:55','',881,'https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17.jpeg',0,'attachment','image/jpeg',0),(2653,1,'2021-05-13 22:59:23','2021-05-13 22:59:23','','water-rescue-1657783_1920','','inherit','open','closed','','water-rescue-1657783_1920','','','2021-05-13 22:59:23','2021-05-13 22:59:23','',881,'https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg',0,'attachment','image/jpeg',0),(2654,1,'2021-05-13 22:59:51','2021-05-13 22:59:51','','sunset-3128170_1920','','inherit','open','closed','','sunset-3128170_1920','','','2021-05-13 22:59:51','2021-05-13 22:59:51','',881,'https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg',0,'attachment','image/jpeg',0),(2655,1,'2021-05-13 22:59:58','2021-05-13 22:59:58','','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-13 22:59:58','2021-05-13 22:59:58','',881,'https://om7717.dev34.info/?p=2655',0,'revision','',0),(2657,1,'2021-05-13 23:01:28','2021-05-13 23:01:28','','beverly-hills-116228_1920','','inherit','open','closed','','beverly-hills-116228_1920','','','2021-05-13 23:01:28','2021-05-13 23:01:28','',881,'https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg',0,'attachment','image/jpeg',0),(2662,1,'2021-05-13 23:06:57','2021-05-13 23:06:57','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>career opportunities</h6>		\n			<h2>Work with us</h2>		\n		We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-13 23:06:57','2021-05-13 23:06:57','',881,'https://om7717.dev34.info/?p=2662',0,'revision','',0),(2659,1,'2021-05-13 23:03:00','2021-05-13 23:03:00','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>welcome</h6>		\n			<h2>The experts international property</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n            <a role=\"button\" href=\"https://www.youtube.com/watch?v=XHOmBV4js_E\" data-effect=\"mfp-zoom-in\">\n                Watch Video            </a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"150\" height=\"150\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/region7-h9-150x150.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/07/region7-h9-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/07/region7-h9-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/07/region7-h9-100x100.jpg 100w\" sizes=\"(max-width: 150px) 100vw, 150px\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>career opportunities</h6>		\n			<h2>Work with us</h2>		\n		We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-1.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-2.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-3.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-4.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-5.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-6.png\" alt=\"\" loading=\"lazy\" /></a>','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-13 23:03:00','2021-05-13 23:03:00','',881,'https://om7717.dev34.info/?p=2659',0,'revision','',0),(2658,1,'2021-05-13 23:01:58','2021-05-13 23:01:58','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>welcome</h6>		\n			<h2>The experts international property</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n            <a role=\"button\" href=\"https://www.youtube.com/watch?v=XHOmBV4js_E\" data-effect=\"mfp-zoom-in\">\n                Watch Video            </a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"100\" height=\"100\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-1.jpg 100w, https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-1-80x80.jpg 80w\" sizes=\"(max-width: 100px) 100vw, 100px\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"100\" height=\"100\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-2.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-2.jpg 100w, https://om7717.dev34.info/wp-content/uploads/2020/06/h5_shape-2-80x80.jpg 80w\" sizes=\"(max-width: 100px) 100vw, 100px\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>career opportunities</h6>		\n			<h2>Work with us</h2>		\n		We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-1.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-2.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-3.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-4.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-5.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-6.png\" alt=\"\" loading=\"lazy\" /></a>','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-13 23:01:58','2021-05-13 23:01:58','',881,'https://om7717.dev34.info/?p=2658',0,'revision','',0),(2661,1,'2021-05-13 23:06:02','2021-05-13 23:06:02','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1500\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17.jpeg 1500w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-1024x683.jpeg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-768x513.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-674x450.jpeg 674w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>career opportunities</h6>		\n			<h2>Work with us</h2>		\n		We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-13 23:06:02','2021-05-13 23:06:02','',881,'https://om7717.dev34.info/?p=2661',0,'revision','',0),(2660,1,'2021-05-13 23:03:47','2021-05-13 23:03:47','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>welcome</h6>		\n			<h2>The experts international property</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n            <a role=\"button\" href=\"https://www.youtube.com/watch?v=XHOmBV4js_E\" data-effect=\"mfp-zoom-in\">\n                Watch Video            </a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1500\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17.jpeg 1500w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-1024x683.jpeg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-768x513.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-674x450.jpeg 674w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>career opportunities</h6>		\n			<h2>Work with us</h2>		\n		We offer the highest level of expertise, service, and integrity. We are the leading real estate agent in Beverly Hills and has helped hundreds of buyers find their dream home.		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-1.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-2.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-3.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-4.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-5.png\" alt=\"\" loading=\"lazy\" /></a>                            \n                                <a href=\"#\"  title=\"Brand Name\"><img width=\"145\" height=\"70\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/brand-6.png\" alt=\"\" loading=\"lazy\" /></a>','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-13 23:03:47','2021-05-13 23:03:47','',881,'https://om7717.dev34.info/?p=2660',0,'revision','',0),(2664,1,'2021-05-14 00:11:41','2021-05-14 00:11:41','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:11:41','2021-05-14 00:11:41','',881,'https://om7717.dev34.info/?p=2664',0,'revision','',0),(2665,1,'2021-05-14 00:14:33','2021-05-14 00:14:33','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:14:33','2021-05-14 00:14:33','',881,'https://om7717.dev34.info/?p=2665',0,'revision','',0),(2666,1,'2021-05-14 00:15:18','2021-05-14 00:15:18','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:15:18','2021-05-14 00:15:18','',881,'https://om7717.dev34.info/?p=2666',0,'revision','',0),(2667,1,'2021-05-14 00:16:50','2021-05-14 00:16:50','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:16:50','2021-05-14 00:16:50','',881,'https://om7717.dev34.info/?p=2667',0,'revision','',0),(2668,1,'2021-05-14 00:18:53','2021-05-14 00:18:53','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:18:53','2021-05-14 00:18:53','',881,'https://om7717.dev34.info/?p=2668',0,'revision','',0),(2669,1,'2021-05-14 00:19:46','2021-05-14 00:19:46','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:19:46','2021-05-14 00:19:46','',881,'https://om7717.dev34.info/?p=2669',0,'revision','',0),(2670,1,'2021-05-14 00:20:53','2021-05-14 00:20:53','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h6>Sign up</h6>		\n			<h2>Newsletter</h2>		\n		For exclusive news and market updates sign up for our newslette		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:20:53','2021-05-14 00:20:53','',881,'https://om7717.dev34.info/?p=2670',0,'revision','',0),(2671,1,'2021-05-14 00:23:13','2021-05-14 00:23:13','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h6>our clients</h6>		\n			<h2>We value<br> relationships</h2>		\n                    0\n                    Satisfied Customers                \n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-1-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"300\" height=\"300\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-150x150.jpg 150w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-80x80.jpg 80w, https://om7717.dev34.info/wp-content/uploads/2020/06/avatar-4-100x100.jpg 100w\" sizes=\"(max-width: 300px) 100vw, 300px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:23:13','2021-05-14 00:23:13','',881,'https://om7717.dev34.info/?p=2671',0,'revision','',0),(2672,1,'2021-05-14 00:23:39','2021-05-14 00:23:39','','golden-badge-shield-with-gold-leaves_1017-30512','','inherit','open','closed','','golden-badge-shield-with-gold-leaves_1017-30512','','','2021-05-14 00:23:39','2021-05-14 00:23:39','',881,'https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg',0,'attachment','image/jpeg',0),(2681,1,'2021-05-14 00:40:33','2021-05-14 00:40:33','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:40:33','2021-05-14 00:40:33','',881,'https://om7717.dev34.info/?p=2681',0,'revision','',0),(2679,1,'2021-05-14 00:34:04','2021-05-14 00:34:04','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:34:04','2021-05-14 00:34:04','',881,'https://om7717.dev34.info/?p=2679',0,'revision','',0),(2678,1,'2021-05-14 00:31:00','2021-05-14 00:31:00','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:31:00','2021-05-14 00:31:00','',881,'https://om7717.dev34.info/?p=2678',0,'revision','',0),(2673,1,'2021-05-14 00:26:54','2021-05-14 00:26:54','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"626\" height=\"626\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg 626w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-300x300.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-150x150.jpeg 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-80x80.jpeg 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-450x450.jpeg 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-100x100.jpeg 100w\" sizes=\"(max-width: 626px) 100vw, 626px\" />            \n                                    Mrs. Clara                                    Las Vegas\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                <img width=\"626\" height=\"626\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg 626w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-300x300.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-150x150.jpeg 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-80x80.jpeg 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-450x450.jpeg 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-100x100.jpeg 100w\" sizes=\"(max-width: 626px) 100vw, 626px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\n                <img width=\"626\" height=\"626\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg 626w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-300x300.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-150x150.jpeg 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-80x80.jpeg 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-450x450.jpeg 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-100x100.jpeg 100w\" sizes=\"(max-width: 626px) 100vw, 626px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!\n                <img width=\"626\" height=\"626\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512.jpeg 626w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-300x300.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-150x150.jpeg 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-80x80.jpeg 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-450x450.jpeg 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/golden-badge-shield-with-gold-leaves_1017-30512-100x100.jpeg 100w\" sizes=\"(max-width: 626px) 100vw, 626px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:26:54','2021-05-14 00:26:54','',881,'https://om7717.dev34.info/?p=2673',0,'revision','',0),(2674,1,'2021-05-14 00:27:27','2021-05-14 00:27:27','','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 00:27:27','2021-05-14 00:27:27','',1771,'https://om7717.dev34.info/?p=2674',0,'revision','',0),(2675,1,'2021-05-14 00:27:27','2021-05-14 00:27:27','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream home</h2>		\n		<p>We help you make the dream of new house a reality</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>for sellers</p>		\n			<h2>Do you want to join<br>\nour network</h2>		\n		<p>Let’s us show you the ropes</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Get Moving\n					</a>\n			<h2>real estate</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Buy\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Sell\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Rent\n											</a>\n									</li>\n						</ul>\n			<h2>About The Agency</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Meet The Agents\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Development Group\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Creates\n											</a>\n									</li>\n						</ul>\n			<h2>connect</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Register an Account\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Daily\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Privacy\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n		© 2020 <a href=\"#\">Rentex</a>. All Rights Reserved.Carefully crafted by <a style=\"color: #ffffff;\" href=\"#\">OpalThemes</a>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 00:27:27','2021-05-14 00:27:27','',1771,'https://om7717.dev34.info/?p=2675',0,'revision','',0),(2676,1,'2021-05-14 00:30:04','2021-05-14 00:30:04','','png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers','','inherit','open','closed','','png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers','','','2021-05-14 00:30:04','2021-05-14 00:30:04','',881,'https://om7717.dev34.info/wp-content/uploads/2021/05/png-transparent-gold-gemstone-diamond-yellow-designer-gold-yellow-diamond-blue-triangle-yellow-flowers.png',0,'attachment','image/png',0),(2677,1,'2021-05-14 00:30:36','2021-05-14 00:30:36','','81674-designer-diamond-gold-yellow-free-download-png-hq','','inherit','open','closed','','81674-designer-diamond-gold-yellow-free-download-png-hq','','','2021-05-14 00:30:36','2021-05-14 00:30:36','',881,'https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png',0,'attachment','image/png',0),(2680,1,'2021-05-14 00:34:22','2021-05-14 00:34:22','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>our services</h6>		\n			<h2>Meet our agents</h2>		\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 1\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">Rentex Agent 1</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-1/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent/\">Rentex Agent</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 4\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">Rentex Agent 4</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-4/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 3\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">Rentex Agent 3</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-3/\">\n                                        View Profile                                     </a>\n                                                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        <img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Rentex Agent 2\"/>\n                                    </a>\n                                                                                                    <h4>\n                                        <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">Rentex Agent 2</a>\n                                    </h4>\n                318-838******\n                                    318-838-5675\n                    show\n                                    <a href=\"https://om7717.dev34.info/author/rentex-agent-2/\">\n                                        View Profile                                     </a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:34:22','2021-05-14 00:34:22','',881,'https://om7717.dev34.info/?p=2680',0,'revision','',0),(2682,1,'2021-05-14 00:41:01','2021-05-14 00:41:01','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:41:01','2021-05-14 00:41:01','',881,'https://om7717.dev34.info/?p=2682',0,'revision','',0),(2683,1,'2021-05-14 00:41:19','2021-05-14 00:41:19','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:41:19','2021-05-14 00:41:19','',881,'https://om7717.dev34.info/?p=2683',0,'revision','',0),(2684,1,'2021-05-14 00:41:36','2021-05-14 00:41:36','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>our services</h6>		\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 00:41:36','2021-05-14 00:41:36','',881,'https://om7717.dev34.info/?p=2684',0,'revision','',0),(2685,1,'2021-05-14 00:45:29','2021-05-14 00:45:29','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>real estate</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Buy\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Sell\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Rent\n											</a>\n									</li>\n						</ul>\n			<h2>About The Agency</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Meet The Agents\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Development Group\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Creates\n											</a>\n									</li>\n						</ul>\n			<h2>connect</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Register an Account\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Daily\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Privacy\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n		© 2020 <a href=\"#\">Rentex</a>. All Rights Reserved.Carefully crafted by <a style=\"color: #ffffff;\" href=\"#\">OpalThemes</a>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 00:45:29','2021-05-14 00:45:29','',1771,'https://om7717.dev34.info/?p=2685',0,'revision','',0),(2686,1,'2021-05-14 00:46:14','2021-05-14 00:46:14','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>real estate</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Buy\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Sell\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Rent\n											</a>\n									</li>\n						</ul>\n			<h2>About The Agency</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Meet The Agents\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Development Group\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Creates\n											</a>\n									</li>\n						</ul>\n			<h2>connect</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Register an Account\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Daily\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Privacy\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 00:46:14','2021-05-14 00:46:14','',1771,'https://om7717.dev34.info/?p=2686',0,'revision','',0),(2687,1,'2021-05-14 00:46:46','2021-05-14 00:46:46','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>real estate</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Buy\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Sell\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Rent\n											</a>\n									</li>\n						</ul>\n			<h2>About The Agency</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Meet The Agents\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Development Group\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Creates\n											</a>\n									</li>\n						</ul>\n			<h2>connect</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Register an Account\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Daily\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Privacy\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 00:46:46','2021-05-14 00:46:46','',1771,'https://om7717.dev34.info/?p=2687',0,'revision','',0),(2688,1,'2021-05-14 00:46:56','2021-05-14 00:46:56','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>real estate</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Buy\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Sell\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Rent\n											</a>\n									</li>\n						</ul>\n			<h2>About The Agency</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Meet The Agents\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Development Group\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Creates\n											</a>\n									</li>\n						</ul>\n			<h2>connect</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Register an Account\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Daily\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Privacy\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 00:46:56','2021-05-14 00:46:56','',1771,'https://om7717.dev34.info/?p=2688',0,'revision','',0),(2689,1,'2021-05-14 00:48:55','2021-05-14 00:48:55','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>real estate</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Buy\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Sell\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Rent\n											</a>\n									</li>\n						</ul>\n			<h2>About The Agency</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Meet The Agents\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Development Group\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Creates\n											</a>\n									</li>\n						</ul>\n			<h2>connect</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Register an Account\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Daily\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Privacy\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 00:48:55','2021-05-14 00:48:55','',1771,'https://om7717.dev34.info/?p=2689',0,'revision','',0),(2690,1,'2021-05-14 00:50:53','2021-05-14 00:50:53','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>real estate</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Buy\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Sell\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Rent\n											</a>\n									</li>\n						</ul>\n			<h2>About The Agency</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Meet The Agents\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Development Group\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Creates\n											</a>\n									</li>\n						</ul>\n			<h2>connect</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Register an Account\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Daily\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Privacy\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 00:50:53','2021-05-14 00:50:53','',1771,'https://om7717.dev34.info/?p=2690',0,'revision','',0),(2691,1,'2021-05-14 01:44:57','2021-05-14 01:44:57','','0012','','inherit','open','closed','','0012','','','2021-05-14 01:44:57','2021-05-14 01:44:57','',881,'https://om7717.dev34.info/wp-content/uploads/2021/05/0012.jpg',0,'attachment','image/jpeg',0),(2695,1,'2021-05-14 02:59:48','2021-05-14 02:59:48','Discover Your 		\n			<h2>New Home </h2>		\n		Helping 100 million renters find their perfect fit.		\n			<a href=\"https://rentex.wpopal.com/pricing-plan/\" role=\"button\">\n						All Services\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 02:59:48','2021-05-14 02:59:48','',881,'https://om7717.dev34.info/?p=2695',0,'revision','',0),(2694,1,'2021-05-14 02:59:35','2021-05-14 02:59:35','','woman-in-infinity-pool-WUKFP3J','','inherit','open','closed','','woman-in-infinity-pool-wukfp3j','','','2021-05-14 02:59:35','2021-05-14 02:59:35','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/woman-in-infinity-pool-WUKFP3J.mp4',0,'attachment','video/mp4',0),(2696,1,'2021-05-14 03:01:52','2021-05-14 03:01:52','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h2>How we help</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 03:01:52','2021-05-14 03:01:52','',881,'https://om7717.dev34.info/?p=2696',0,'revision','',0),(2705,1,'2021-05-14 04:50:59','2021-05-14 04:50:59','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 04:50:59','2021-05-14 04:50:59','',881,'https://om7717.dev34.info/?p=2705',0,'revision','',0),(2703,1,'2021-05-14 04:50:27','2021-05-14 04:50:27','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 04:50:27','2021-05-14 04:50:27','',881,'https://om7717.dev34.info/?p=2703',0,'revision','',0),(2697,1,'2021-05-14 03:04:39','2021-05-14 03:04:39','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/07/h3_img-6..jpg\" alt=\"\" loading=\"lazy\" />											\n			<h6>Enjoy</h6>		\n			<h2>World Famous Beverly Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"2560\" height=\"1707\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0012-scaled.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0012-scaled.jpg 2560w, https://om7717.dev34.info/wp-content/uploads/2021/05/0012-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/0012-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/0012-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/0012-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/0012-2048x1365.jpg 2048w, https://om7717.dev34.info/wp-content/uploads/2021/05/0012-675x450.jpg 675w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />											\n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/langs-beach-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,100 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            1\n                            Beds\n                            5\n                            Baths\n                            1620\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 03:04:39','2021-05-14 03:04:39','',881,'https://om7717.dev34.info/?p=2697',0,'revision','',0),(3204,8,'2021-05-25 15:35:19','0000-00-00 00:00:00','','Property Listings','','draft','closed','closed','','','','','2021-05-25 15:35:19','2021-05-25 15:35:19','',0,'https://om7717.dev34.info/?page_id=3204',0,'page','',0),(3205,8,'2021-05-25 15:35:19','2021-05-25 15:35:19','','Property Listings','','inherit','closed','closed','','3204-revision-v1','','','2021-05-25 15:35:19','2021-05-25 15:35:19','',3204,'https://om7717.dev34.info/?p=3205',0,'revision','',0),(2704,1,'2021-05-14 04:50:41','2021-05-14 04:50:41','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Enjoy</h6>		\n			<h2>World Class Bevery Hills</h2>		\n		Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Our long-standing experience\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Corporate social responsibility\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Specialist services\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Market-leading research\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						More About Us\n					</a>\n										<img width=\"300\" height=\"220\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/h3_img-5.jpg\" alt=\"\" loading=\"lazy\" />											\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 04:50:41','2021-05-14 04:50:41','',881,'https://om7717.dev34.info/?p=2704',0,'revision','',0),(2702,1,'2021-05-14 04:50:13','2021-05-14 04:50:13','','hollywood sign 1','','inherit','open','closed','','hollywood-sign-1','','','2021-05-14 04:50:13','2021-05-14 04:50:13','',881,'https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg',0,'attachment','image/jpeg',0),(2710,1,'2021-07-04 20:30:09','2021-05-14 05:22:22','','Property Search','','publish','closed','closed','','property-search-2','','','2021-07-04 20:30:09','2021-07-04 20:30:09','',0,'https://om7717.dev34.info/?p=2710',2,'nav_menu_item','',0),(2711,1,'2021-07-04 20:30:09','2021-05-14 05:22:22','','About Us','','publish','closed','closed','','about-us','','','2021-07-04 20:30:09','2021-07-04 20:30:09','',0,'https://om7717.dev34.info/?p=2711',3,'nav_menu_item','',0),(2712,1,'2021-07-04 20:30:09','2021-05-14 05:22:22','','Contact Us','','publish','closed','closed','','contact-us','','','2021-07-04 20:30:09','2021-07-04 20:30:09','',0,'https://om7717.dev34.info/?p=2712',5,'nav_menu_item','',0),(2713,1,'2021-07-04 20:30:09','2021-05-14 05:22:22','','List Your Home','','publish','closed','closed','','list-your-home','','','2021-07-04 20:30:09','2021-07-04 20:30:09','',0,'https://om7717.dev34.info/?p=2713',4,'nav_menu_item','',0),(3895,8,'2021-07-04 20:30:09','2021-06-23 06:01:42','','Home','','publish','closed','closed','','home-3','','','2021-07-04 20:30:09','2021-07-04 20:30:09','',0,'https://om7717.dev34.info/2021/06/23/home-3/',1,'nav_menu_item','',0),(2715,1,'2021-05-14 05:23:37','2021-05-14 05:23:37','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuySoldVacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/kayak-point-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            3\n                            Beds\n                            4\n                            Baths\n                            1316\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 05:23:37','2021-05-14 05:23:37','',881,'https://om7717.dev34.info/?p=2715',0,'revision','',0),(2716,1,'2021-05-14 05:25:23','2021-05-14 05:25:23','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>real estate</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Buy\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Sell\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Rent\n											</a>\n									</li>\n						</ul>\n			<h2>About The Agency</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Meet The Agents\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Development Group\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Creates\n											</a>\n									</li>\n						</ul>\n			<h2>connect</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Register an Account\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Daily\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Privacy\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 05:25:23','2021-05-14 05:25:23','',1771,'https://om7717.dev34.info/?p=2716',0,'revision','',0),(2718,1,'2021-05-14 05:29:52','2021-05-14 05:29:52','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 05:29:52','2021-05-14 05:29:52','',1771,'https://om7717.dev34.info/?p=2718',0,'revision','',0),(2717,1,'2021-05-14 05:28:25','2021-05-14 05:28:25','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n			<h2>About The Agency</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Meet The Agents\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Development Group\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Creates\n											</a>\n									</li>\n						</ul>\n			<h2>connect</h2>		\n					<ul>\n							<li >\n					<a href=\"#\">					Register an Account\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					The Agency Daily\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">					Privacy\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 05:28:25','2021-05-14 05:28:25','',1771,'https://om7717.dev34.info/?p=2717',0,'revision','',0),(2719,1,'2021-05-14 05:31:55','2021-05-14 05:31:55','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 05:31:55','2021-05-14 05:31:55','',1771,'https://om7717.dev34.info/?p=2719',0,'revision','',0),(2720,0,'2021-05-14 05:39:57','2021-05-14 05:39:57','','SWEETZER 508','','publish','closed','closed','','sweetzer-508','','','2021-06-23 09:17:22','2021-06-23 09:17:22','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=2720',0,'listing','',0),(2721,7,'2021-05-14 05:37:39','2021-05-14 05:37:39','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 05:37:39','2021-05-14 05:37:39','',1771,'https://om7717.dev34.info/?p=2721',0,'revision','',0),(2722,7,'2021-05-14 05:38:50','2021-05-14 05:38:50','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 05:38:50','2021-05-14 05:38:50','',1771,'https://om7717.dev34.info/?p=2722',0,'revision','',0),(2723,7,'2021-05-14 05:39:16','2021-05-14 05:39:16','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 05:39:16','2021-05-14 05:39:16','',1771,'https://om7717.dev34.info/?p=2723',0,'revision','',0),(2724,8,'2021-05-14 05:39:24','2021-05-14 05:39:24','','0001','','inherit','open','closed','','0001','','','2021-05-14 05:39:24','2021-05-14 05:39:24','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0001.jpg',0,'attachment','image/jpeg',0),(2725,7,'2021-05-14 05:40:19','2021-05-14 05:40:19','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n			<h2>global</h2>		\n			<h2>real estate</h2>		\n			<h2>brand awards</h2>		\n			<h2>2019-2020</h2>		\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 05:40:19','2021-05-14 05:40:19','',1771,'https://om7717.dev34.info/?p=2725',0,'revision','',0),(2910,1,'2021-05-14 08:50:49','2021-05-14 08:50:49','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 08:50:49','2021-05-14 08:50:49','',881,'https://om7717.dev34.info/?p=2910',0,'revision','',0),(2898,1,'2021-05-14 08:04:48','2021-05-14 08:04:48','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n                    0\n                    %\n                    Cool Number                \n                    0\n                    %\n                    Cool Number                \n                    0\n                    %\n                    Cool Number                \n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,500                 <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 08:04:48','2021-05-14 08:04:48','',881,'https://om7717.dev34.info/?p=2898',0,'revision','',0),(2769,0,'2021-05-14 07:02:03','2021-05-14 07:02:03','','SWEETZER 510','','publish','closed','closed','','sweetzer-510','','','2021-06-23 09:16:38','2021-06-23 09:16:38','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=2769',0,'listing','',0),(2770,8,'2021-05-14 07:01:57','2021-05-14 07:01:57','','1620974688234','','inherit','open','closed','','1620974688234','','','2021-05-14 07:01:57','2021-05-14 07:01:57','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg',0,'attachment','image/jpeg',0),(2771,8,'2021-05-14 07:11:14','2021-05-14 07:11:14','','0002','','inherit','open','closed','','0002','','','2021-05-14 07:11:14','2021-05-14 07:11:14','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0002.jpg',0,'attachment','image/jpeg',0),(2772,8,'2021-05-14 07:11:30','2021-05-14 07:11:30','','0003','','inherit','open','closed','','0003','','','2021-05-14 07:11:30','2021-05-14 07:11:30','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0003.jpg',0,'attachment','image/jpeg',0),(2773,8,'2021-05-14 07:11:46','2021-05-14 07:11:46','','0004','','inherit','open','closed','','0004','','','2021-05-14 07:11:46','2021-05-14 07:11:46','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0004.jpg',0,'attachment','image/jpeg',0),(2774,8,'2021-05-14 07:12:02','2021-05-14 07:12:02','','0005','','inherit','open','closed','','0005','','','2021-05-14 07:12:02','2021-05-14 07:12:02','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0005.jpg',0,'attachment','image/jpeg',0),(2775,8,'2021-05-14 07:12:19','2021-05-14 07:12:19','','0006','','inherit','open','closed','','0006','','','2021-05-14 07:12:19','2021-05-14 07:12:19','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0006.jpg',0,'attachment','image/jpeg',0),(2776,8,'2021-05-14 07:12:35','2021-05-14 07:12:35','','0007','','inherit','open','closed','','0007','','','2021-05-14 07:12:35','2021-05-14 07:12:35','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0007.jpg',0,'attachment','image/jpeg',0),(2777,8,'2021-05-14 07:12:53','2021-05-14 07:12:53','','0008','','inherit','open','closed','','0008','','','2021-05-14 07:12:53','2021-05-14 07:12:53','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0008.jpg',0,'attachment','image/jpeg',0),(2778,8,'2021-05-14 07:13:10','2021-05-14 07:13:10','','0009','','inherit','open','closed','','0009','','','2021-05-14 07:13:10','2021-05-14 07:13:10','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0009.jpg',0,'attachment','image/jpeg',0),(2779,0,'2021-05-14 07:13:34','2021-05-14 07:13:34','','BEVERLY CREST','','publish','closed','closed','','beverly-crest','','','2021-07-15 20:59:15','2021-07-15 20:59:15','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=2779',0,'listing','',0),(2780,8,'2021-05-14 07:13:29','2021-05-14 07:13:29','','0010','','inherit','open','closed','','0010','','','2021-05-14 07:13:29','2021-05-14 07:13:29','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0010.jpg',0,'attachment','image/jpeg',0),(2781,0,'2021-05-14 07:14:04','2021-05-14 07:14:04','','DREXEL','','publish','closed','closed','','drexel','','','2021-07-15 21:01:57','2021-07-15 21:01:57','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=2781',0,'listing','',0),(2782,8,'2021-05-14 07:13:48','2021-05-14 07:13:48','','0011','','inherit','open','closed','','0011','','','2021-05-14 07:13:48','2021-05-14 07:13:48','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0011.jpg',0,'attachment','image/jpeg',0),(2783,8,'2021-05-14 07:14:04','2021-05-14 07:14:04','','0012','','inherit','open','closed','','0012-2','','','2021-05-14 07:14:04','2021-05-14 07:14:04','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0012-1.jpg',0,'attachment','image/jpeg',0),(3031,8,'2021-05-14 09:52:09','2021-05-14 09:52:09','','DZ5A2659 (1)','','inherit','open','closed','','dz5a2659-1','','','2021-05-14 09:52:09','2021-05-14 09:52:09','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2659-1.jpg',0,'attachment','image/jpeg',0),(2784,0,'2021-05-14 07:14:25','2021-05-14 07:14:25','','GARDNER','','publish','closed','closed','','gardner','','','2021-07-15 21:01:55','2021-07-15 21:01:55','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=2784',0,'listing','',0),(2785,8,'2021-05-14 07:14:21','2021-05-14 07:14:21','','0013','','inherit','open','closed','','0013','','','2021-05-14 07:14:21','2021-05-14 07:14:21','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0013.jpg',0,'attachment','image/jpeg',0),(2786,0,'2021-05-14 07:14:40','2021-05-14 07:14:40','','MARTEL','','publish','closed','closed','','martel','','','2021-07-15 21:03:00','2021-07-15 21:03:00','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=2786',0,'listing','',0),(2787,8,'2021-05-14 07:14:38','2021-05-14 07:14:38','','0014','','inherit','open','closed','','0014','','','2021-05-14 07:14:38','2021-05-14 07:14:38','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0014.jpg',0,'attachment','image/jpeg',0),(3155,8,'2021-05-14 10:35:10','2021-05-14 10:35:10','','1','','inherit','open','closed','','1-3','','','2021-05-14 10:35:10','2021-05-14 10:35:10','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/1-2.jpg',0,'attachment','image/jpeg',0),(2788,0,'2021-05-14 07:15:01','2021-05-14 07:15:01','','SYCAMORE','','publish','closed','closed','','sycamore','','','2021-07-15 21:05:06','2021-07-15 21:05:06','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=2788',0,'listing','',0),(2789,8,'2021-05-14 07:14:54','2021-05-14 07:14:54','','0015','','inherit','open','closed','','0015','','','2021-05-14 07:14:54','2021-05-14 07:14:54','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0015.jpg',0,'attachment','image/jpeg',0),(3109,8,'2021-05-14 10:31:27','2021-05-14 10:31:27','','0001','','inherit','open','closed','','0001-4','','','2021-05-14 10:31:27','2021-05-14 10:31:27','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0001-3.jpg',0,'attachment','image/jpeg',0),(2790,0,'2021-05-14 07:15:19','2021-05-14 07:15:19','','COLGATE Z','','publish','closed','closed','','colgate-z','','','2021-07-15 21:05:42','2021-07-15 21:05:42','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=2790',0,'listing','',0),(2791,8,'2021-05-14 07:15:11','2021-05-14 07:15:11','','0016','','inherit','open','closed','','0016','','','2021-05-14 07:15:11','2021-05-14 07:15:11','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0016.jpg',0,'attachment','image/jpeg',0),(3078,8,'2021-05-14 10:25:44','2021-05-14 10:25:44','','1','','inherit','open','closed','','1-2','','','2021-05-14 10:25:44','2021-05-14 10:25:44','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/1-1.jpg',0,'attachment','image/jpeg',0),(2792,8,'2021-05-14 07:15:27','2021-05-14 07:15:27','','0017','','inherit','open','closed','','0017','','','2021-05-14 07:15:27','2021-05-14 07:15:27','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0017.jpg',0,'attachment','image/jpeg',0),(2793,8,'2021-05-14 07:15:42','2021-05-14 07:15:42','','0018','','inherit','open','closed','','0018','','','2021-05-14 07:15:42','2021-05-14 07:15:42','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0018.jpg',0,'attachment','image/jpeg',0),(2794,8,'2021-05-14 07:15:57','2021-05-14 07:15:57','','0019','','inherit','open','closed','','0019','','','2021-05-14 07:15:57','2021-05-14 07:15:57','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0019.jpg',0,'attachment','image/jpeg',0),(2795,8,'2021-05-14 07:16:13','2021-05-14 07:16:13','','0020','','inherit','open','closed','','0020','','','2021-05-14 07:16:13','2021-05-14 07:16:13','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0020.jpg',0,'attachment','image/jpeg',0),(2796,8,'2021-05-14 07:16:32','2021-05-14 07:16:32','','0021','','inherit','open','closed','','0021','','','2021-05-14 07:16:32','2021-05-14 07:16:32','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0021.jpg',0,'attachment','image/jpeg',0),(2797,8,'2021-05-14 07:16:48','2021-05-14 07:16:48','','0022','','inherit','open','closed','','0022','','','2021-05-14 07:16:48','2021-05-14 07:16:48','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0022.jpg',0,'attachment','image/jpeg',0),(2798,8,'2021-05-14 07:17:05','2021-05-14 07:17:05','','0023','','inherit','open','closed','','0023','','','2021-05-14 07:17:05','2021-05-14 07:17:05','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0023.jpg',0,'attachment','image/jpeg',0),(2799,8,'2021-05-14 07:17:23','2021-05-14 07:17:23','','0024','','inherit','open','closed','','0024','','','2021-05-14 07:17:23','2021-05-14 07:17:23','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0024.jpg',0,'attachment','image/jpeg',0),(2800,8,'2021-05-14 07:17:39','2021-05-14 07:17:39','','0025','','inherit','open','closed','','0025','','','2021-05-14 07:17:39','2021-05-14 07:17:39','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0025.jpg',0,'attachment','image/jpeg',0),(2801,8,'2021-05-14 07:17:55','2021-05-14 07:17:55','','0026','','inherit','open','closed','','0026','','','2021-05-14 07:17:55','2021-05-14 07:17:55','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0026.jpg',0,'attachment','image/jpeg',0),(2803,8,'2021-05-14 07:18:11','2021-05-14 07:18:11','','0027','','inherit','open','closed','','0027','','','2021-05-14 07:18:11','2021-05-14 07:18:11','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0027.jpg',0,'attachment','image/jpeg',0),(2804,8,'2021-05-14 07:18:26','2021-05-14 07:18:26','','0028','','inherit','open','closed','','0028','','','2021-05-14 07:18:26','2021-05-14 07:18:26','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0028.jpg',0,'attachment','image/jpeg',0),(2805,8,'2021-05-14 07:18:42','2021-05-14 07:18:42','','0029','','inherit','open','closed','','0029','','','2021-05-14 07:18:42','2021-05-14 07:18:42','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0029.jpg',0,'attachment','image/jpeg',0),(2806,8,'2021-05-14 07:18:57','2021-05-14 07:18:57','','0030','','inherit','open','closed','','0030','','','2021-05-14 07:18:57','2021-05-14 07:18:57','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0030.jpg',0,'attachment','image/jpeg',0),(2807,8,'2021-05-14 07:19:13','2021-05-14 07:19:13','','0031','','inherit','open','closed','','0031','','','2021-05-14 07:19:13','2021-05-14 07:19:13','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0031.jpg',0,'attachment','image/jpeg',0),(2808,8,'2021-05-14 07:19:28','2021-05-14 07:19:28','','0032','','inherit','open','closed','','0032','','','2021-05-14 07:19:28','2021-05-14 07:19:28','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0032.jpg',0,'attachment','image/jpeg',0),(2809,8,'2021-05-14 07:19:44','2021-05-14 07:19:44','','0033','','inherit','open','closed','','0033','','','2021-05-14 07:19:44','2021-05-14 07:19:44','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0033.jpg',0,'attachment','image/jpeg',0),(2810,8,'2021-05-14 07:20:01','2021-05-14 07:20:01','','0034','','inherit','open','closed','','0034','','','2021-05-14 07:20:01','2021-05-14 07:20:01','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0034.jpg',0,'attachment','image/jpeg',0),(2811,8,'2021-05-14 07:20:15','2021-05-14 07:20:15','','0035','','inherit','open','closed','','0035','','','2021-05-14 07:20:15','2021-05-14 07:20:15','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0035.jpg',0,'attachment','image/jpeg',0),(2812,8,'2021-05-14 07:20:29','2021-05-14 07:20:29','','0036','','inherit','open','closed','','0036','','','2021-05-14 07:20:29','2021-05-14 07:20:29','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0036.jpg',0,'attachment','image/jpeg',0),(2813,8,'2021-05-14 07:20:44','2021-05-14 07:20:44','','0037','','inherit','open','closed','','0037','','','2021-05-14 07:20:44','2021-05-14 07:20:44','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0037.jpg',0,'attachment','image/jpeg',0),(2814,8,'2021-05-14 07:21:00','2021-05-14 07:21:00','','0038','','inherit','open','closed','','0038','','','2021-05-14 07:21:00','2021-05-14 07:21:00','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0038.jpg',0,'attachment','image/jpeg',0),(2815,8,'2021-05-14 07:21:15','2021-05-14 07:21:15','','0039','','inherit','open','closed','','0039','','','2021-05-14 07:21:15','2021-05-14 07:21:15','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0039.jpg',0,'attachment','image/jpeg',0),(2816,8,'2021-05-14 07:21:30','2021-05-14 07:21:30','','0040','','inherit','open','closed','','0040','','','2021-05-14 07:21:30','2021-05-14 07:21:30','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0040.jpg',0,'attachment','image/jpeg',0),(2817,8,'2021-05-14 07:21:45','2021-05-14 07:21:45','','0041','','inherit','open','closed','','0041','','','2021-05-14 07:21:45','2021-05-14 07:21:45','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0041.jpg',0,'attachment','image/jpeg',0),(2818,8,'2021-05-14 07:22:01','2021-05-14 07:22:01','','0042','','inherit','open','closed','','0042','','','2021-05-14 07:22:01','2021-05-14 07:22:01','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0042.jpg',0,'attachment','image/jpeg',0),(2819,8,'2021-05-14 07:22:17','2021-05-14 07:22:17','','0043','','inherit','open','closed','','0043','','','2021-05-14 07:22:17','2021-05-14 07:22:17','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0043.jpg',0,'attachment','image/jpeg',0),(2820,8,'2021-05-14 07:22:32','2021-05-14 07:22:32','','0044','','inherit','open','closed','','0044','','','2021-05-14 07:22:32','2021-05-14 07:22:32','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0044.jpg',0,'attachment','image/jpeg',0),(2821,8,'2021-05-14 07:22:49','2021-05-14 07:22:49','','0045','','inherit','open','closed','','0045','','','2021-05-14 07:22:49','2021-05-14 07:22:49','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0045.jpg',0,'attachment','image/jpeg',0),(2822,8,'2021-05-14 07:23:04','2021-05-14 07:23:04','','0046','','inherit','open','closed','','0046','','','2021-05-14 07:23:04','2021-05-14 07:23:04','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0046.jpg',0,'attachment','image/jpeg',0),(2823,8,'2021-05-14 07:23:20','2021-05-14 07:23:20','','0047','','inherit','open','closed','','0047','','','2021-05-14 07:23:20','2021-05-14 07:23:20','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0047.jpg',0,'attachment','image/jpeg',0),(2824,8,'2021-05-14 07:23:36','2021-05-14 07:23:36','','0048','','inherit','open','closed','','0048','','','2021-05-14 07:23:36','2021-05-14 07:23:36','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0048.jpg',0,'attachment','image/jpeg',0),(2825,8,'2021-05-14 07:23:52','2021-05-14 07:23:52','','0049','','inherit','open','closed','','0049','','','2021-05-14 07:23:52','2021-05-14 07:23:52','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0049.jpg',0,'attachment','image/jpeg',0),(2826,8,'2021-05-14 07:24:08','2021-05-14 07:24:08','','0050','','inherit','open','closed','','0050','','','2021-05-14 07:24:08','2021-05-14 07:24:08','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0050.jpg',0,'attachment','image/jpeg',0),(2827,8,'2021-05-14 07:24:23','2021-05-14 07:24:23','','0051','','inherit','open','closed','','0051','','','2021-05-14 07:24:23','2021-05-14 07:24:23','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0051.jpg',0,'attachment','image/jpeg',0),(2828,8,'2021-05-14 07:24:38','2021-05-14 07:24:38','','0052','','inherit','open','closed','','0052','','','2021-05-14 07:24:38','2021-05-14 07:24:38','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0052.jpg',0,'attachment','image/jpeg',0),(2829,8,'2021-05-14 07:24:55','2021-05-14 07:24:55','','0053','','inherit','open','closed','','0053','','','2021-05-14 07:24:55','2021-05-14 07:24:55','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0053.jpg',0,'attachment','image/jpeg',0),(2831,8,'2021-05-14 07:25:11','2021-05-14 07:25:11','','0054','','inherit','open','closed','','0054','','','2021-05-14 07:25:11','2021-05-14 07:25:11','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0054.jpg',0,'attachment','image/jpeg',0),(2832,8,'2021-05-14 07:25:27','2021-05-14 07:25:27','','0055','','inherit','open','closed','','0055','','','2021-05-14 07:25:27','2021-05-14 07:25:27','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0055.jpg',0,'attachment','image/jpeg',0),(2833,8,'2021-05-14 07:25:43','2021-05-14 07:25:43','','0056','','inherit','open','closed','','0056','','','2021-05-14 07:25:43','2021-05-14 07:25:43','',2720,'https://om7717.dev34.info/wp-content/uploads/2021/05/0056.jpg',0,'attachment','image/jpeg',0),(2835,8,'2021-05-14 07:29:50','2021-05-14 07:29:50','','0001','','inherit','open','closed','','0001-2','','','2021-05-14 07:29:50','2021-05-14 07:29:50','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0001-1.jpg',0,'attachment','image/jpeg',0),(2836,8,'2021-05-14 07:30:08','2021-05-14 07:30:08','','0002','','inherit','open','closed','','0002-2','','','2021-05-14 07:30:08','2021-05-14 07:30:08','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0002-1.jpg',0,'attachment','image/jpeg',0),(2837,8,'2021-05-14 07:30:27','2021-05-14 07:30:27','','0003','','inherit','open','closed','','0003-2','','','2021-05-14 07:30:27','2021-05-14 07:30:27','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0003-1.jpg',0,'attachment','image/jpeg',0),(2838,8,'2021-05-14 07:30:44','2021-05-14 07:30:44','','0004','','inherit','open','closed','','0004-2','','','2021-05-14 07:30:44','2021-05-14 07:30:44','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0004-1.jpg',0,'attachment','image/jpeg',0),(2839,1,'2021-05-14 07:30:53','2021-05-14 07:30:53','','WB Header 2 (1)','','inherit','open','closed','','wb-header-2-1','','','2021-05-14 07:30:53','2021-05-14 07:30:53','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/WB-Header-2-1.mp4',0,'attachment','video/mp4',0),(2840,8,'2021-05-14 07:31:03','2021-05-14 07:31:03','','0005','','inherit','open','closed','','0005-2','','','2021-05-14 07:31:03','2021-05-14 07:31:03','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0005-1.jpg',0,'attachment','image/jpeg',0),(2841,1,'2021-05-14 07:31:08','2021-05-14 07:31:08','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuySoldVacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            RentVacation Rentals            \n      43 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,900                 <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 07:31:08','2021-05-14 07:31:08','',881,'https://om7717.dev34.info/?p=2841',0,'revision','',0),(2842,8,'2021-05-14 07:31:18','2021-05-14 07:31:18','','0006','','inherit','open','closed','','0006-2','','','2021-05-14 07:31:18','2021-05-14 07:31:18','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0006-1.jpg',0,'attachment','image/jpeg',0),(2843,8,'2021-05-14 07:31:35','2021-05-14 07:31:35','','0007','','inherit','open','closed','','0007-2','','','2021-05-14 07:31:35','2021-05-14 07:31:35','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0007-1.jpg',0,'attachment','image/jpeg',0),(2844,8,'2021-05-14 07:31:50','2021-05-14 07:31:50','','0008','','inherit','open','closed','','0008-2','','','2021-05-14 07:31:50','2021-05-14 07:31:50','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0008-1.jpg',0,'attachment','image/jpeg',0),(2845,8,'2021-05-14 07:32:05','2021-05-14 07:32:05','','0009','','inherit','open','closed','','0009-2','','','2021-05-14 07:32:05','2021-05-14 07:32:05','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0009-1.jpg',0,'attachment','image/jpeg',0),(2846,8,'2021-05-14 07:32:20','2021-05-14 07:32:20','','0010','','inherit','open','closed','','0010-2','','','2021-05-14 07:32:20','2021-05-14 07:32:20','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0010-1.jpg',0,'attachment','image/jpeg',0),(2847,8,'2021-05-14 07:32:36','2021-05-14 07:32:36','','0011','','inherit','open','closed','','0011-2','','','2021-05-14 07:32:36','2021-05-14 07:32:36','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0011-1.jpg',0,'attachment','image/jpeg',0),(2848,8,'2021-05-14 07:32:51','2021-05-14 07:32:51','','0012','','inherit','open','closed','','0012-3','','','2021-05-14 07:32:51','2021-05-14 07:32:51','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0012-2.jpg',0,'attachment','image/jpeg',0),(2849,8,'2021-05-14 07:33:07','2021-05-14 07:33:07','','0013','','inherit','open','closed','','0013-2','','','2021-05-14 07:33:07','2021-05-14 07:33:07','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0013-1.jpg',0,'attachment','image/jpeg',0),(2850,8,'2021-05-14 07:33:22','2021-05-14 07:33:22','','0014','','inherit','open','closed','','0014-2','','','2021-05-14 07:33:22','2021-05-14 07:33:22','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0014-1.jpg',0,'attachment','image/jpeg',0),(2851,8,'2021-05-14 07:33:38','2021-05-14 07:33:38','','0015','','inherit','open','closed','','0015-2','','','2021-05-14 07:33:38','2021-05-14 07:33:38','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0015-1.jpg',0,'attachment','image/jpeg',0),(2852,8,'2021-05-14 07:33:54','2021-05-14 07:33:54','','0016','','inherit','open','closed','','0016-2','','','2021-05-14 07:33:54','2021-05-14 07:33:54','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0016-1.jpg',0,'attachment','image/jpeg',0),(2853,8,'2021-05-14 07:34:09','2021-05-14 07:34:09','','0017','','inherit','open','closed','','0017-2','','','2021-05-14 07:34:09','2021-05-14 07:34:09','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0017-1.jpg',0,'attachment','image/jpeg',0),(2854,8,'2021-05-14 07:34:24','2021-05-14 07:34:24','','0018','','inherit','open','closed','','0018-2','','','2021-05-14 07:34:24','2021-05-14 07:34:24','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0018-1.jpg',0,'attachment','image/jpeg',0),(2855,8,'2021-05-14 07:34:41','2021-05-14 07:34:41','','0019','','inherit','open','closed','','0019-2','','','2021-05-14 07:34:41','2021-05-14 07:34:41','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0019-1.jpg',0,'attachment','image/jpeg',0),(2856,8,'2021-05-14 07:34:57','2021-05-14 07:34:57','','0020','','inherit','open','closed','','0020-2','','','2021-05-14 07:34:57','2021-05-14 07:34:57','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0020-1.jpg',0,'attachment','image/jpeg',0),(2857,8,'2021-05-14 07:35:13','2021-05-14 07:35:13','','0021','','inherit','open','closed','','0021-2','','','2021-05-14 07:35:13','2021-05-14 07:35:13','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0021-1.jpg',0,'attachment','image/jpeg',0),(2858,8,'2021-05-14 07:35:28','2021-05-14 07:35:28','','0022','','inherit','open','closed','','0022-2','','','2021-05-14 07:35:28','2021-05-14 07:35:28','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0022-1.jpg',0,'attachment','image/jpeg',0),(2859,8,'2021-05-14 07:35:43','2021-05-14 07:35:43','','0023','','inherit','open','closed','','0023-2','','','2021-05-14 07:35:43','2021-05-14 07:35:43','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0023-1.jpg',0,'attachment','image/jpeg',0),(2860,8,'2021-05-14 07:35:59','2021-05-14 07:35:59','','0024','','inherit','open','closed','','0024-2','','','2021-05-14 07:35:59','2021-05-14 07:35:59','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0024-1.jpg',0,'attachment','image/jpeg',0),(2861,8,'2021-05-14 07:36:16','2021-05-14 07:36:16','','0025','','inherit','open','closed','','0025-2','','','2021-05-14 07:36:16','2021-05-14 07:36:16','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0025-1.jpg',0,'attachment','image/jpeg',0),(2862,8,'2021-05-14 07:36:32','2021-05-14 07:36:32','','0026','','inherit','open','closed','','0026-2','','','2021-05-14 07:36:32','2021-05-14 07:36:32','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0026-1.jpg',0,'attachment','image/jpeg',0),(2863,8,'2021-05-14 07:36:46','2021-05-14 07:36:46','','0027','','inherit','open','closed','','0027-2','','','2021-05-14 07:36:46','2021-05-14 07:36:46','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0027-1.jpg',0,'attachment','image/jpeg',0),(2864,8,'2021-05-14 07:37:02','2021-05-14 07:37:02','','0028','','inherit','open','closed','','0028-2','','','2021-05-14 07:37:02','2021-05-14 07:37:02','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0028-1.jpg',0,'attachment','image/jpeg',0),(2865,1,'2021-05-14 07:37:16','2021-05-14 07:37:16','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuySoldVacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            RentVacation Rentals            \n      43 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,900                 <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            BuyRentSold            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/shepherdson-house/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;1,600 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            6\n                            Baths\n                            852\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, USA\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 07:37:16','2021-05-14 07:37:16','',881,'https://om7717.dev34.info/?p=2865',0,'revision','',0),(2866,8,'2021-05-14 07:37:17','2021-05-14 07:37:17','','0029','','inherit','open','closed','','0029-2','','','2021-05-14 07:37:17','2021-05-14 07:37:17','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0029-1.jpg',0,'attachment','image/jpeg',0),(2867,8,'2021-05-14 07:37:31','2021-05-14 07:37:31','','0030','','inherit','open','closed','','0030-2','','','2021-05-14 07:37:31','2021-05-14 07:37:31','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0030-1.jpg',0,'attachment','image/jpeg',0),(2868,8,'2021-05-14 07:37:47','2021-05-14 07:37:47','','0031','','inherit','open','closed','','0031-2','','','2021-05-14 07:37:47','2021-05-14 07:37:47','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0031-1.jpg',0,'attachment','image/jpeg',0),(2869,8,'2021-05-14 07:38:02','2021-05-14 07:38:02','','0032','','inherit','open','closed','','0032-2','','','2021-05-14 07:38:02','2021-05-14 07:38:02','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0032-1.jpg',0,'attachment','image/jpeg',0),(2870,8,'2021-05-14 07:38:17','2021-05-14 07:38:17','','0033','','inherit','open','closed','','0033-2','','','2021-05-14 07:38:17','2021-05-14 07:38:17','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0033-1.jpg',0,'attachment','image/jpeg',0),(2871,8,'2021-05-14 07:38:32','2021-05-14 07:38:32','','0034','','inherit','open','closed','','0034-2','','','2021-05-14 07:38:32','2021-05-14 07:38:32','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0034-1.jpg',0,'attachment','image/jpeg',0),(2872,8,'2021-05-14 07:38:47','2021-05-14 07:38:47','','0035','','inherit','open','closed','','0035-2','','','2021-05-14 07:38:47','2021-05-14 07:38:47','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0035-1.jpg',0,'attachment','image/jpeg',0),(2873,8,'2021-05-14 07:39:03','2021-05-14 07:39:03','','0036','','inherit','open','closed','','0036-2','','','2021-05-14 07:39:03','2021-05-14 07:39:03','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0036-1.jpg',0,'attachment','image/jpeg',0),(2874,8,'2021-05-14 07:39:20','2021-05-14 07:39:20','','0037','','inherit','open','closed','','0037-2','','','2021-05-14 07:39:20','2021-05-14 07:39:20','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0037-1.jpg',0,'attachment','image/jpeg',0),(2875,8,'2021-05-14 07:39:35','2021-05-14 07:39:35','','0038','','inherit','open','closed','','0038-2','','','2021-05-14 07:39:35','2021-05-14 07:39:35','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0038-1.jpg',0,'attachment','image/jpeg',0),(2876,8,'2021-05-14 07:39:54','2021-05-14 07:39:54','','0039','','inherit','open','closed','','0039-2','','','2021-05-14 07:39:54','2021-05-14 07:39:54','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0039-1.jpg',0,'attachment','image/jpeg',0),(2877,8,'2021-05-14 07:40:10','2021-05-14 07:40:10','','0040','','inherit','open','closed','','0040-2','','','2021-05-14 07:40:10','2021-05-14 07:40:10','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0040-1.jpg',0,'attachment','image/jpeg',0),(2878,8,'2021-05-14 07:40:25','2021-05-14 07:40:25','','0041','','inherit','open','closed','','0041-2','','','2021-05-14 07:40:25','2021-05-14 07:40:25','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0041-1.jpg',0,'attachment','image/jpeg',0),(2879,8,'2021-05-14 07:40:40','2021-05-14 07:40:40','','0042','','inherit','open','closed','','0042-2','','','2021-05-14 07:40:40','2021-05-14 07:40:40','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0042-1.jpg',0,'attachment','image/jpeg',0),(2880,8,'2021-05-14 07:40:56','2021-05-14 07:40:56','','0043','','inherit','open','closed','','0043-2','','','2021-05-14 07:40:56','2021-05-14 07:40:56','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0043-1.jpg',0,'attachment','image/jpeg',0),(2881,8,'2021-05-14 07:41:11','2021-05-14 07:41:11','','0044','','inherit','open','closed','','0044-2','','','2021-05-14 07:41:11','2021-05-14 07:41:11','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0044-1.jpg',0,'attachment','image/jpeg',0),(2882,8,'2021-05-14 07:41:27','2021-05-14 07:41:27','','0045','','inherit','open','closed','','0045-2','','','2021-05-14 07:41:27','2021-05-14 07:41:27','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0045-1.jpg',0,'attachment','image/jpeg',0),(2883,8,'2021-05-14 07:41:42','2021-05-14 07:41:42','','0046','','inherit','open','closed','','0046-2','','','2021-05-14 07:41:42','2021-05-14 07:41:42','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0046-1.jpg',0,'attachment','image/jpeg',0),(2899,1,'2021-05-14 08:05:10','2021-05-14 08:05:10','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n                    0\n                    %\n                    Cool Number                \n                    0\n                    %\n                    Cool Number                \n                    0\n                    %\n                    Cool Number                \n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,500                 <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 08:05:10','2021-05-14 08:05:10','',881,'https://om7717.dev34.info/?p=2899',0,'revision','',0),(2885,8,'2021-05-14 07:41:58','2021-05-14 07:41:58','','0047','','inherit','open','closed','','0047-2','','','2021-05-14 07:41:58','2021-05-14 07:41:58','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0047-1.jpg',0,'attachment','image/jpeg',0),(2886,8,'2021-05-14 07:42:14','2021-05-14 07:42:14','','0048','','inherit','open','closed','','0048-2','','','2021-05-14 07:42:14','2021-05-14 07:42:14','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0048-1.jpg',0,'attachment','image/jpeg',0),(2887,8,'2021-05-14 07:42:31','2021-05-14 07:42:31','','0049','','inherit','open','closed','','0049-2','','','2021-05-14 07:42:31','2021-05-14 07:42:31','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0049-1.jpg',0,'attachment','image/jpeg',0),(2888,8,'2021-05-14 07:42:48','2021-05-14 07:42:48','','0050','','inherit','open','closed','','0050-2','','','2021-05-14 07:42:48','2021-05-14 07:42:48','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0050-1.jpg',0,'attachment','image/jpeg',0),(2889,8,'2021-05-14 07:43:03','2021-05-14 07:43:03','','0051','','inherit','open','closed','','0051-2','','','2021-05-14 07:43:03','2021-05-14 07:43:03','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0051-1.jpg',0,'attachment','image/jpeg',0),(2890,8,'2021-05-14 07:43:21','2021-05-14 07:43:21','','0052','','inherit','open','closed','','0052-2','','','2021-05-14 07:43:21','2021-05-14 07:43:21','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0052-1.jpg',0,'attachment','image/jpeg',0),(2891,8,'2021-05-14 07:43:38','2021-05-14 07:43:38','','0053','','inherit','open','closed','','0053-2','','','2021-05-14 07:43:38','2021-05-14 07:43:38','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0053-1.jpg',0,'attachment','image/jpeg',0),(2892,8,'2021-05-14 07:43:55','2021-05-14 07:43:55','','0054','','inherit','open','closed','','0054-2','','','2021-05-14 07:43:55','2021-05-14 07:43:55','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0054-1.jpg',0,'attachment','image/jpeg',0),(2893,8,'2021-05-14 07:44:11','2021-05-14 07:44:11','','0055','','inherit','open','closed','','0055-2','','','2021-05-14 07:44:11','2021-05-14 07:44:11','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0055-1.jpg',0,'attachment','image/jpeg',0),(2894,8,'2021-05-14 07:44:28','2021-05-14 07:44:28','','0056','','inherit','open','closed','','0056-2','','','2021-05-14 07:44:28','2021-05-14 07:44:28','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0056-1.jpg',0,'attachment','image/jpeg',0),(2895,8,'2021-05-14 07:44:43','2021-05-14 07:44:43','','0057','','inherit','open','closed','','0057','','','2021-05-14 07:44:43','2021-05-14 07:44:43','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0057.jpg',0,'attachment','image/jpeg',0),(2896,8,'2021-05-14 07:44:59','2021-05-14 07:44:59','','0058','','inherit','open','closed','','0058','','','2021-05-14 07:44:59','2021-05-14 07:44:59','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0058.jpg',0,'attachment','image/jpeg',0),(2897,8,'2021-05-14 07:45:15','2021-05-14 07:45:15','','0059','','inherit','open','closed','','0059','','','2021-05-14 07:45:15','2021-05-14 07:45:15','',2769,'https://om7717.dev34.info/wp-content/uploads/2021/05/0059.jpg',0,'attachment','image/jpeg',0),(2902,1,'2021-05-14 08:20:07','2021-05-14 08:20:07','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,500                 <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 08:20:07','2021-05-14 08:20:07','',881,'https://om7717.dev34.info/?p=2902',0,'revision','',0),(2900,1,'2021-05-14 08:11:58','2021-05-14 08:11:58','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Our Services</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Our Services</h2>		\n			<h6>real estate</h6>		\n			<h2>Buying or selling</h2>		\n		<p>When it comes to buying and selling property, we advise across all residential, rural and commercial markets.</p>		\n			<a href=\"https://rentex.wpopal.com/ihomefinder-search-form/\" role=\"button\">\n						Draw your search\n					</a>\n			<h6>property</h6>		\n			<h2>Investment</h2>		\n		<p>With specialists working across all property sectors, we are able to advise all types of client on investment opportunities in all corners of the globe.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Contact Us\n					</a>\n			<h6>finance</h6>		\n			<h2>Consultancy</h2>		\n		<p>As specialists in their field, our consultancy teams cover a vast number of needs across all types of property.</p>		\n			<a href=\"https://rentex.wpopal.com/contact-us/\" role=\"button\">\n						Get A Quote\n					</a>\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,500                 <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 08:11:58','2021-05-14 08:11:58','',881,'https://om7717.dev34.info/?p=2900',0,'revision','',0),(2903,1,'2021-05-14 08:22:30','2021-05-14 08:22:30','','2021-05-14','','inherit','open','closed','','2021-05-14','','','2021-05-14 08:22:30','2021-05-14 08:22:30','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg',0,'attachment','image/jpeg',0),(2904,1,'2021-05-14 08:24:15','2021-05-14 08:24:15','','2021-05-14 updated','','inherit','open','closed','','2021-05-14-updated','','','2021-05-14 08:24:15','2021-05-14 08:24:15','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-updated-.jpeg',0,'attachment','image/jpeg',0),(2905,1,'2021-05-14 08:33:36','2021-05-14 08:33:36','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,500                 <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 08:33:36','2021-05-14 08:33:36','',881,'https://om7717.dev34.info/?p=2905',0,'revision','',0),(2906,1,'2021-05-14 08:36:10','2021-05-14 08:36:10','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h6>Our exclusives</h6>		\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,500                 <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/extension-newhaven/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;2,900 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            5\n                            Baths\n                            1667\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n      10 \n        <a href=\"https://om7717.dev34.info/listing/morningside-residence/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,700 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            6\n                            Beds\n                            6\n                            Baths\n                            1295\n                            Sqft\n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 08:36:10','2021-05-14 08:36:10','',881,'https://om7717.dev34.info/?p=2906',0,'revision','',0),(2907,1,'2021-05-14 08:37:57','2021-05-14 08:37:57','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"479\" height=\"223\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-updated-.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-updated--300x140.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-updated-.jpeg 479w\" sizes=\"(max-width: 479px) 100vw, 479px\" />											\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 08:37:57','2021-05-14 08:37:57','',1771,'https://om7717.dev34.info/?p=2907',0,'revision','',0),(2908,1,'2021-05-14 08:47:39','2021-05-14 08:47:39','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-05-14 08:47:39','2021-05-14 08:47:39','',1771,'https://om7717.dev34.info/?p=2908',0,'revision','',0),(2911,8,'2021-05-14 08:51:42','2021-05-14 08:51:42','','0001','','inherit','open','closed','','0001-3','','','2021-05-14 08:51:42','2021-05-14 08:51:42','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2.jpg',0,'attachment','image/jpeg',0),(2912,8,'2021-05-14 08:51:58','2021-05-14 08:51:58','','0002','','inherit','open','closed','','0002-3','','','2021-05-14 08:51:58','2021-05-14 08:51:58','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0002-2.jpg',0,'attachment','image/jpeg',0),(2913,8,'2021-05-14 08:52:14','2021-05-14 08:52:14','','0003','','inherit','open','closed','','0003-3','','','2021-05-14 08:52:14','2021-05-14 08:52:14','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0003-2.jpg',0,'attachment','image/jpeg',0),(2914,8,'2021-05-14 08:52:29','2021-05-14 08:52:29','','0004','','inherit','open','closed','','0004-3','','','2021-05-14 08:52:29','2021-05-14 08:52:29','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0004-2.jpg',0,'attachment','image/jpeg',0),(2915,1,'2021-05-14 08:52:43','2021-05-14 08:52:43','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      10 \n        <a href=\"https://om7717.dev34.info/listing/cascade-blocks/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;5,000 2150 S Jones Blvd, Las Vegas, NV 89146, USA                <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                            1849\n                            Sqft\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://demo2wpopal.b-cdn.net/rentex/wp-content/uploads/2020/05/placeholder.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                                <!--Get Attribute Beds,Baths,Area-->\n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 08:52:43','2021-05-14 08:52:43','',881,'https://om7717.dev34.info/?p=2915',0,'revision','',0),(2916,8,'2021-05-14 08:52:44','2021-05-14 08:52:44','','0005','','inherit','open','closed','','0005-3','','','2021-05-14 08:52:44','2021-05-14 08:52:44','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0005-2.jpg',0,'attachment','image/jpeg',0),(2917,8,'2021-05-14 08:53:00','2021-05-14 08:53:00','','0006','','inherit','open','closed','','0006-3','','','2021-05-14 08:53:00','2021-05-14 08:53:00','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0006-2.jpg',0,'attachment','image/jpeg',0),(2918,8,'2021-05-14 08:53:15','2021-05-14 08:53:15','','0007','','inherit','open','closed','','0007-3','','','2021-05-14 08:53:15','2021-05-14 08:53:15','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0007-2.jpg',0,'attachment','image/jpeg',0),(2919,8,'2021-05-14 08:53:31','2021-05-14 08:53:31','','0008','','inherit','open','closed','','0008-3','','','2021-05-14 08:53:31','2021-05-14 08:53:31','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0008-2.jpg',0,'attachment','image/jpeg',0),(2920,8,'2021-05-14 08:53:47','2021-05-14 08:53:47','','0009','','inherit','open','closed','','0009-3','','','2021-05-14 08:53:47','2021-05-14 08:53:47','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0009-2.jpg',0,'attachment','image/jpeg',0),(2921,8,'2021-05-14 08:54:03','2021-05-14 08:54:03','','0010','','inherit','open','closed','','0010-3','','','2021-05-14 08:54:03','2021-05-14 08:54:03','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0010-2.jpg',0,'attachment','image/jpeg',0),(2922,8,'2021-05-14 08:54:18','2021-05-14 08:54:18','','0011','','inherit','open','closed','','0011-3','','','2021-05-14 08:54:18','2021-05-14 08:54:18','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0011-2.jpg',0,'attachment','image/jpeg',0),(2923,8,'2021-05-14 08:54:34','2021-05-14 08:54:34','','0012','','inherit','open','closed','','0012-4','','','2021-05-14 08:54:34','2021-05-14 08:54:34','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0012-3.jpg',0,'attachment','image/jpeg',0),(2924,8,'2021-05-14 08:54:50','2021-05-14 08:54:50','','0013','','inherit','open','closed','','0013-3','','','2021-05-14 08:54:50','2021-05-14 08:54:50','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0013-2.jpg',0,'attachment','image/jpeg',0),(2925,8,'2021-05-14 08:55:06','2021-05-14 08:55:06','','0014','','inherit','open','closed','','0014-3','','','2021-05-14 08:55:06','2021-05-14 08:55:06','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0014-2.jpg',0,'attachment','image/jpeg',0),(2926,8,'2021-05-14 08:55:22','2021-05-14 08:55:22','','0015','','inherit','open','closed','','0015-3','','','2021-05-14 08:55:22','2021-05-14 08:55:22','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0015-2.jpg',0,'attachment','image/jpeg',0),(2927,8,'2021-05-14 08:55:38','2021-05-14 08:55:38','','0016','','inherit','open','closed','','0016-3','','','2021-05-14 08:55:38','2021-05-14 08:55:38','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0016-2.jpg',0,'attachment','image/jpeg',0),(2928,8,'2021-05-14 08:55:53','2021-05-14 08:55:53','','0017','','inherit','open','closed','','0017-3','','','2021-05-14 08:55:53','2021-05-14 08:55:53','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0017-2.jpg',0,'attachment','image/jpeg',0),(2929,8,'2021-05-14 08:56:09','2021-05-14 08:56:09','','0018','','inherit','open','closed','','0018-3','','','2021-05-14 08:56:09','2021-05-14 08:56:09','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0018-2.jpg',0,'attachment','image/jpeg',0),(2930,8,'2021-05-14 08:56:24','2021-05-14 08:56:24','','0019','','inherit','open','closed','','0019-3','','','2021-05-14 08:56:24','2021-05-14 08:56:24','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0019-2.jpg',0,'attachment','image/jpeg',0),(2931,8,'2021-05-14 08:56:39','2021-05-14 08:56:39','','0020','','inherit','open','closed','','0020-3','','','2021-05-14 08:56:39','2021-05-14 08:56:39','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0020-2.jpg',0,'attachment','image/jpeg',0),(2932,8,'2021-05-14 08:56:54','2021-05-14 08:56:54','','0021','','inherit','open','closed','','0021-3','','','2021-05-14 08:56:54','2021-05-14 08:56:54','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0021-2.jpg',0,'attachment','image/jpeg',0),(2933,8,'2021-05-14 08:57:09','2021-05-14 08:57:09','','0022','','inherit','open','closed','','0022-3','','','2021-05-14 08:57:09','2021-05-14 08:57:09','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0022-2.jpg',0,'attachment','image/jpeg',0),(2934,8,'2021-05-14 08:57:24','2021-05-14 08:57:24','','0023','','inherit','open','closed','','0023-3','','','2021-05-14 08:57:24','2021-05-14 08:57:24','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0023-2.jpg',0,'attachment','image/jpeg',0),(2935,8,'2021-05-14 08:57:39','2021-05-14 08:57:39','','0024','','inherit','open','closed','','0024-3','','','2021-05-14 08:57:39','2021-05-14 08:57:39','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0024-2.jpg',0,'attachment','image/jpeg',0),(2936,8,'2021-05-14 08:57:54','2021-05-14 08:57:54','','0025','','inherit','open','closed','','0025-3','','','2021-05-14 08:57:54','2021-05-14 08:57:54','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0025-2.jpg',0,'attachment','image/jpeg',0),(2937,8,'2021-05-14 08:58:10','2021-05-14 08:58:10','','0026','','inherit','open','closed','','0026-3','','','2021-05-14 08:58:10','2021-05-14 08:58:10','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0026-2.jpg',0,'attachment','image/jpeg',0),(2938,8,'2021-05-14 08:58:25','2021-05-14 08:58:25','','0027','','inherit','open','closed','','0027-3','','','2021-05-14 08:58:25','2021-05-14 08:58:25','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0027-2.jpg',0,'attachment','image/jpeg',0),(2939,8,'2021-05-14 08:58:40','2021-05-14 08:58:40','','0028','','inherit','open','closed','','0028-3','','','2021-05-14 08:58:40','2021-05-14 08:58:40','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0028-2.jpg',0,'attachment','image/jpeg',0),(2940,8,'2021-05-14 08:58:55','2021-05-14 08:58:55','','0029','','inherit','open','closed','','0029-3','','','2021-05-14 08:58:55','2021-05-14 08:58:55','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0029-2.jpg',0,'attachment','image/jpeg',0),(2941,8,'2021-05-14 08:59:11','2021-05-14 08:59:11','','0030','','inherit','open','closed','','0030-3','','','2021-05-14 08:59:11','2021-05-14 08:59:11','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0030-2.jpg',0,'attachment','image/jpeg',0),(2942,8,'2021-05-14 08:59:26','2021-05-14 08:59:26','','0031','','inherit','open','closed','','0031-3','','','2021-05-14 08:59:26','2021-05-14 08:59:26','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0031-2.jpg',0,'attachment','image/jpeg',0),(2943,8,'2021-05-14 08:59:41','2021-05-14 08:59:41','','0032','','inherit','open','closed','','0032-3','','','2021-05-14 08:59:41','2021-05-14 08:59:41','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0032-2.jpg',0,'attachment','image/jpeg',0),(2944,8,'2021-05-14 08:59:56','2021-05-14 08:59:56','','0033','','inherit','open','closed','','0033-3','','','2021-05-14 08:59:56','2021-05-14 08:59:56','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0033-2.jpg',0,'attachment','image/jpeg',0),(2945,8,'2021-05-14 09:00:12','2021-05-14 09:00:12','','0034','','inherit','open','closed','','0034-3','','','2021-05-14 09:00:12','2021-05-14 09:00:12','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0034-2.jpg',0,'attachment','image/jpeg',0),(2946,8,'2021-05-14 09:00:27','2021-05-14 09:00:27','','0035','','inherit','open','closed','','0035-3','','','2021-05-14 09:00:27','2021-05-14 09:00:27','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0035-2.jpg',0,'attachment','image/jpeg',0),(2947,8,'2021-05-14 09:00:42','2021-05-14 09:00:42','','0036','','inherit','open','closed','','0036-3','','','2021-05-14 09:00:42','2021-05-14 09:00:42','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0036-2.jpg',0,'attachment','image/jpeg',0),(2948,8,'2021-05-14 09:00:58','2021-05-14 09:00:58','','0037','','inherit','open','closed','','0037-3','','','2021-05-14 09:00:58','2021-05-14 09:00:58','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0037-2.jpg',0,'attachment','image/jpeg',0),(2949,8,'2021-05-14 09:01:13','2021-05-14 09:01:13','','0038','','inherit','open','closed','','0038-3','','','2021-05-14 09:01:13','2021-05-14 09:01:13','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0038-2.jpg',0,'attachment','image/jpeg',0),(2950,8,'2021-05-14 09:01:29','2021-05-14 09:01:29','','0039','','inherit','open','closed','','0039-3','','','2021-05-14 09:01:29','2021-05-14 09:01:29','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0039-2.jpg',0,'attachment','image/jpeg',0),(2951,8,'2021-05-14 09:01:44','2021-05-14 09:01:44','','0040','','inherit','open','closed','','0040-3','','','2021-05-14 09:01:44','2021-05-14 09:01:44','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0040-2.jpg',0,'attachment','image/jpeg',0),(2952,8,'2021-05-14 09:01:59','2021-05-14 09:01:59','','0041','','inherit','open','closed','','0041-3','','','2021-05-14 09:01:59','2021-05-14 09:01:59','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0041-2.jpg',0,'attachment','image/jpeg',0),(2953,8,'2021-05-14 09:02:14','2021-05-14 09:02:14','','0042','','inherit','open','closed','','0042-3','','','2021-05-14 09:02:14','2021-05-14 09:02:14','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0042-2.jpg',0,'attachment','image/jpeg',0),(2954,8,'2021-05-14 09:02:29','2021-05-14 09:02:29','','0043','','inherit','open','closed','','0043-3','','','2021-05-14 09:02:29','2021-05-14 09:02:29','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0043-2.jpg',0,'attachment','image/jpeg',0),(2955,8,'2021-05-14 09:02:46','2021-05-14 09:02:46','','0044','','inherit','open','closed','','0044-3','','','2021-05-14 09:02:46','2021-05-14 09:02:46','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0044-2.jpg',0,'attachment','image/jpeg',0),(2956,8,'2021-05-14 09:03:02','2021-05-14 09:03:02','','0045','','inherit','open','closed','','0045-3','','','2021-05-14 09:03:02','2021-05-14 09:03:02','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0045-2.jpg',0,'attachment','image/jpeg',0),(2957,8,'2021-05-14 09:03:18','2021-05-14 09:03:18','','0046','','inherit','open','closed','','0046-3','','','2021-05-14 09:03:18','2021-05-14 09:03:18','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0046-2.jpg',0,'attachment','image/jpeg',0),(2958,8,'2021-05-14 09:03:33','2021-05-14 09:03:33','','0047','','inherit','open','closed','','0047-3','','','2021-05-14 09:03:33','2021-05-14 09:03:33','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0047-2.jpg',0,'attachment','image/jpeg',0),(2959,8,'2021-05-14 09:03:49','2021-05-14 09:03:49','','0048','','inherit','open','closed','','0048-3','','','2021-05-14 09:03:49','2021-05-14 09:03:49','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0048-2.jpg',0,'attachment','image/jpeg',0),(2960,8,'2021-05-14 09:04:04','2021-05-14 09:04:04','','0049','','inherit','open','closed','','0049-3','','','2021-05-14 09:04:04','2021-05-14 09:04:04','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0049-2.jpg',0,'attachment','image/jpeg',0),(2961,8,'2021-05-14 09:04:19','2021-05-14 09:04:19','','0050','','inherit','open','closed','','0050-3','','','2021-05-14 09:04:19','2021-05-14 09:04:19','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0050-2.jpg',0,'attachment','image/jpeg',0),(2962,8,'2021-05-14 09:04:34','2021-05-14 09:04:34','','0051','','inherit','open','closed','','0051-3','','','2021-05-14 09:04:34','2021-05-14 09:04:34','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0051-2.jpg',0,'attachment','image/jpeg',0),(2963,8,'2021-05-14 09:04:50','2021-05-14 09:04:50','','0052','','inherit','open','closed','','0052-3','','','2021-05-14 09:04:50','2021-05-14 09:04:50','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0052-2.jpg',0,'attachment','image/jpeg',0),(2964,8,'2021-05-14 09:05:05','2021-05-14 09:05:05','','0053','','inherit','open','closed','','0053-3','','','2021-05-14 09:05:05','2021-05-14 09:05:05','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0053-2.jpg',0,'attachment','image/jpeg',0),(2965,8,'2021-05-14 09:05:21','2021-05-14 09:05:21','','0054','','inherit','open','closed','','0054-3','','','2021-05-14 09:05:21','2021-05-14 09:05:21','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0054-2.jpg',0,'attachment','image/jpeg',0),(2966,8,'2021-05-14 09:05:36','2021-05-14 09:05:36','','0055','','inherit','open','closed','','0055-3','','','2021-05-14 09:05:36','2021-05-14 09:05:36','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0055-2.jpg',0,'attachment','image/jpeg',0),(2967,8,'2021-05-14 09:05:52','2021-05-14 09:05:52','','0056','','inherit','open','closed','','0056-3','','','2021-05-14 09:05:52','2021-05-14 09:05:52','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0056-2.jpg',0,'attachment','image/jpeg',0),(2968,8,'2021-05-14 09:06:08','2021-05-14 09:06:08','','0057','','inherit','open','closed','','0057-2','','','2021-05-14 09:06:08','2021-05-14 09:06:08','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0057-1.jpg',0,'attachment','image/jpeg',0),(2969,8,'2021-05-14 09:06:22','2021-05-14 09:06:22','','0058','','inherit','open','closed','','0058-2','','','2021-05-14 09:06:22','2021-05-14 09:06:22','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0058-1.jpg',0,'attachment','image/jpeg',0),(2970,8,'2021-05-14 09:06:38','2021-05-14 09:06:38','','0059','','inherit','open','closed','','0059-2','','','2021-05-14 09:06:38','2021-05-14 09:06:38','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0059-1.jpg',0,'attachment','image/jpeg',0),(2971,8,'2021-05-14 09:06:54','2021-05-14 09:06:54','','0060','','inherit','open','closed','','0060','','','2021-05-14 09:06:54','2021-05-14 09:06:54','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0060.jpg',0,'attachment','image/jpeg',0),(2972,8,'2021-05-14 09:07:08','2021-05-14 09:07:08','','0061','','inherit','open','closed','','0061','','','2021-05-14 09:07:08','2021-05-14 09:07:08','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0061.jpg',0,'attachment','image/jpeg',0),(2973,8,'2021-05-14 09:07:23','2021-05-14 09:07:23','','0062','','inherit','open','closed','','0062','','','2021-05-14 09:07:23','2021-05-14 09:07:23','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0062.jpg',0,'attachment','image/jpeg',0),(2974,8,'2021-05-14 09:07:39','2021-05-14 09:07:39','','0063','','inherit','open','closed','','0063','','','2021-05-14 09:07:39','2021-05-14 09:07:39','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0063.jpg',0,'attachment','image/jpeg',0),(2975,8,'2021-05-14 09:07:54','2021-05-14 09:07:54','','0064','','inherit','open','closed','','0064','','','2021-05-14 09:07:54','2021-05-14 09:07:54','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0064.jpg',0,'attachment','image/jpeg',0),(2976,8,'2021-05-14 09:08:08','2021-05-14 09:08:08','','0065','','inherit','open','closed','','0065','','','2021-05-14 09:08:08','2021-05-14 09:08:08','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0065.jpg',0,'attachment','image/jpeg',0),(2977,8,'2021-05-14 09:08:22','2021-05-14 09:08:22','','0066','','inherit','open','closed','','0066','','','2021-05-14 09:08:22','2021-05-14 09:08:22','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0066.jpg',0,'attachment','image/jpeg',0),(2978,8,'2021-05-14 09:08:36','2021-05-14 09:08:36','','0067','','inherit','open','closed','','0067','','','2021-05-14 09:08:36','2021-05-14 09:08:36','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0067.jpg',0,'attachment','image/jpeg',0),(2979,8,'2021-05-14 09:08:51','2021-05-14 09:08:51','','0068','','inherit','open','closed','','0068','','','2021-05-14 09:08:51','2021-05-14 09:08:51','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0068.jpg',0,'attachment','image/jpeg',0),(2980,8,'2021-05-14 09:09:05','2021-05-14 09:09:05','','0069','','inherit','open','closed','','0069','','','2021-05-14 09:09:05','2021-05-14 09:09:05','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0069.jpg',0,'attachment','image/jpeg',0),(2981,8,'2021-05-14 09:09:19','2021-05-14 09:09:19','','0070','','inherit','open','closed','','0070','','','2021-05-14 09:09:19','2021-05-14 09:09:19','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0070.jpg',0,'attachment','image/jpeg',0),(2982,8,'2021-05-14 09:09:33','2021-05-14 09:09:33','','0071','','inherit','open','closed','','0071','','','2021-05-14 09:09:33','2021-05-14 09:09:33','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0071.jpg',0,'attachment','image/jpeg',0),(2983,8,'2021-05-14 09:09:46','2021-05-14 09:09:46','','0072','','inherit','open','closed','','0072','','','2021-05-14 09:09:46','2021-05-14 09:09:46','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0072.jpg',0,'attachment','image/jpeg',0),(2984,8,'2021-05-14 09:10:01','2021-05-14 09:10:01','','0073','','inherit','open','closed','','0073','','','2021-05-14 09:10:01','2021-05-14 09:10:01','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0073.jpg',0,'attachment','image/jpeg',0),(2985,8,'2021-05-14 09:10:16','2021-05-14 09:10:16','','0074','','inherit','open','closed','','0074','','','2021-05-14 09:10:16','2021-05-14 09:10:16','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0074.jpg',0,'attachment','image/jpeg',0),(2986,8,'2021-05-14 09:10:30','2021-05-14 09:10:30','','0075','','inherit','open','closed','','0075','','','2021-05-14 09:10:30','2021-05-14 09:10:30','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0075.jpg',0,'attachment','image/jpeg',0),(2987,8,'2021-05-14 09:10:44','2021-05-14 09:10:44','','0076','','inherit','open','closed','','0076','','','2021-05-14 09:10:44','2021-05-14 09:10:44','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0076.jpg',0,'attachment','image/jpeg',0),(2988,8,'2021-05-14 09:11:00','2021-05-14 09:11:00','','0077','','inherit','open','closed','','0077','','','2021-05-14 09:11:00','2021-05-14 09:11:00','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0077.jpg',0,'attachment','image/jpeg',0),(2989,8,'2021-05-14 09:11:15','2021-05-14 09:11:15','','0078','','inherit','open','closed','','0078','','','2021-05-14 09:11:15','2021-05-14 09:11:15','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0078.jpg',0,'attachment','image/jpeg',0),(2990,8,'2021-05-14 09:11:29','2021-05-14 09:11:29','','0079','','inherit','open','closed','','0079','','','2021-05-14 09:11:29','2021-05-14 09:11:29','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0079.jpg',0,'attachment','image/jpeg',0),(2991,8,'2021-05-14 09:11:43','2021-05-14 09:11:43','','0080','','inherit','open','closed','','0080','','','2021-05-14 09:11:43','2021-05-14 09:11:43','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0080.jpg',0,'attachment','image/jpeg',0),(2992,8,'2021-05-14 09:11:57','2021-05-14 09:11:57','','0081','','inherit','open','closed','','0081','','','2021-05-14 09:11:57','2021-05-14 09:11:57','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0081.jpg',0,'attachment','image/jpeg',0),(2993,8,'2021-05-14 09:12:12','2021-05-14 09:12:12','','0082','','inherit','open','closed','','0082','','','2021-05-14 09:12:12','2021-05-14 09:12:12','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0082.jpg',0,'attachment','image/jpeg',0),(2994,8,'2021-05-14 09:12:27','2021-05-14 09:12:27','','0083','','inherit','open','closed','','0083','','','2021-05-14 09:12:27','2021-05-14 09:12:27','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0083.jpg',0,'attachment','image/jpeg',0),(2995,8,'2021-05-14 09:12:42','2021-05-14 09:12:42','','0084','','inherit','open','closed','','0084','','','2021-05-14 09:12:42','2021-05-14 09:12:42','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0084.jpg',0,'attachment','image/jpeg',0),(2996,8,'2021-05-14 09:12:57','2021-05-14 09:12:57','','0085','','inherit','open','closed','','0085','','','2021-05-14 09:12:57','2021-05-14 09:12:57','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0085.jpg',0,'attachment','image/jpeg',0),(2997,8,'2021-05-14 09:13:11','2021-05-14 09:13:11','','0086','','inherit','open','closed','','0086','','','2021-05-14 09:13:11','2021-05-14 09:13:11','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0086.jpg',0,'attachment','image/jpeg',0),(2998,8,'2021-05-14 09:13:25','2021-05-14 09:13:25','','0087','','inherit','open','closed','','0087','','','2021-05-14 09:13:25','2021-05-14 09:13:25','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0087.jpg',0,'attachment','image/jpeg',0),(2999,8,'2021-05-14 09:13:39','2021-05-14 09:13:39','','0088','','inherit','open','closed','','0088','','','2021-05-14 09:13:39','2021-05-14 09:13:39','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0088.jpg',0,'attachment','image/jpeg',0),(3000,8,'2021-05-14 09:13:54','2021-05-14 09:13:54','','0089','','inherit','open','closed','','0089','','','2021-05-14 09:13:54','2021-05-14 09:13:54','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0089.jpg',0,'attachment','image/jpeg',0),(3001,8,'2021-05-14 09:14:08','2021-05-14 09:14:08','','0090','','inherit','open','closed','','0090','','','2021-05-14 09:14:08','2021-05-14 09:14:08','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0090.jpg',0,'attachment','image/jpeg',0),(3002,8,'2021-05-14 09:14:22','2021-05-14 09:14:22','','0091','','inherit','open','closed','','0091','','','2021-05-14 09:14:22','2021-05-14 09:14:22','',2779,'https://om7717.dev34.info/wp-content/uploads/2021/05/0091.jpg',0,'attachment','image/jpeg',0),(3003,8,'2021-05-14 09:40:36','2021-05-14 09:40:36','','1','','inherit','open','closed','','1','','','2021-05-14 09:40:36','2021-05-14 09:40:36','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/1.jpg',0,'attachment','image/jpeg',0),(3004,8,'2021-05-14 09:40:40','2021-05-14 09:40:40','','2','','inherit','open','closed','','2','','','2021-05-14 09:40:40','2021-05-14 09:40:40','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/2.jpg',0,'attachment','image/jpeg',0),(3005,8,'2021-05-14 09:40:43','2021-05-14 09:40:43','','3','','inherit','open','closed','','3','','','2021-05-14 09:40:43','2021-05-14 09:40:43','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/3.jpg',0,'attachment','image/jpeg',0),(3006,8,'2021-05-14 09:40:47','2021-05-14 09:40:47','','4','','inherit','open','closed','','4','','','2021-05-14 09:40:47','2021-05-14 09:40:47','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/4.jpg',0,'attachment','image/jpeg',0),(3007,8,'2021-05-14 09:40:51','2021-05-14 09:40:51','','5','','inherit','open','closed','','5','','','2021-05-14 09:40:51','2021-05-14 09:40:51','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/5.jpg',0,'attachment','image/jpeg',0),(3008,8,'2021-05-14 09:40:54','2021-05-14 09:40:54','','8','','inherit','open','closed','','8','','','2021-05-14 09:40:54','2021-05-14 09:40:54','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/8.jpg',0,'attachment','image/jpeg',0),(3009,8,'2021-05-14 09:40:58','2021-05-14 09:40:58','','9','','inherit','open','closed','','9','','','2021-05-14 09:40:58','2021-05-14 09:40:58','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/9.jpg',0,'attachment','image/jpeg',0),(3010,8,'2021-05-14 09:41:01','2021-05-14 09:41:01','','10','','inherit','open','closed','','10','','','2021-05-14 09:41:01','2021-05-14 09:41:01','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/10.jpg',0,'attachment','image/jpeg',0),(3011,8,'2021-05-14 09:41:04','2021-05-14 09:41:04','','11','','inherit','open','closed','','11','','','2021-05-14 09:41:04','2021-05-14 09:41:04','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/11.jpg',0,'attachment','image/jpeg',0),(3012,8,'2021-05-14 09:41:07','2021-05-14 09:41:07','','12','','inherit','open','closed','','12','','','2021-05-14 09:41:07','2021-05-14 09:41:07','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/12.jpg',0,'attachment','image/jpeg',0),(3013,8,'2021-05-14 09:41:10','2021-05-14 09:41:10','','15','','inherit','open','closed','','15','','','2021-05-14 09:41:10','2021-05-14 09:41:10','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/15.jpg',0,'attachment','image/jpeg',0),(3014,8,'2021-05-14 09:41:14','2021-05-14 09:41:14','','16','','inherit','open','closed','','16','','','2021-05-14 09:41:14','2021-05-14 09:41:14','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/16.jpg',0,'attachment','image/jpeg',0),(3015,8,'2021-05-14 09:41:17','2021-05-14 09:41:17','','17_','','inherit','open','closed','','17_','','','2021-05-14 09:41:17','2021-05-14 09:41:17','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/17_.jpg',0,'attachment','image/jpeg',0),(3016,8,'2021-05-14 09:41:20','2021-05-14 09:41:20','','18','','inherit','open','closed','','18','','','2021-05-14 09:41:20','2021-05-14 09:41:20','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/18.jpg',0,'attachment','image/jpeg',0),(3017,8,'2021-05-14 09:41:23','2021-05-14 09:41:23','','19','','inherit','open','closed','','19','','','2021-05-14 09:41:23','2021-05-14 09:41:23','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/19.jpg',0,'attachment','image/jpeg',0),(3018,8,'2021-05-14 09:41:26','2021-05-14 09:41:26','','22','','inherit','open','closed','','22','','','2021-05-14 09:41:26','2021-05-14 09:41:26','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/22.jpg',0,'attachment','image/jpeg',0),(3019,8,'2021-05-14 09:41:30','2021-05-14 09:41:30','','23','','inherit','open','closed','','23','','','2021-05-14 09:41:30','2021-05-14 09:41:30','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/23.jpg',0,'attachment','image/jpeg',0),(3020,8,'2021-05-14 09:41:33','2021-05-14 09:41:33','','24','','inherit','open','closed','','24','','','2021-05-14 09:41:33','2021-05-14 09:41:33','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/24.jpg',0,'attachment','image/jpeg',0),(3021,8,'2021-05-14 09:41:36','2021-05-14 09:41:36','','25','','inherit','open','closed','','25','','','2021-05-14 09:41:36','2021-05-14 09:41:36','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/25.jpg',0,'attachment','image/jpeg',0),(3022,8,'2021-05-14 09:41:39','2021-05-14 09:41:39','','26','','inherit','open','closed','','26','','','2021-05-14 09:41:39','2021-05-14 09:41:39','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/26.jpg',0,'attachment','image/jpeg',0),(3023,8,'2021-05-14 09:41:42','2021-05-14 09:41:42','','29','','inherit','open','closed','','29','','','2021-05-14 09:41:42','2021-05-14 09:41:42','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/29.jpg',0,'attachment','image/jpeg',0),(3024,8,'2021-05-14 09:41:45','2021-05-14 09:41:45','','30','','inherit','open','closed','','30','','','2021-05-14 09:41:45','2021-05-14 09:41:45','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/30.jpg',0,'attachment','image/jpeg',0),(3025,8,'2021-05-14 09:41:48','2021-05-14 09:41:48','','31','','inherit','open','closed','','31','','','2021-05-14 09:41:48','2021-05-14 09:41:48','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/31.jpg',0,'attachment','image/jpeg',0),(3026,8,'2021-05-14 09:41:52','2021-05-14 09:41:52','','32','','inherit','open','closed','','32','','','2021-05-14 09:41:52','2021-05-14 09:41:52','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/32.jpg',0,'attachment','image/jpeg',0),(3027,8,'2021-05-14 09:41:55','2021-05-14 09:41:55','','33','','inherit','open','closed','','33','','','2021-05-14 09:41:55','2021-05-14 09:41:55','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/33.jpg',0,'attachment','image/jpeg',0),(3028,8,'2021-05-14 09:41:59','2021-05-14 09:41:59','','36','','inherit','open','closed','','36','','','2021-05-14 09:41:59','2021-05-14 09:41:59','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/36.jpg',0,'attachment','image/jpeg',0),(3029,8,'2021-05-14 09:42:02','2021-05-14 09:42:02','','37','','inherit','open','closed','','37','','','2021-05-14 09:42:02','2021-05-14 09:42:02','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/37.jpg',0,'attachment','image/jpeg',0),(3030,8,'2021-05-14 09:42:05','2021-05-14 09:42:05','','38','','inherit','open','closed','','38','','','2021-05-14 09:42:05','2021-05-14 09:42:05','',2781,'https://om7717.dev34.info/wp-content/uploads/2021/05/38.jpg',0,'attachment','image/jpeg',0),(3032,8,'2021-05-14 09:52:52','2021-05-14 09:52:52','','DZ5A2663','','inherit','open','closed','','dz5a2663','','','2021-05-14 09:52:52','2021-05-14 09:52:52','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2663.jpg',0,'attachment','image/jpeg',0),(3033,8,'2021-05-14 09:53:33','2021-05-14 09:53:33','','DZ5A2667','','inherit','open','closed','','dz5a2667','','','2021-05-14 09:53:33','2021-05-14 09:53:33','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667.jpg',0,'attachment','image/jpeg',0),(3034,8,'2021-05-14 09:54:13','2021-05-14 09:54:13','','DZ5A2675','','inherit','open','closed','','dz5a2675','','','2021-05-14 09:54:13','2021-05-14 09:54:13','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2675.jpg',0,'attachment','image/jpeg',0),(3035,8,'2021-05-14 09:54:59','2021-05-14 09:54:59','','DZ5A2679','','inherit','open','closed','','dz5a2679','','','2021-05-14 09:54:59','2021-05-14 09:54:59','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2679.jpg',0,'attachment','image/jpeg',0),(3036,8,'2021-05-14 09:55:39','2021-05-14 09:55:39','','DZ5A2687','','inherit','open','closed','','dz5a2687','','','2021-05-14 09:55:39','2021-05-14 09:55:39','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2687.jpg',0,'attachment','image/jpeg',0),(3037,8,'2021-05-14 09:56:32','2021-05-14 09:56:32','','DZ5A2695','','inherit','open','closed','','dz5a2695','','','2021-05-14 09:56:32','2021-05-14 09:56:32','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2695.jpg',0,'attachment','image/jpeg',0),(3038,8,'2021-05-14 09:57:12','2021-05-14 09:57:12','','DZ5A2699','','inherit','open','closed','','dz5a2699','','','2021-05-14 09:57:12','2021-05-14 09:57:12','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2699.jpg',0,'attachment','image/jpeg',0),(3039,8,'2021-05-14 09:57:50','2021-05-14 09:57:50','','DZ5A2724','','inherit','open','closed','','dz5a2724','','','2021-05-14 09:57:50','2021-05-14 09:57:50','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2724.jpg',0,'attachment','image/jpeg',0),(3040,8,'2021-05-14 09:58:26','2021-05-14 09:58:26','','DZ5A2728','','inherit','open','closed','','dz5a2728','','','2021-05-14 09:58:26','2021-05-14 09:58:26','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2728.jpg',0,'attachment','image/jpeg',0),(3041,8,'2021-05-14 09:59:04','2021-05-14 09:59:04','','DZ5A2730','','inherit','open','closed','','dz5a2730','','','2021-05-14 09:59:04','2021-05-14 09:59:04','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2730.jpg',0,'attachment','image/jpeg',0),(3042,8,'2021-05-14 09:59:40','2021-05-14 09:59:40','','DZ5A2737','','inherit','open','closed','','dz5a2737','','','2021-05-14 09:59:40','2021-05-14 09:59:40','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2737.jpg',0,'attachment','image/jpeg',0),(3043,8,'2021-05-14 10:00:22','2021-05-14 10:00:22','','DZ5A2740','','inherit','open','closed','','dz5a2740','','','2021-05-14 10:00:22','2021-05-14 10:00:22','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2740.jpg',0,'attachment','image/jpeg',0),(3044,8,'2021-05-14 10:00:58','2021-05-14 10:00:58','','DZ5A2744','','inherit','open','closed','','dz5a2744','','','2021-05-14 10:00:58','2021-05-14 10:00:58','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2744.jpg',0,'attachment','image/jpeg',0),(3045,8,'2021-05-14 10:01:32','2021-05-14 10:01:32','','DZ5A2747','','inherit','open','closed','','dz5a2747','','','2021-05-14 10:01:32','2021-05-14 10:01:32','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2747.jpg',0,'attachment','image/jpeg',0),(3046,8,'2021-05-14 10:02:08','2021-05-14 10:02:08','','DZ5A2751','','inherit','open','closed','','dz5a2751','','','2021-05-14 10:02:08','2021-05-14 10:02:08','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2751.jpg',0,'attachment','image/jpeg',0),(3047,8,'2021-05-14 10:02:45','2021-05-14 10:02:45','','DZ5A2755','','inherit','open','closed','','dz5a2755','','','2021-05-14 10:02:45','2021-05-14 10:02:45','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2755.jpg',0,'attachment','image/jpeg',0),(3048,8,'2021-05-14 10:03:23','2021-05-14 10:03:23','','DZ5A2761','','inherit','open','closed','','dz5a2761','','','2021-05-14 10:03:23','2021-05-14 10:03:23','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2761.jpg',0,'attachment','image/jpeg',0),(3049,8,'2021-05-14 10:04:02','2021-05-14 10:04:02','','DZ5A2765','','inherit','open','closed','','dz5a2765','','','2021-05-14 10:04:02','2021-05-14 10:04:02','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2765.jpg',0,'attachment','image/jpeg',0),(3050,8,'2021-05-14 10:04:50','2021-05-14 10:04:50','','DZ5A2768','','inherit','open','closed','','dz5a2768','','','2021-05-14 10:04:50','2021-05-14 10:04:50','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2768.jpg',0,'attachment','image/jpeg',0),(3051,8,'2021-05-14 10:05:28','2021-05-14 10:05:28','','DZ5A2774','','inherit','open','closed','','dz5a2774','','','2021-05-14 10:05:28','2021-05-14 10:05:28','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2774.jpg',0,'attachment','image/jpeg',0),(3052,8,'2021-05-14 10:06:07','2021-05-14 10:06:07','','DZ5A2778','','inherit','open','closed','','dz5a2778','','','2021-05-14 10:06:07','2021-05-14 10:06:07','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2778.jpg',0,'attachment','image/jpeg',0),(3053,8,'2021-05-14 10:06:44','2021-05-14 10:06:44','','DZ5A2782','','inherit','open','closed','','dz5a2782','','','2021-05-14 10:06:44','2021-05-14 10:06:44','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2782.jpg',0,'attachment','image/jpeg',0),(3054,8,'2021-05-14 10:07:19','2021-05-14 10:07:19','','DZ5A2790','','inherit','open','closed','','dz5a2790','','','2021-05-14 10:07:19','2021-05-14 10:07:19','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2790.jpg',0,'attachment','image/jpeg',0),(3055,8,'2021-05-14 10:07:53','2021-05-14 10:07:53','','DZ5A2794','','inherit','open','closed','','dz5a2794','','','2021-05-14 10:07:53','2021-05-14 10:07:53','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2794.jpg',0,'attachment','image/jpeg',0),(3056,8,'2021-05-14 10:08:28','2021-05-14 10:08:28','','DZ5A2799','','inherit','open','closed','','dz5a2799','','','2021-05-14 10:08:28','2021-05-14 10:08:28','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2799.jpg',0,'attachment','image/jpeg',0),(3057,8,'2021-05-14 10:09:02','2021-05-14 10:09:02','','DZ5A2803','','inherit','open','closed','','dz5a2803','','','2021-05-14 10:09:02','2021-05-14 10:09:02','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2803.jpg',0,'attachment','image/jpeg',0),(3058,8,'2021-05-14 10:09:36','2021-05-14 10:09:36','','DZ5A2808','','inherit','open','closed','','dz5a2808','','','2021-05-14 10:09:36','2021-05-14 10:09:36','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2808.jpg',0,'attachment','image/jpeg',0),(3059,8,'2021-05-14 10:10:13','2021-05-14 10:10:13','','DZ5A2812','','inherit','open','closed','','dz5a2812','','','2021-05-14 10:10:13','2021-05-14 10:10:13','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2812.jpg',0,'attachment','image/jpeg',0),(3060,8,'2021-05-14 10:10:48','2021-05-14 10:10:48','','DZ5A2815','','inherit','open','closed','','dz5a2815','','','2021-05-14 10:10:48','2021-05-14 10:10:48','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2815.jpg',0,'attachment','image/jpeg',0),(3061,8,'2021-05-14 10:11:23','2021-05-14 10:11:23','','DZ5A2816','','inherit','open','closed','','dz5a2816','','','2021-05-14 10:11:23','2021-05-14 10:11:23','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2816.jpg',0,'attachment','image/jpeg',0),(3062,8,'2021-05-14 10:11:56','2021-05-14 10:11:56','','DZ5A2821','','inherit','open','closed','','dz5a2821','','','2021-05-14 10:11:56','2021-05-14 10:11:56','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2821.jpg',0,'attachment','image/jpeg',0),(3063,8,'2021-05-14 10:12:31','2021-05-14 10:12:31','','DZ5A2825','','inherit','open','closed','','dz5a2825','','','2021-05-14 10:12:31','2021-05-14 10:12:31','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2825.jpg',0,'attachment','image/jpeg',0),(3064,8,'2021-05-14 10:13:06','2021-05-14 10:13:06','','DZ5A2826','','inherit','open','closed','','dz5a2826','','','2021-05-14 10:13:06','2021-05-14 10:13:06','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2826.jpg',0,'attachment','image/jpeg',0),(3065,8,'2021-05-14 10:13:43','2021-05-14 10:13:43','','DZ5A2833','','inherit','open','closed','','dz5a2833','','','2021-05-14 10:13:43','2021-05-14 10:13:43','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2833.jpg',0,'attachment','image/jpeg',0),(3066,8,'2021-05-14 10:14:18','2021-05-14 10:14:18','','DZ5A2838','','inherit','open','closed','','dz5a2838','','','2021-05-14 10:14:18','2021-05-14 10:14:18','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2838.jpg',0,'attachment','image/jpeg',0),(3067,8,'2021-05-14 10:14:51','2021-05-14 10:14:51','','DZ5A2843','','inherit','open','closed','','dz5a2843','','','2021-05-14 10:14:51','2021-05-14 10:14:51','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2843.jpg',0,'attachment','image/jpeg',0),(3068,8,'2021-05-14 10:15:27','2021-05-14 10:15:27','','DZ5A2845','','inherit','open','closed','','dz5a2845','','','2021-05-14 10:15:27','2021-05-14 10:15:27','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2845.jpg',0,'attachment','image/jpeg',0),(3069,8,'2021-05-14 10:16:02','2021-05-14 10:16:02','','DZ5A2853','','inherit','open','closed','','dz5a2853','','','2021-05-14 10:16:02','2021-05-14 10:16:02','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2853.jpg',0,'attachment','image/jpeg',0),(3070,8,'2021-05-14 10:16:35','2021-05-14 10:16:35','','DZ5A2860','','inherit','open','closed','','dz5a2860','','','2021-05-14 10:16:35','2021-05-14 10:16:35','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2860.jpg',0,'attachment','image/jpeg',0),(3071,8,'2021-05-14 10:17:09','2021-05-14 10:17:09','','DZ5A2865','','inherit','open','closed','','dz5a2865','','','2021-05-14 10:17:09','2021-05-14 10:17:09','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2865.jpg',0,'attachment','image/jpeg',0),(3072,8,'2021-05-14 10:17:48','2021-05-14 10:17:48','','DZ5A2870','','inherit','open','closed','','dz5a2870','','','2021-05-14 10:17:48','2021-05-14 10:17:48','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2870.jpg',0,'attachment','image/jpeg',0),(3073,8,'2021-05-14 10:18:08','2021-05-14 10:18:08','','DZ5A2870','','inherit','open','closed','','dz5a2870-2','','','2021-05-14 10:18:08','2021-05-14 10:18:08','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2870-1.jpg',0,'attachment','image/jpeg',0),(3074,8,'2021-05-14 10:18:45','2021-05-14 10:18:45','','DZ5A2873','','inherit','open','closed','','dz5a2873','','','2021-05-14 10:18:45','2021-05-14 10:18:45','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2873.jpg',0,'attachment','image/jpeg',0),(3075,8,'2021-05-14 10:19:24','2021-05-14 10:19:24','','DZ5A2876','','inherit','open','closed','','dz5a2876','','','2021-05-14 10:19:24','2021-05-14 10:19:24','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2876.jpg',0,'attachment','image/jpeg',0),(3076,8,'2021-05-14 10:20:07','2021-05-14 10:20:07','','DZ5A2880','','inherit','open','closed','','dz5a2880','','','2021-05-14 10:20:07','2021-05-14 10:20:07','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2880.jpg',0,'attachment','image/jpeg',0),(3077,8,'2021-05-14 10:20:48','2021-05-14 10:20:48','','DZ5A2890','','inherit','open','closed','','dz5a2890','','','2021-05-14 10:20:48','2021-05-14 10:20:48','',2790,'https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2890.jpg',0,'attachment','image/jpeg',0),(3079,8,'2021-05-14 10:25:59','2021-05-14 10:25:59','','2','','inherit','open','closed','','2-2','','','2021-05-14 10:25:59','2021-05-14 10:25:59','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/2-1.jpg',0,'attachment','image/jpeg',0),(3080,8,'2021-05-14 10:26:01','2021-05-14 10:26:01','','3','','inherit','open','closed','','3-2','','','2021-05-14 10:26:01','2021-05-14 10:26:01','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/3-1.jpg',0,'attachment','image/jpeg',0),(3081,8,'2021-05-14 10:26:03','2021-05-14 10:26:03','','4','','inherit','open','closed','','4-2','','','2021-05-14 10:26:03','2021-05-14 10:26:03','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/4-1.jpg',0,'attachment','image/jpeg',0),(3082,8,'2021-05-14 10:26:05','2021-05-14 10:26:05','','5','','inherit','open','closed','','5-2','','','2021-05-14 10:26:05','2021-05-14 10:26:05','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/5-1.jpg',0,'attachment','image/jpeg',0),(3083,8,'2021-05-14 10:26:07','2021-05-14 10:26:07','','6','','inherit','open','closed','','6','','','2021-05-14 10:26:07','2021-05-14 10:26:07','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/6.jpg',0,'attachment','image/jpeg',0),(3084,8,'2021-05-14 10:26:09','2021-05-14 10:26:09','','7','','inherit','open','closed','','7','','','2021-05-14 10:26:09','2021-05-14 10:26:09','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/7.jpg',0,'attachment','image/jpeg',0),(3085,8,'2021-05-14 10:26:11','2021-05-14 10:26:11','','8','','inherit','open','closed','','8-2','','','2021-05-14 10:26:11','2021-05-14 10:26:11','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/8-1.jpg',0,'attachment','image/jpeg',0),(3086,8,'2021-05-14 10:26:15','2021-05-14 10:26:15','','9','','inherit','open','closed','','9-2','','','2021-05-14 10:26:15','2021-05-14 10:26:15','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/9-1.jpg',0,'attachment','image/jpeg',0),(3087,8,'2021-05-14 10:26:33','2021-05-14 10:26:33','','10','','inherit','open','closed','','10-2','','','2021-05-14 10:26:33','2021-05-14 10:26:33','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/10-1.jpg',0,'attachment','image/jpeg',0),(3088,8,'2021-05-14 10:26:34','2021-05-14 10:26:34','','11','','inherit','open','closed','','11-2','','','2021-05-14 10:26:34','2021-05-14 10:26:34','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/11-1.jpg',0,'attachment','image/jpeg',0),(3089,8,'2021-05-14 10:26:36','2021-05-14 10:26:36','','12','','inherit','open','closed','','12-2','','','2021-05-14 10:26:36','2021-05-14 10:26:36','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/12-1.jpg',0,'attachment','image/jpeg',0),(3090,8,'2021-05-14 10:26:37','2021-05-14 10:26:37','','13','','inherit','open','closed','','13','','','2021-05-14 10:26:37','2021-05-14 10:26:37','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/13.jpg',0,'attachment','image/jpeg',0),(3091,8,'2021-05-14 10:26:40','2021-05-14 10:26:40','','14','','inherit','open','closed','','14','','','2021-05-14 10:26:40','2021-05-14 10:26:40','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/14.jpg',0,'attachment','image/jpeg',0),(3092,8,'2021-05-14 10:26:54','2021-05-14 10:26:54','','17','','inherit','open','closed','','17','','','2021-05-14 10:26:54','2021-05-14 10:26:54','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/17.jpg',0,'attachment','image/jpeg',0),(3093,8,'2021-05-14 10:27:11','2021-05-14 10:27:11','','18','','inherit','open','closed','','18-2','','','2021-05-14 10:27:11','2021-05-14 10:27:11','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/18-1.jpg',0,'attachment','image/jpeg',0),(3094,8,'2021-05-14 10:27:30','2021-05-14 10:27:30','','19','','inherit','open','closed','','19-2','','','2021-05-14 10:27:30','2021-05-14 10:27:30','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/19-1.jpg',0,'attachment','image/jpeg',0),(3095,8,'2021-05-14 10:27:46','2021-05-14 10:27:46','','20','','inherit','open','closed','','20','','','2021-05-14 10:27:46','2021-05-14 10:27:46','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/20.jpg',0,'attachment','image/jpeg',0),(3096,8,'2021-05-14 10:28:03','2021-05-14 10:28:03','','21','','inherit','open','closed','','21','','','2021-05-14 10:28:03','2021-05-14 10:28:03','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/21.jpg',0,'attachment','image/jpeg',0),(3097,8,'2021-05-14 10:28:18','2021-05-14 10:28:18','','22','','inherit','open','closed','','22-2','','','2021-05-14 10:28:18','2021-05-14 10:28:18','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/22-1.jpg',0,'attachment','image/jpeg',0),(3098,8,'2021-05-14 10:28:34','2021-05-14 10:28:34','','23','','inherit','open','closed','','23-2','','','2021-05-14 10:28:34','2021-05-14 10:28:34','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/23-1.jpg',0,'attachment','image/jpeg',0),(3099,8,'2021-05-14 10:28:51','2021-05-14 10:28:51','','24','','inherit','open','closed','','24-2','','','2021-05-14 10:28:51','2021-05-14 10:28:51','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/24-1.jpg',0,'attachment','image/jpeg',0),(3100,8,'2021-05-14 10:29:04','2021-05-14 10:29:04','','25','','inherit','open','closed','','25-2','','','2021-05-14 10:29:04','2021-05-14 10:29:04','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/25-1.jpg',0,'attachment','image/jpeg',0),(3101,8,'2021-05-14 10:29:05','2021-05-14 10:29:05','','26','','inherit','open','closed','','26-2','','','2021-05-14 10:29:05','2021-05-14 10:29:05','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/26-1.jpg',0,'attachment','image/jpeg',0),(3102,8,'2021-05-14 10:29:06','2021-05-14 10:29:06','','27','','inherit','open','closed','','27','','','2021-05-14 10:29:06','2021-05-14 10:29:06','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/27.jpg',0,'attachment','image/jpeg',0),(3103,8,'2021-05-14 10:29:07','2021-05-14 10:29:07','','28','','inherit','open','closed','','28','','','2021-05-14 10:29:07','2021-05-14 10:29:07','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/28.jpg',0,'attachment','image/jpeg',0),(3104,8,'2021-05-14 10:29:08','2021-05-14 10:29:08','','29','','inherit','open','closed','','29-2','','','2021-05-14 10:29:08','2021-05-14 10:29:08','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/29-1.jpg',0,'attachment','image/jpeg',0),(3105,8,'2021-05-14 10:29:09','2021-05-14 10:29:09','','30','','inherit','open','closed','','30-2','','','2021-05-14 10:29:09','2021-05-14 10:29:09','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/30-1.jpg',0,'attachment','image/jpeg',0),(3106,8,'2021-05-14 10:29:13','2021-05-14 10:29:13','','31','','inherit','open','closed','','31-2','','','2021-05-14 10:29:13','2021-05-14 10:29:13','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/31-1.jpg',0,'attachment','image/jpeg',0),(3107,8,'2021-05-14 10:29:27','2021-05-14 10:29:27','','32','','inherit','open','closed','','32-2','','','2021-05-14 10:29:27','2021-05-14 10:29:27','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/32-1.jpg',0,'attachment','image/jpeg',0),(3108,8,'2021-05-14 10:29:29','2021-05-14 10:29:29','','101','','inherit','open','closed','','101','','','2021-05-14 10:29:29','2021-05-14 10:29:29','',2788,'https://om7717.dev34.info/wp-content/uploads/2021/05/101.jpg',0,'attachment','image/jpeg',0),(3110,8,'2021-05-14 10:31:31','2021-05-14 10:31:31','','0002','','inherit','open','closed','','0002-4','','','2021-05-14 10:31:31','2021-05-14 10:31:31','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0002-3.jpg',0,'attachment','image/jpeg',0),(3111,8,'2021-05-14 10:31:34','2021-05-14 10:31:34','','00003','','inherit','open','closed','','00003','','','2021-05-14 10:31:34','2021-05-14 10:31:34','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/00003.jpg',0,'attachment','image/jpeg',0),(3112,8,'2021-05-14 10:31:37','2021-05-14 10:31:37','','00005','','inherit','open','closed','','00005','','','2021-05-14 10:31:37','2021-05-14 10:31:37','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/00005.jpg',0,'attachment','image/jpeg',0),(3113,8,'2021-05-14 10:31:41','2021-05-14 10:31:41','','00006','','inherit','open','closed','','00006','','','2021-05-14 10:31:41','2021-05-14 10:31:41','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/00006.jpg',0,'attachment','image/jpeg',0),(3114,8,'2021-05-14 10:31:46','2021-05-14 10:31:46','','00007','','inherit','open','closed','','00007','','','2021-05-14 10:31:46','2021-05-14 10:31:46','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/00007.jpg',0,'attachment','image/jpeg',0),(3115,8,'2021-05-14 10:31:50','2021-05-14 10:31:50','','00008','','inherit','open','closed','','00008','','','2021-05-14 10:31:50','2021-05-14 10:31:50','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/00008.jpg',0,'attachment','image/jpeg',0),(3116,8,'2021-05-14 10:31:54','2021-05-14 10:31:54','','00009','','inherit','open','closed','','00009','','','2021-05-14 10:31:54','2021-05-14 10:31:54','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/00009.jpg',0,'attachment','image/jpeg',0),(3117,8,'2021-05-14 10:31:57','2021-05-14 10:31:57','','0015','','inherit','open','closed','','0015-4','','','2021-05-14 10:31:57','2021-05-14 10:31:57','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0015-3.jpg',0,'attachment','image/jpeg',0),(3118,8,'2021-05-14 10:32:01','2021-05-14 10:32:01','','000016','','inherit','open','closed','','000016','','','2021-05-14 10:32:01','2021-05-14 10:32:01','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/000016.jpg',0,'attachment','image/jpeg',0),(3119,8,'2021-05-14 10:32:05','2021-05-14 10:32:05','','0000017','','inherit','open','closed','','0000017','','','2021-05-14 10:32:05','2021-05-14 10:32:05','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0000017.jpg',0,'attachment','image/jpeg',0),(3120,8,'2021-05-14 10:32:11','2021-05-14 10:32:11','','0000018','','inherit','open','closed','','0000018','','','2021-05-14 10:32:11','2021-05-14 10:32:11','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0000018.jpg',0,'attachment','image/jpeg',0),(3121,8,'2021-05-14 10:32:15','2021-05-14 10:32:15','','000019','','inherit','open','closed','','000019','','','2021-05-14 10:32:15','2021-05-14 10:32:15','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/000019.jpg',0,'attachment','image/jpeg',0),(3122,8,'2021-05-14 10:32:19','2021-05-14 10:32:19','','000020','','inherit','open','closed','','000020','','','2021-05-14 10:32:19','2021-05-14 10:32:19','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/000020.jpg',0,'attachment','image/jpeg',0),(3123,8,'2021-05-14 10:32:23','2021-05-14 10:32:23','','000021','','inherit','open','closed','','000021','','','2021-05-14 10:32:23','2021-05-14 10:32:23','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/000021.jpg',0,'attachment','image/jpeg',0),(3124,8,'2021-05-14 10:32:26','2021-05-14 10:32:26','','000022','','inherit','open','closed','','000022','','','2021-05-14 10:32:26','2021-05-14 10:32:26','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/000022.jpg',0,'attachment','image/jpeg',0),(3125,8,'2021-05-14 10:32:30','2021-05-14 10:32:30','','000023','','inherit','open','closed','','000023','','','2021-05-14 10:32:30','2021-05-14 10:32:30','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/000023.jpg',0,'attachment','image/jpeg',0),(3126,8,'2021-05-14 10:32:33','2021-05-14 10:32:33','','000024','','inherit','open','closed','','000024','','','2021-05-14 10:32:33','2021-05-14 10:32:33','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/000024.jpg',0,'attachment','image/jpeg',0),(3127,8,'2021-05-14 10:32:36','2021-05-14 10:32:36','','0024','','inherit','open','closed','','0024-4','','','2021-05-14 10:32:36','2021-05-14 10:32:36','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0024-3.jpg',0,'attachment','image/jpeg',0),(3128,8,'2021-05-14 10:32:39','2021-05-14 10:32:39','','000025','','inherit','open','closed','','000025','','','2021-05-14 10:32:39','2021-05-14 10:32:39','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/000025.jpg',0,'attachment','image/jpeg',0),(3129,8,'2021-05-14 10:32:41','2021-05-14 10:32:41','','0025','','inherit','open','closed','','0025-4','','','2021-05-14 10:32:41','2021-05-14 10:32:41','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0025-3.jpg',0,'attachment','image/jpeg',0),(3130,8,'2021-05-14 10:32:43','2021-05-14 10:32:43','','0000026','','inherit','open','closed','','0000026','','','2021-05-14 10:32:43','2021-05-14 10:32:43','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0000026.jpg',0,'attachment','image/jpeg',0),(3131,8,'2021-05-14 10:32:46','2021-05-14 10:32:46','','0026','','inherit','open','closed','','0026-4','','','2021-05-14 10:32:46','2021-05-14 10:32:46','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0026-3.jpg',0,'attachment','image/jpeg',0),(3132,8,'2021-05-14 10:32:48','2021-05-14 10:32:48','','0027','','inherit','open','closed','','0027-4','','','2021-05-14 10:32:48','2021-05-14 10:32:48','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0027-3.jpg',0,'attachment','image/jpeg',0),(3133,8,'2021-05-14 10:32:51','2021-05-14 10:32:51','','0028','','inherit','open','closed','','0028-4','','','2021-05-14 10:32:51','2021-05-14 10:32:51','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0028-3.jpg',0,'attachment','image/jpeg',0),(3134,8,'2021-05-14 10:32:54','2021-05-14 10:32:54','','0029','','inherit','open','closed','','0029-4','','','2021-05-14 10:32:54','2021-05-14 10:32:54','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0029-3.jpg',0,'attachment','image/jpeg',0),(3135,8,'2021-05-14 10:32:58','2021-05-14 10:32:58','','0030','','inherit','open','closed','','0030-4','','','2021-05-14 10:32:58','2021-05-14 10:32:58','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0030-3.jpg',0,'attachment','image/jpeg',0),(3136,8,'2021-05-14 10:33:00','2021-05-14 10:33:00','','0031','','inherit','open','closed','','0031-4','','','2021-05-14 10:33:00','2021-05-14 10:33:00','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0031-3.jpg',0,'attachment','image/jpeg',0),(3137,8,'2021-05-14 10:33:03','2021-05-14 10:33:03','','0032','','inherit','open','closed','','0032-4','','','2021-05-14 10:33:03','2021-05-14 10:33:03','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0032-3.jpg',0,'attachment','image/jpeg',0),(3138,8,'2021-05-14 10:33:05','2021-05-14 10:33:05','','0033','','inherit','open','closed','','0033-4','','','2021-05-14 10:33:05','2021-05-14 10:33:05','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0033-3.jpg',0,'attachment','image/jpeg',0),(3139,8,'2021-05-14 10:33:09','2021-05-14 10:33:09','','0034','','inherit','open','closed','','0034-4','','','2021-05-14 10:33:09','2021-05-14 10:33:09','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0034-3.jpg',0,'attachment','image/jpeg',0),(3140,8,'2021-05-14 10:33:12','2021-05-14 10:33:12','','0035','','inherit','open','closed','','0035-4','','','2021-05-14 10:33:12','2021-05-14 10:33:12','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0035-3.jpg',0,'attachment','image/jpeg',0),(3141,8,'2021-05-14 10:33:14','2021-05-14 10:33:14','','0036','','inherit','open','closed','','0036-4','','','2021-05-14 10:33:14','2021-05-14 10:33:14','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0036-3.jpg',0,'attachment','image/jpeg',0),(3142,8,'2021-05-14 10:33:18','2021-05-14 10:33:18','','0037','','inherit','open','closed','','0037-4','','','2021-05-14 10:33:18','2021-05-14 10:33:18','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0037-3.jpg',0,'attachment','image/jpeg',0),(3143,8,'2021-05-14 10:33:21','2021-05-14 10:33:21','','0038','','inherit','open','closed','','0038-4','','','2021-05-14 10:33:21','2021-05-14 10:33:21','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0038-3.jpg',0,'attachment','image/jpeg',0),(3144,8,'2021-05-14 10:33:24','2021-05-14 10:33:24','','0039','','inherit','open','closed','','0039-4','','','2021-05-14 10:33:24','2021-05-14 10:33:24','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0039-3.jpg',0,'attachment','image/jpeg',0),(3145,8,'2021-05-14 10:33:27','2021-05-14 10:33:27','','0040','','inherit','open','closed','','0040-4','','','2021-05-14 10:33:27','2021-05-14 10:33:27','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0040-3.jpg',0,'attachment','image/jpeg',0),(3146,8,'2021-05-14 10:33:30','2021-05-14 10:33:30','','0041','','inherit','open','closed','','0041-4','','','2021-05-14 10:33:30','2021-05-14 10:33:30','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/0041-3.jpg',0,'attachment','image/jpeg',0),(3147,8,'2021-05-14 10:33:34','2021-05-14 10:33:34','','45','','inherit','open','closed','','45','','','2021-05-14 10:33:34','2021-05-14 10:33:34','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/45.jpg',0,'attachment','image/jpeg',0),(3148,8,'2021-05-14 10:33:37','2021-05-14 10:33:37','','46','','inherit','open','closed','','46','','','2021-05-14 10:33:37','2021-05-14 10:33:37','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/46.jpg',0,'attachment','image/jpeg',0),(3149,8,'2021-05-14 10:33:40','2021-05-14 10:33:40','','47','','inherit','open','closed','','47','','','2021-05-14 10:33:40','2021-05-14 10:33:40','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/47.jpg',0,'attachment','image/jpeg',0),(3150,8,'2021-05-14 10:33:43','2021-05-14 10:33:43','','48','','inherit','open','closed','','48','','','2021-05-14 10:33:43','2021-05-14 10:33:43','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/48.jpg',0,'attachment','image/jpeg',0),(3151,8,'2021-05-14 10:33:47','2021-05-14 10:33:47','','49','','inherit','open','closed','','49','','','2021-05-14 10:33:47','2021-05-14 10:33:47','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/49.jpg',0,'attachment','image/jpeg',0),(3152,8,'2021-05-14 10:33:50','2021-05-14 10:33:50','','50','','inherit','open','closed','','50','','','2021-05-14 10:33:50','2021-05-14 10:33:50','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/50.jpg',0,'attachment','image/jpeg',0),(3153,8,'2021-05-14 10:33:52','2021-05-14 10:33:52','','51','','inherit','open','closed','','51','','','2021-05-14 10:33:52','2021-05-14 10:33:52','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/51.jpg',0,'attachment','image/jpeg',0),(3154,8,'2021-05-14 10:33:56','2021-05-14 10:33:56','','52','','inherit','open','closed','','52','','','2021-05-14 10:33:56','2021-05-14 10:33:56','',2786,'https://om7717.dev34.info/wp-content/uploads/2021/05/52.jpg',0,'attachment','image/jpeg',0),(3156,8,'2021-05-14 10:35:11','2021-05-14 10:35:11','','2','','inherit','open','closed','','2-3','','','2021-05-14 10:35:11','2021-05-14 10:35:11','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/2-2.jpg',0,'attachment','image/jpeg',0),(3157,8,'2021-05-14 10:35:12','2021-05-14 10:35:12','','3','','inherit','open','closed','','3-3','','','2021-05-14 10:35:12','2021-05-14 10:35:12','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/3-2.jpg',0,'attachment','image/jpeg',0),(3158,8,'2021-05-14 10:35:14','2021-05-14 10:35:14','','4','','inherit','open','closed','','4-3','','','2021-05-14 10:35:14','2021-05-14 10:35:14','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/4-2.jpg',0,'attachment','image/jpeg',0),(3159,8,'2021-05-14 10:35:15','2021-05-14 10:35:15','','5','','inherit','open','closed','','5-3','','','2021-05-14 10:35:15','2021-05-14 10:35:15','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/5-2.jpg',0,'attachment','image/jpeg',0),(3160,8,'2021-05-14 10:35:16','2021-05-14 10:35:16','','6','','inherit','open','closed','','6-2','','','2021-05-14 10:35:16','2021-05-14 10:35:16','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/6-1.jpg',0,'attachment','image/jpeg',0),(3161,8,'2021-05-14 10:35:17','2021-05-14 10:35:17','','7','','inherit','open','closed','','7-2','','','2021-05-14 10:35:17','2021-05-14 10:35:17','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/7-1.jpg',0,'attachment','image/jpeg',0),(3162,8,'2021-05-14 10:35:18','2021-05-14 10:35:18','','8','','inherit','open','closed','','8-3','','','2021-05-14 10:35:18','2021-05-14 10:35:18','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/8-2.jpg',0,'attachment','image/jpeg',0),(3163,8,'2021-05-14 10:35:20','2021-05-14 10:35:20','','9','','inherit','open','closed','','9-3','','','2021-05-14 10:35:20','2021-05-14 10:35:20','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/9-2.jpg',0,'attachment','image/jpeg',0),(3164,8,'2021-05-14 10:35:22','2021-05-14 10:35:22','','10','','inherit','open','closed','','10-3','','','2021-05-14 10:35:22','2021-05-14 10:35:22','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/10-2.jpg',0,'attachment','image/jpeg',0),(3165,8,'2021-05-14 10:35:24','2021-05-14 10:35:24','','11','','inherit','open','closed','','11-3','','','2021-05-14 10:35:24','2021-05-14 10:35:24','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/11-2.jpg',0,'attachment','image/jpeg',0),(3166,8,'2021-05-14 10:35:27','2021-05-14 10:35:27','','12','','inherit','open','closed','','12-3','','','2021-05-14 10:35:27','2021-05-14 10:35:27','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/12-2.jpg',0,'attachment','image/jpeg',0),(3167,8,'2021-05-14 10:35:28','2021-05-14 10:35:28','','13','','inherit','open','closed','','13-2','','','2021-05-14 10:35:28','2021-05-14 10:35:28','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/13-1.jpg',0,'attachment','image/jpeg',0),(3168,8,'2021-05-14 10:35:29','2021-05-14 10:35:29','','14','','inherit','open','closed','','14-2','','','2021-05-14 10:35:29','2021-05-14 10:35:29','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/14-1.jpg',0,'attachment','image/jpeg',0),(3169,8,'2021-05-14 10:35:31','2021-05-14 10:35:31','','15','','inherit','open','closed','','15-2','','','2021-05-14 10:35:31','2021-05-14 10:35:31','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/15-1.jpg',0,'attachment','image/jpeg',0),(3170,8,'2021-05-14 10:35:32','2021-05-14 10:35:32','','16','','inherit','open','closed','','16-2','','','2021-05-14 10:35:32','2021-05-14 10:35:32','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/16-1.jpg',0,'attachment','image/jpeg',0),(3171,8,'2021-05-14 10:35:33','2021-05-14 10:35:33','','17','','inherit','open','closed','','17-2','','','2021-05-14 10:35:33','2021-05-14 10:35:33','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/17-1.jpg',0,'attachment','image/jpeg',0),(3172,8,'2021-05-14 10:35:34','2021-05-14 10:35:34','','18','','inherit','open','closed','','18-3','','','2021-05-14 10:35:34','2021-05-14 10:35:34','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/18-2.jpg',0,'attachment','image/jpeg',0),(3173,8,'2021-05-14 10:35:35','2021-05-14 10:35:35','','19','','inherit','open','closed','','19-3','','','2021-05-14 10:35:35','2021-05-14 10:35:35','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/19-2.jpg',0,'attachment','image/jpeg',0),(3174,8,'2021-05-14 10:35:36','2021-05-14 10:35:36','','20','','inherit','open','closed','','20-2','','','2021-05-14 10:35:36','2021-05-14 10:35:36','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/20-1.jpg',0,'attachment','image/jpeg',0),(3175,8,'2021-05-14 10:35:38','2021-05-14 10:35:38','','21','','inherit','open','closed','','21-2','','','2021-05-14 10:35:38','2021-05-14 10:35:38','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/21-1.jpg',0,'attachment','image/jpeg',0),(3176,8,'2021-05-14 10:35:39','2021-05-14 10:35:39','','22','','inherit','open','closed','','22-3','','','2021-05-14 10:35:39','2021-05-14 10:35:39','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/22-2.jpg',0,'attachment','image/jpeg',0),(3177,8,'2021-05-14 10:35:40','2021-05-14 10:35:40','','23','','inherit','open','closed','','23-3','','','2021-05-14 10:35:40','2021-05-14 10:35:40','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/23-2.jpg',0,'attachment','image/jpeg',0),(3178,8,'2021-05-14 10:35:41','2021-05-14 10:35:41','','24','','inherit','open','closed','','24-3','','','2021-05-14 10:35:41','2021-05-14 10:35:41','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/24-2.jpg',0,'attachment','image/jpeg',0),(3179,8,'2021-05-14 10:35:42','2021-05-14 10:35:42','','25','','inherit','open','closed','','25-3','','','2021-05-14 10:35:42','2021-05-14 10:35:42','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/25-2.jpg',0,'attachment','image/jpeg',0),(3180,8,'2021-05-14 10:35:43','2021-05-14 10:35:43','','26','','inherit','open','closed','','26-3','','','2021-05-14 10:35:43','2021-05-14 10:35:43','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/26-2.jpg',0,'attachment','image/jpeg',0),(3181,8,'2021-05-14 10:35:44','2021-05-14 10:35:44','','27','','inherit','open','closed','','27-2','','','2021-05-14 10:35:44','2021-05-14 10:35:44','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/27-1.jpg',0,'attachment','image/jpeg',0),(3182,8,'2021-05-14 10:35:45','2021-05-14 10:35:45','','28','','inherit','open','closed','','28-2','','','2021-05-14 10:35:45','2021-05-14 10:35:45','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/28-1.jpg',0,'attachment','image/jpeg',0),(3183,8,'2021-05-14 10:35:46','2021-05-14 10:35:46','','29','','inherit','open','closed','','29-3','','','2021-05-14 10:35:46','2021-05-14 10:35:46','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/29-2.jpg',0,'attachment','image/jpeg',0),(3184,8,'2021-05-14 10:35:47','2021-05-14 10:35:47','','30','','inherit','open','closed','','30-3','','','2021-05-14 10:35:47','2021-05-14 10:35:47','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/30-2.jpg',0,'attachment','image/jpeg',0),(3185,8,'2021-05-14 10:35:48','2021-05-14 10:35:48','','31','','inherit','open','closed','','31-3','','','2021-05-14 10:35:48','2021-05-14 10:35:48','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/31-2.jpg',0,'attachment','image/jpeg',0),(3186,8,'2021-05-14 10:35:50','2021-05-14 10:35:50','','32','','inherit','open','closed','','32-3','','','2021-05-14 10:35:50','2021-05-14 10:35:50','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/32-2.jpg',0,'attachment','image/jpeg',0),(3187,8,'2021-05-14 10:35:52','2021-05-14 10:35:52','','33','','inherit','open','closed','','33-2','','','2021-05-14 10:35:52','2021-05-14 10:35:52','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/33-1.jpg',0,'attachment','image/jpeg',0),(3188,8,'2021-05-14 10:35:55','2021-05-14 10:35:55','','34','','inherit','open','closed','','34','','','2021-05-14 10:35:55','2021-05-14 10:35:55','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/34.jpg',0,'attachment','image/jpeg',0),(3189,8,'2021-05-14 10:35:57','2021-05-14 10:35:57','','35','','inherit','open','closed','','35','','','2021-05-14 10:35:57','2021-05-14 10:35:57','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/35.jpg',0,'attachment','image/jpeg',0),(3190,8,'2021-05-14 10:35:59','2021-05-14 10:35:59','','36','','inherit','open','closed','','36-2','','','2021-05-14 10:35:59','2021-05-14 10:35:59','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/36-1.jpg',0,'attachment','image/jpeg',0),(3191,8,'2021-05-14 10:36:00','2021-05-14 10:36:00','','37','','inherit','open','closed','','37-2','','','2021-05-14 10:36:00','2021-05-14 10:36:00','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/37-1.jpg',0,'attachment','image/jpeg',0),(3192,8,'2021-05-14 10:36:02','2021-05-14 10:36:02','','38','','inherit','open','closed','','38-2','','','2021-05-14 10:36:02','2021-05-14 10:36:02','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/38.jpeg',0,'attachment','image/jpeg',0),(3193,8,'2021-05-14 10:36:04','2021-05-14 10:36:04','','38','','inherit','open','closed','','38-3','','','2021-05-14 10:36:04','2021-05-14 10:36:04','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/38-1.jpg',0,'attachment','image/jpeg',0),(3194,8,'2021-05-14 10:36:07','2021-05-14 10:36:07','','39','','inherit','open','closed','','39','','','2021-05-14 10:36:07','2021-05-14 10:36:07','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/39.jpeg',0,'attachment','image/jpeg',0),(3195,8,'2021-05-14 10:36:09','2021-05-14 10:36:09','','40','','inherit','open','closed','','40','','','2021-05-14 10:36:09','2021-05-14 10:36:09','',2784,'https://om7717.dev34.info/wp-content/uploads/2021/05/40.jpeg',0,'attachment','image/jpeg',0),(3209,1,'2021-05-28 17:51:24','2021-05-28 17:51:24','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases California\'s Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li>\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li>\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li>\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li>\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n												<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />														\n												<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />														\n												<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />														\n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n				0\n				%\n							1 of a Kind Properties\n				0\n				%\n							First Class Service\n				0\n				%\n							Customer Satisfaction\n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-28 17:51:24','2021-05-28 17:51:24','',881,'https://om7717.dev34.info/?p=3209',0,'revision','',0),(3196,1,'2021-05-14 15:43:53','2021-05-14 15:43:53','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases Beverly Hills Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,000                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,200                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,600                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,000                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,900                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>Beverly Hills</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-14 15:43:53','2021-05-14 15:43:53','',881,'https://om7717.dev34.info/?p=3196',0,'revision','',0),(3197,1,'2021-05-17 03:32:16','2021-05-17 03:32:16','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases California\'s Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,000                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,200                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,600                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,000                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,900                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases Beverlly Hills finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-17 03:32:16','2021-05-17 03:32:16','',881,'https://om7717.dev34.info/?p=3197',0,'revision','',0),(3198,1,'2021-05-17 03:32:57','2021-05-17 03:32:57','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases California\'s Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,000                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,200                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,600                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;4,000                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n                        <!--Get Category-->\n            Vacation Rentals            \n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n                <!--Get Title & Short Description-->\n                  &#36;3,900                 <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Lincoln Jones                                    Seattle, WA\n                                My family and I where looking for the perfect luxury getaway for a 2 week vacation. Opulent Management by far had the best selection of luxury homes and made the entire process extremely easily and first class. I highly recommend them!\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Mr. William Smith                                    New York, NY\n                                We have used Opulent Management for years because of their professionalism and world class selection of properties. I have another tripped booked with them next month and plan on using them again in the future.\n                <img width=\"600\" height=\"600\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq.png 600w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-300x300.png 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-150x150.png 150w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-80x80.png 80w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-450x450.png 450w, https://om7717.dev34.info/wp-content/uploads/2021/05/81674-designer-diamond-gold-yellow-free-download-png-hq-100x100.png 100w\" sizes=\"(max-width: 600px) 100vw, 600px\" />            \n                                    Samantha Thompson                                    Las Vegas, NV\n                                Our trip to Beverly Hills was made extra special thanks to the incredible service by Opulence Management. The house we chose was spectacular and had the most impressive decor, and pool area. We will be booking again!','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-17 03:32:57','2021-05-17 03:32:57','',881,'https://om7717.dev34.info/?p=3198',0,'revision','',0),(3201,8,'2021-05-18 04:18:10','2021-05-18 04:18:10','','Vacation Rentals','','publish','closed','closed','','vacation-rentals','','','2021-05-18 05:27:58','2021-05-18 05:27:58','',0,'https://om7717.dev34.info/?post_type=stm_pricing_plans&#038;p=3201',0,'stm_pricing_plans','',0),(3211,1,'2021-05-31 07:27:23','2021-05-31 07:27:23','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n              &#36;4,000             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,200             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,600             <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-05-31 07:27:23','2021-05-31 07:27:23','',881,'https://om7717.dev34.info/?p=3211',0,'revision','',0),(3215,9,'2021-06-14 21:18:53','2021-06-14 21:18:53','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n              &#36;4,000             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,200             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,600             <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                    Lincoln Jones                                    Customer\n                                We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-14 21:18:53','2021-06-14 21:18:53','',881,'https://om7717.dev34.info/?p=3215',0,'revision','',0),(3216,9,'2021-06-14 21:20:53','2021-06-14 21:20:53','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n              &#36;4,000             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,200             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,600             <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-14 21:20:53','2021-06-14 21:20:53','',881,'https://om7717.dev34.info/?p=3216',0,'revision','',0),(3218,9,'2021-06-14 21:27:16','2021-06-14 21:27:16','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n              &#36;4,000             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,200             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,600             <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-14 21:27:16','2021-06-14 21:27:16','',881,'https://om7717.dev34.info/?p=3218',0,'revision','',0),(3219,9,'2021-06-14 21:35:13','2021-06-14 21:35:13','.home .rentex-breadcrumb {\n	display: none;}\n\n.home .header-2 {\n    background: rgba(0, 0, 0, 0.3);\n}\n\n','rentex-child','','publish','closed','closed','','rentex-child','','','2021-06-14 23:42:26','2021-06-14 23:42:26','',0,'https://om7717.dev34.info/2021/06/14/rentex-child/',0,'custom_css','',0),(3220,9,'2021-06-14 21:35:13','2021-06-14 21:35:13','.home .rentex-breadcrumb {\n	display: none;}','rentex-child','','inherit','closed','closed','','3219-revision-v1','','','2021-06-14 21:35:13','2021-06-14 21:35:13','',3219,'https://om7717.dev34.info/?p=3220',0,'revision','',0),(3222,9,'2021-06-14 23:42:26','2021-06-14 23:42:26','.home .rentex-breadcrumb {\n	display: none;}\n\n.home .header-2 {\n    background: rgba(0, 0, 0, 0.3);\n}\n\n','rentex-child','','inherit','closed','closed','','3219-revision-v1','','','2021-06-14 23:42:26','2021-06-14 23:42:26','',3219,'https://om7717.dev34.info/?p=3222',0,'revision','',0),(3223,9,'2021-06-15 01:35:49','2021-06-15 01:35:49','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n              &#36;4,000             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,200             <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n              &#36;3,600             <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6>Luxury Homes</h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-15 01:35:49','2021-06-15 01:35:49','',881,'https://om7717.dev34.info/?p=3223',0,'revision','',0),(3225,0,'2021-06-15 05:27:19','2021-06-15 05:27:19','','MORENO','','publish','closed','closed','','moreno','','','2021-07-15 21:06:34','2021-07-15 21:06:34','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3225',0,'listing','',0),(3226,8,'2021-06-15 05:41:18','2021-06-15 05:41:18','','0001','','inherit','open','closed','','0001-5','','','2021-06-15 05:41:18','2021-06-15 05:41:18','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0001.jpg',0,'attachment','image/jpeg',0),(3227,8,'2021-06-15 05:41:34','2021-06-15 05:41:34','','0002','','inherit','open','closed','','0002-5','','','2021-06-15 05:41:34','2021-06-15 05:41:34','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0002.jpg',0,'attachment','image/jpeg',0),(3228,8,'2021-06-15 05:41:51','2021-06-15 05:41:51','','0003','','inherit','open','closed','','0003-4','','','2021-06-15 05:41:51','2021-06-15 05:41:51','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0003.jpg',0,'attachment','image/jpeg',0),(3229,8,'2021-06-15 05:42:07','2021-06-15 05:42:07','','0004','','inherit','open','closed','','0004-4','','','2021-06-15 05:42:07','2021-06-15 05:42:07','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0004.jpg',0,'attachment','image/jpeg',0),(3230,8,'2021-06-15 05:42:23','2021-06-15 05:42:23','','0005','','inherit','open','closed','','0005-4','','','2021-06-15 05:42:23','2021-06-15 05:42:23','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0005.jpg',0,'attachment','image/jpeg',0),(3231,8,'2021-06-15 05:42:40','2021-06-15 05:42:40','','0006','','inherit','open','closed','','0006-4','','','2021-06-15 05:42:40','2021-06-15 05:42:40','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0006.jpg',0,'attachment','image/jpeg',0),(3232,8,'2021-06-15 05:42:57','2021-06-15 05:42:57','','0007','','inherit','open','closed','','0007-4','','','2021-06-15 05:42:57','2021-06-15 05:42:57','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0007.jpg',0,'attachment','image/jpeg',0),(3233,8,'2021-06-15 05:43:13','2021-06-15 05:43:13','','0008','','inherit','open','closed','','0008-4','','','2021-06-15 05:43:13','2021-06-15 05:43:13','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0008.jpg',0,'attachment','image/jpeg',0),(3234,8,'2021-06-15 05:43:31','2021-06-15 05:43:31','','0009','','inherit','open','closed','','0009-4','','','2021-06-15 05:43:31','2021-06-15 05:43:31','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0009.jpg',0,'attachment','image/jpeg',0),(3235,8,'2021-06-15 05:43:48','2021-06-15 05:43:48','','0010','','inherit','open','closed','','0010-4','','','2021-06-15 05:43:48','2021-06-15 05:43:48','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0010.jpg',0,'attachment','image/jpeg',0),(3236,8,'2021-06-15 05:44:04','2021-06-15 05:44:04','','0011','','inherit','open','closed','','0011-4','','','2021-06-15 05:44:04','2021-06-15 05:44:04','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0011.jpg',0,'attachment','image/jpeg',0),(3237,8,'2021-06-15 05:44:20','2021-06-15 05:44:20','','0012','','inherit','open','closed','','0012-5','','','2021-06-15 05:44:20','2021-06-15 05:44:20','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0012.jpg',0,'attachment','image/jpeg',0),(3238,8,'2021-06-15 05:44:38','2021-06-15 05:44:38','','0013','','inherit','open','closed','','0013-4','','','2021-06-15 05:44:38','2021-06-15 05:44:38','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0013.jpg',0,'attachment','image/jpeg',0),(3239,8,'2021-06-15 05:45:04','2021-06-15 05:45:04','','0014','','inherit','open','closed','','0014-4','','','2021-06-15 05:45:04','2021-06-15 05:45:04','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0014.jpg',0,'attachment','image/jpeg',0),(3240,8,'2021-06-15 05:45:22','2021-06-15 05:45:22','','0015','','inherit','open','closed','','0015-5','','','2021-06-15 05:45:22','2021-06-15 05:45:22','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0015.jpg',0,'attachment','image/jpeg',0),(3241,8,'2021-06-15 05:45:39','2021-06-15 05:45:39','','0016','','inherit','open','closed','','0016-4','','','2021-06-15 05:45:39','2021-06-15 05:45:39','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0016.jpg',0,'attachment','image/jpeg',0),(3242,8,'2021-06-15 05:45:55','2021-06-15 05:45:55','','0017','','inherit','open','closed','','0017-4','','','2021-06-15 05:45:55','2021-06-15 05:45:55','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0017.jpg',0,'attachment','image/jpeg',0),(3243,8,'2021-06-15 05:46:11','2021-06-15 05:46:11','','0018','','inherit','open','closed','','0018-4','','','2021-06-15 05:46:11','2021-06-15 05:46:11','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0018.jpg',0,'attachment','image/jpeg',0),(3244,8,'2021-06-15 05:46:30','2021-06-15 05:46:30','','0019','','inherit','open','closed','','0019-4','','','2021-06-15 05:46:30','2021-06-15 05:46:30','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0019.jpg',0,'attachment','image/jpeg',0),(3245,8,'2021-06-15 05:46:50','2021-06-15 05:46:50','','0020','','inherit','open','closed','','0020-4','','','2021-06-15 05:46:50','2021-06-15 05:46:50','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0020.jpg',0,'attachment','image/jpeg',0),(3246,8,'2021-06-15 05:47:07','2021-06-15 05:47:07','','0021','','inherit','open','closed','','0021-4','','','2021-06-15 05:47:07','2021-06-15 05:47:07','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0021.jpg',0,'attachment','image/jpeg',0),(3247,8,'2021-06-15 05:47:26','2021-06-15 05:47:26','','0022','','inherit','open','closed','','0022-4','','','2021-06-15 05:47:26','2021-06-15 05:47:26','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0022.jpg',0,'attachment','image/jpeg',0),(3248,8,'2021-06-15 05:47:46','2021-06-15 05:47:46','','0023','','inherit','open','closed','','0023-4','','','2021-06-15 05:47:46','2021-06-15 05:47:46','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0023.jpg',0,'attachment','image/jpeg',0),(3249,8,'2021-06-15 05:48:04','2021-06-15 05:48:04','','0024','','inherit','open','closed','','0024-5','','','2021-06-15 05:48:04','2021-06-15 05:48:04','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0024.jpg',0,'attachment','image/jpeg',0),(3250,8,'2021-06-15 05:48:25','2021-06-15 05:48:25','','0025','','inherit','open','closed','','0025-5','','','2021-06-15 05:48:25','2021-06-15 05:48:25','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0025.jpg',0,'attachment','image/jpeg',0),(3251,8,'2021-06-15 05:48:41','2021-06-15 05:48:41','','0026','','inherit','open','closed','','0026-5','','','2021-06-15 05:48:41','2021-06-15 05:48:41','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0026.jpg',0,'attachment','image/jpeg',0),(3252,8,'2021-06-15 05:49:12','2021-06-15 05:49:12','','0027','','inherit','open','closed','','0027-5','','','2021-06-15 05:49:12','2021-06-15 05:49:12','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0027.jpg',0,'attachment','image/jpeg',0),(3253,8,'2021-06-15 05:49:30','2021-06-15 05:49:30','','0028','','inherit','open','closed','','0028-5','','','2021-06-15 05:49:30','2021-06-15 05:49:30','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0028.jpg',0,'attachment','image/jpeg',0),(3254,8,'2021-06-15 05:49:53','2021-06-15 05:49:53','','0029','','inherit','open','closed','','0029-5','','','2021-06-15 05:49:53','2021-06-15 05:49:53','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0029.jpg',0,'attachment','image/jpeg',0),(3255,8,'2021-06-15 05:50:10','2021-06-15 05:50:10','','0030','','inherit','open','closed','','0030-5','','','2021-06-15 05:50:10','2021-06-15 05:50:10','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0030.jpg',0,'attachment','image/jpeg',0),(3256,8,'2021-06-15 05:50:26','2021-06-15 05:50:26','','0031','','inherit','open','closed','','0031-5','','','2021-06-15 05:50:26','2021-06-15 05:50:26','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0031.jpg',0,'attachment','image/jpeg',0),(3257,8,'2021-06-15 05:50:46','2021-06-15 05:50:46','','0032','','inherit','open','closed','','0032-5','','','2021-06-15 05:50:46','2021-06-15 05:50:46','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0032.jpg',0,'attachment','image/jpeg',0),(3258,8,'2021-06-15 05:51:05','2021-06-15 05:51:05','','0033','','inherit','open','closed','','0033-5','','','2021-06-15 05:51:05','2021-06-15 05:51:05','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0033.jpg',0,'attachment','image/jpeg',0),(3259,8,'2021-06-15 05:51:25','2021-06-15 05:51:25','','0034','','inherit','open','closed','','0034-5','','','2021-06-15 05:51:25','2021-06-15 05:51:25','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0034.jpg',0,'attachment','image/jpeg',0),(3260,8,'2021-06-15 05:51:42','2021-06-15 05:51:42','','0035','','inherit','open','closed','','0035-5','','','2021-06-15 05:51:42','2021-06-15 05:51:42','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0035.jpg',0,'attachment','image/jpeg',0),(3261,8,'2021-06-15 05:52:00','2021-06-15 05:52:00','','0036','','inherit','open','closed','','0036-5','','','2021-06-15 05:52:00','2021-06-15 05:52:00','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0036.jpg',0,'attachment','image/jpeg',0),(3262,8,'2021-06-15 05:52:18','2021-06-15 05:52:18','','0037','','inherit','open','closed','','0037-5','','','2021-06-15 05:52:18','2021-06-15 05:52:18','',3225,'https://om7717.dev34.info/wp-content/uploads/2021/06/0037.jpg',0,'attachment','image/jpeg',0),(3263,0,'2021-06-15 06:00:18','2021-06-15 06:00:18','','COLGATE R','','publish','closed','closed','','colgate-r','','','2021-07-15 21:06:47','2021-07-15 21:06:47','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3263',0,'listing','',0),(3264,8,'2021-06-15 06:17:55','2021-06-15 06:17:55','','1','','inherit','open','closed','','1-4','','','2021-06-15 06:17:55','2021-06-15 06:17:55','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/1.jpg',0,'attachment','image/jpeg',0),(3265,8,'2021-06-15 06:17:58','2021-06-15 06:17:58','','2','','inherit','open','closed','','2-4','','','2021-06-15 06:17:58','2021-06-15 06:17:58','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/2.jpg',0,'attachment','image/jpeg',0),(3266,8,'2021-06-15 06:18:02','2021-06-15 06:18:02','','3','','inherit','open','closed','','3-4','','','2021-06-15 06:18:02','2021-06-15 06:18:02','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/3.jpg',0,'attachment','image/jpeg',0),(3267,8,'2021-06-15 06:18:05','2021-06-15 06:18:05','','4','','inherit','open','closed','','4-4','','','2021-06-15 06:18:05','2021-06-15 06:18:05','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/4.jpg',0,'attachment','image/jpeg',0),(3268,8,'2021-06-15 06:18:08','2021-06-15 06:18:08','','5','','inherit','open','closed','','5-4','','','2021-06-15 06:18:08','2021-06-15 06:18:08','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/5.jpg',0,'attachment','image/jpeg',0),(3269,8,'2021-06-15 06:18:11','2021-06-15 06:18:11','','6','','inherit','open','closed','','6-3','','','2021-06-15 06:18:11','2021-06-15 06:18:11','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/6.jpg',0,'attachment','image/jpeg',0),(3270,8,'2021-06-15 06:18:14','2021-06-15 06:18:14','','7','','inherit','open','closed','','7-3','','','2021-06-15 06:18:14','2021-06-15 06:18:14','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/7.jpg',0,'attachment','image/jpeg',0),(3271,8,'2021-06-15 06:18:17','2021-06-15 06:18:17','','8','','inherit','open','closed','','8-4','','','2021-06-15 06:18:17','2021-06-15 06:18:17','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/8.jpg',0,'attachment','image/jpeg',0),(3272,8,'2021-06-15 06:18:20','2021-06-15 06:18:20','','9','','inherit','open','closed','','9-4','','','2021-06-15 06:18:20','2021-06-15 06:18:20','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/9.jpg',0,'attachment','image/jpeg',0),(3273,8,'2021-06-15 06:18:23','2021-06-15 06:18:23','','10','','inherit','open','closed','','10-4','','','2021-06-15 06:18:23','2021-06-15 06:18:23','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/10.jpg',0,'attachment','image/jpeg',0),(3274,8,'2021-06-15 06:18:26','2021-06-15 06:18:26','','11','','inherit','open','closed','','11-4','','','2021-06-15 06:18:26','2021-06-15 06:18:26','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/11.jpg',0,'attachment','image/jpeg',0),(3275,8,'2021-06-15 06:18:28','2021-06-15 06:18:28','','12','','inherit','open','closed','','12-4','','','2021-06-15 06:18:28','2021-06-15 06:18:28','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/12.jpg',0,'attachment','image/jpeg',0),(3276,8,'2021-06-15 06:18:31','2021-06-15 06:18:31','','13','','inherit','open','closed','','13-3','','','2021-06-15 06:18:31','2021-06-15 06:18:31','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/13.jpg',0,'attachment','image/jpeg',0),(3277,8,'2021-06-15 06:18:34','2021-06-15 06:18:34','','14','','inherit','open','closed','','14-3','','','2021-06-15 06:18:34','2021-06-15 06:18:34','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/14.jpg',0,'attachment','image/jpeg',0),(3278,8,'2021-06-15 06:18:37','2021-06-15 06:18:37','','15','','inherit','open','closed','','15-3','','','2021-06-15 06:18:37','2021-06-15 06:18:37','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/15.jpg',0,'attachment','image/jpeg',0),(3279,8,'2021-06-15 06:18:40','2021-06-15 06:18:40','','16','','inherit','open','closed','','16-3','','','2021-06-15 06:18:40','2021-06-15 06:18:40','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/16.jpg',0,'attachment','image/jpeg',0),(3280,8,'2021-06-15 06:18:42','2021-06-15 06:18:42','','17','','inherit','open','closed','','17-3','','','2021-06-15 06:18:42','2021-06-15 06:18:42','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/17.jpg',0,'attachment','image/jpeg',0),(3281,8,'2021-06-15 06:18:45','2021-06-15 06:18:45','','18','','inherit','open','closed','','18-4','','','2021-06-15 06:18:45','2021-06-15 06:18:45','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/18.jpg',0,'attachment','image/jpeg',0),(3282,8,'2021-06-15 06:18:48','2021-06-15 06:18:48','','19','','inherit','open','closed','','19-4','','','2021-06-15 06:18:48','2021-06-15 06:18:48','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/19.jpg',0,'attachment','image/jpeg',0),(3283,8,'2021-06-15 06:18:51','2021-06-15 06:18:51','','20','','inherit','open','closed','','20-3','','','2021-06-15 06:18:51','2021-06-15 06:18:51','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/20.jpg',0,'attachment','image/jpeg',0),(3284,8,'2021-06-15 06:18:54','2021-06-15 06:18:54','','21','','inherit','open','closed','','21-3','','','2021-06-15 06:18:54','2021-06-15 06:18:54','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/21.jpg',0,'attachment','image/jpeg',0),(3285,8,'2021-06-15 06:18:57','2021-06-15 06:18:57','','22','','inherit','open','closed','','22-4','','','2021-06-15 06:18:57','2021-06-15 06:18:57','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/22.jpg',0,'attachment','image/jpeg',0),(3286,8,'2021-06-15 06:19:00','2021-06-15 06:19:00','','23','','inherit','open','closed','','23-4','','','2021-06-15 06:19:00','2021-06-15 06:19:00','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/23.jpg',0,'attachment','image/jpeg',0),(3287,8,'2021-06-15 06:19:03','2021-06-15 06:19:03','','24','','inherit','open','closed','','24-4','','','2021-06-15 06:19:03','2021-06-15 06:19:03','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/24.jpg',0,'attachment','image/jpeg',0),(3288,8,'2021-06-15 06:19:06','2021-06-15 06:19:06','','25','','inherit','open','closed','','25-4','','','2021-06-15 06:19:06','2021-06-15 06:19:06','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/25.jpg',0,'attachment','image/jpeg',0),(3289,8,'2021-06-15 06:19:11','2021-06-15 06:19:11','','26','','inherit','open','closed','','26-4','','','2021-06-15 06:19:11','2021-06-15 06:19:11','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/26.jpg',0,'attachment','image/jpeg',0),(3290,8,'2021-06-15 06:19:15','2021-06-15 06:19:15','','27','','inherit','open','closed','','27-3','','','2021-06-15 06:19:15','2021-06-15 06:19:15','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/27.jpg',0,'attachment','image/jpeg',0),(3291,8,'2021-06-15 06:19:20','2021-06-15 06:19:20','','28','','inherit','open','closed','','28-3','','','2021-06-15 06:19:20','2021-06-15 06:19:20','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/28.jpg',0,'attachment','image/jpeg',0),(3292,8,'2021-06-15 06:19:23','2021-06-15 06:19:23','','29','','inherit','open','closed','','29-4','','','2021-06-15 06:19:23','2021-06-15 06:19:23','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/29.jpg',0,'attachment','image/jpeg',0),(3293,8,'2021-06-15 06:19:27','2021-06-15 06:19:27','','30','','inherit','open','closed','','30-4','','','2021-06-15 06:19:27','2021-06-15 06:19:27','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/30.jpg',0,'attachment','image/jpeg',0),(3294,8,'2021-06-15 06:19:30','2021-06-15 06:19:30','','31','','inherit','open','closed','','31-4','','','2021-06-15 06:19:30','2021-06-15 06:19:30','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/31.jpg',0,'attachment','image/jpeg',0),(3295,8,'2021-06-15 06:19:33','2021-06-15 06:19:33','','32','','inherit','open','closed','','32-4','','','2021-06-15 06:19:33','2021-06-15 06:19:33','',3263,'https://om7717.dev34.info/wp-content/uploads/2021/06/32.jpg',0,'attachment','image/jpeg',0),(3296,0,'2021-06-15 06:36:23','2021-06-15 06:36:23','','ARTIST LOFT','','publish','closed','closed','','artist-loft','','','2021-06-23 08:35:26','2021-06-23 08:35:26','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3296',0,'listing','',0),(3297,0,'2021-06-15 06:36:54','2021-06-15 06:36:54','','MARYLAND K','','publish','closed','closed','','maryland-k','','','2021-06-23 08:32:26','2021-06-23 08:32:26','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3297',0,'listing','',0),(3298,8,'2021-06-15 06:39:03','2021-06-15 06:39:03','','0001','','inherit','open','closed','','0001-6','','','2021-06-15 06:39:03','2021-06-15 06:39:03','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0001-1.jpg',0,'attachment','image/jpeg',0),(3299,8,'2021-06-15 06:39:19','2021-06-15 06:39:19','','0002','','inherit','open','closed','','0002-6','','','2021-06-15 06:39:19','2021-06-15 06:39:19','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0002-1.jpg',0,'attachment','image/jpeg',0),(3300,8,'2021-06-15 06:39:34','2021-06-15 06:39:34','','0003','','inherit','open','closed','','0003-5','','','2021-06-15 06:39:34','2021-06-15 06:39:34','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0003-1.jpg',0,'attachment','image/jpeg',0),(3301,8,'2021-06-15 06:39:51','2021-06-15 06:39:51','','0004','','inherit','open','closed','','0004-5','','','2021-06-15 06:39:51','2021-06-15 06:39:51','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0004-1.jpg',0,'attachment','image/jpeg',0),(3302,8,'2021-06-15 06:40:08','2021-06-15 06:40:08','','0005','','inherit','open','closed','','0005-5','','','2021-06-15 06:40:08','2021-06-15 06:40:08','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0005-1.jpg',0,'attachment','image/jpeg',0),(3303,8,'2021-06-15 06:40:25','2021-06-15 06:40:25','','0006','','inherit','open','closed','','0006-5','','','2021-06-15 06:40:25','2021-06-15 06:40:25','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0006-1.jpg',0,'attachment','image/jpeg',0),(3304,8,'2021-06-15 06:40:42','2021-06-15 06:40:42','','0007','','inherit','open','closed','','0007-5','','','2021-06-15 06:40:42','2021-06-15 06:40:42','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0007-1.jpg',0,'attachment','image/jpeg',0),(3305,8,'2021-06-15 06:40:57','2021-06-15 06:40:57','','0008','','inherit','open','closed','','0008-5','','','2021-06-15 06:40:57','2021-06-15 06:40:57','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0008-1.jpg',0,'attachment','image/jpeg',0),(3306,8,'2021-06-15 06:41:13','2021-06-15 06:41:13','','0009','','inherit','open','closed','','0009-5','','','2021-06-15 06:41:13','2021-06-15 06:41:13','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0009-1.jpg',0,'attachment','image/jpeg',0),(3307,8,'2021-06-15 06:41:31','2021-06-15 06:41:31','','0010','','inherit','open','closed','','0010-5','','','2021-06-15 06:41:31','2021-06-15 06:41:31','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0010-1.jpg',0,'attachment','image/jpeg',0),(3308,8,'2021-06-15 06:41:46','2021-06-15 06:41:46','','0011','','inherit','open','closed','','0011-5','','','2021-06-15 06:41:46','2021-06-15 06:41:46','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0011-1.jpg',0,'attachment','image/jpeg',0),(3309,8,'2021-06-15 06:42:02','2021-06-15 06:42:02','','0012','','inherit','open','closed','','0012-6','','','2021-06-15 06:42:02','2021-06-15 06:42:02','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0012-1.jpg',0,'attachment','image/jpeg',0),(3310,8,'2021-06-15 06:42:19','2021-06-15 06:42:19','','0013','','inherit','open','closed','','0013-5','','','2021-06-15 06:42:19','2021-06-15 06:42:19','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0013-1.jpg',0,'attachment','image/jpeg',0),(3311,8,'2021-06-15 06:42:36','2021-06-15 06:42:36','','0014','','inherit','open','closed','','0014-5','','','2021-06-15 06:42:36','2021-06-15 06:42:36','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0014-1.jpg',0,'attachment','image/jpeg',0),(3312,8,'2021-06-15 06:42:51','2021-06-15 06:42:51','','0015','','inherit','open','closed','','0015-6','','','2021-06-15 06:42:51','2021-06-15 06:42:51','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0015-1.jpg',0,'attachment','image/jpeg',0),(3313,8,'2021-06-15 06:43:06','2021-06-15 06:43:06','','0016','','inherit','open','closed','','0016-5','','','2021-06-15 06:43:06','2021-06-15 06:43:06','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0016-1.jpg',0,'attachment','image/jpeg',0),(3314,8,'2021-06-15 06:43:22','2021-06-15 06:43:22','','0017','','inherit','open','closed','','0017-5','','','2021-06-15 06:43:22','2021-06-15 06:43:22','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0017-1.jpg',0,'attachment','image/jpeg',0),(3315,8,'2021-06-15 06:43:38','2021-06-15 06:43:38','','0018','','inherit','open','closed','','0018-5','','','2021-06-15 06:43:38','2021-06-15 06:43:38','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0018-1.jpg',0,'attachment','image/jpeg',0),(3316,8,'2021-06-15 06:43:53','2021-06-15 06:43:53','','0019','','inherit','open','closed','','0019-5','','','2021-06-15 06:43:53','2021-06-15 06:43:53','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0019-1.jpg',0,'attachment','image/jpeg',0),(3317,8,'2021-06-15 06:44:09','2021-06-15 06:44:09','','0020','','inherit','open','closed','','0020-5','','','2021-06-15 06:44:09','2021-06-15 06:44:09','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0020-1.jpg',0,'attachment','image/jpeg',0),(3318,8,'2021-06-15 06:44:25','2021-06-15 06:44:25','','0021','','inherit','open','closed','','0021-5','','','2021-06-15 06:44:25','2021-06-15 06:44:25','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0021-1.jpg',0,'attachment','image/jpeg',0),(3319,8,'2021-06-15 06:44:40','2021-06-15 06:44:40','','0022','','inherit','open','closed','','0022-5','','','2021-06-15 06:44:40','2021-06-15 06:44:40','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0022-1.jpg',0,'attachment','image/jpeg',0),(3320,8,'2021-06-15 06:44:56','2021-06-15 06:44:56','','0023','','inherit','open','closed','','0023-5','','','2021-06-15 06:44:56','2021-06-15 06:44:56','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0023-1.jpg',0,'attachment','image/jpeg',0),(3321,8,'2021-06-15 06:45:11','2021-06-15 06:45:11','','0024','','inherit','open','closed','','0024-6','','','2021-06-15 06:45:11','2021-06-15 06:45:11','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0024-1.jpg',0,'attachment','image/jpeg',0),(3322,8,'2021-06-15 06:45:28','2021-06-15 06:45:28','','0025','','inherit','open','closed','','0025-6','','','2021-06-15 06:45:28','2021-06-15 06:45:28','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0025-1.jpg',0,'attachment','image/jpeg',0),(3323,8,'2021-06-15 06:45:44','2021-06-15 06:45:44','','0026','','inherit','open','closed','','0026-6','','','2021-06-15 06:45:44','2021-06-15 06:45:44','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0026-1.jpg',0,'attachment','image/jpeg',0),(3324,8,'2021-06-15 06:46:00','2021-06-15 06:46:00','','0027','','inherit','open','closed','','0027-6','','','2021-06-15 06:46:00','2021-06-15 06:46:00','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0027-1.jpg',0,'attachment','image/jpeg',0),(3325,8,'2021-06-15 06:46:17','2021-06-15 06:46:17','','0028','','inherit','open','closed','','0028-6','','','2021-06-15 06:46:17','2021-06-15 06:46:17','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0028-1.jpg',0,'attachment','image/jpeg',0),(3326,8,'2021-06-15 06:46:33','2021-06-15 06:46:33','','0029','','inherit','open','closed','','0029-6','','','2021-06-15 06:46:33','2021-06-15 06:46:33','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0029-1.jpg',0,'attachment','image/jpeg',0),(3327,8,'2021-06-15 06:46:49','2021-06-15 06:46:49','','0030','','inherit','open','closed','','0030-6','','','2021-06-15 06:46:49','2021-06-15 06:46:49','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0030-1.jpg',0,'attachment','image/jpeg',0),(3328,8,'2021-06-15 06:47:05','2021-06-15 06:47:05','','0031','','inherit','open','closed','','0031-6','','','2021-06-15 06:47:05','2021-06-15 06:47:05','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0031-1.jpg',0,'attachment','image/jpeg',0),(3329,8,'2021-06-15 06:47:20','2021-06-15 06:47:20','','0032','','inherit','open','closed','','0032-6','','','2021-06-15 06:47:20','2021-06-15 06:47:20','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0032-1.jpg',0,'attachment','image/jpeg',0),(3330,8,'2021-06-15 06:47:36','2021-06-15 06:47:36','','0033','','inherit','open','closed','','0033-6','','','2021-06-15 06:47:36','2021-06-15 06:47:36','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0033-1.jpg',0,'attachment','image/jpeg',0),(3331,8,'2021-06-15 06:47:51','2021-06-15 06:47:51','','0034','','inherit','open','closed','','0034-6','','','2021-06-15 06:47:51','2021-06-15 06:47:51','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0034-1.jpg',0,'attachment','image/jpeg',0),(3332,8,'2021-06-15 06:48:06','2021-06-15 06:48:06','','0035','','inherit','open','closed','','0035-6','','','2021-06-15 06:48:06','2021-06-15 06:48:06','',3297,'https://om7717.dev34.info/wp-content/uploads/2021/06/0035-1.jpg',0,'attachment','image/jpeg',0),(3334,0,'2021-06-15 09:21:56','2021-06-15 09:21:56','','CROFT PH LOFT','','publish','closed','closed','','croft-ph-loft','','','2021-06-15 10:04:55','2021-06-15 10:04:55','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3334',0,'listing','',0),(3335,0,'2021-06-15 09:22:13','2021-06-15 09:22:13','','CASABLANCA','','publish','closed','closed','','casablanca','','','2021-06-15 11:07:42','2021-06-15 11:07:42','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3335',0,'listing','',0),(3336,0,'2021-06-15 09:22:32','2021-06-15 09:22:32','','EL CAMINO','','publish','closed','closed','','el-camino','','','2021-06-15 10:59:45','2021-06-15 10:59:45','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3336',0,'listing','',0),(3337,0,'2021-06-15 09:23:04','2021-06-15 09:23:04','','LAUREL K','','publish','closed','closed','','laurel-k','','','2021-06-23 08:19:32','2021-06-23 08:19:32','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3337',0,'listing','',0),(3338,0,'2021-06-15 09:23:40','2021-06-15 09:23:40','','MARYLAND MODERN','','publish','closed','closed','','maryland-modern','','','2021-06-23 08:13:58','2021-06-23 08:13:58','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3338',0,'listing','',0),(3339,0,'2021-06-15 09:24:05','2021-06-15 09:24:05','','ORANGE GROVE','','publish','closed','closed','','orange-grove','','','2021-06-23 08:11:33','2021-06-23 08:11:33','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3339',0,'listing','',0),(3340,0,'2021-06-15 09:24:30','2021-06-15 09:24:30','','PYRAMID','','publish','closed','closed','','pyramid','','','2021-06-23 08:09:18','2021-06-23 08:09:18','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3340',0,'listing','',0),(3606,8,'2021-06-15 11:08:46','2021-06-15 11:08:46','','1','','inherit','open','closed','','1-6','','','2021-06-15 11:08:46','2021-06-15 11:08:46','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/1-2.jpg',0,'attachment','image/jpeg',0),(3341,0,'2021-06-15 09:24:53','2021-06-15 09:24:53','','SIERRA BONITA','','publish','closed','closed','','sierra-bonita','','','2021-06-23 08:07:57','2021-06-23 08:07:57','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3341',0,'listing','',0),(3342,0,'2021-06-15 09:25:19','2021-06-15 09:25:19','','STANLEY AVE','','publish','closed','closed','','stanley-ave','','','2021-06-23 08:04:55','2021-06-23 08:04:55','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3342',0,'listing','',0),(3343,0,'2021-06-15 09:25:40','2021-06-15 09:25:40','','SANTA MONICA','','publish','closed','closed','','santa-monica','','','2021-06-23 07:54:29','2021-06-23 07:54:29','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3343',0,'listing','',0),(3344,8,'2021-06-15 09:34:44','2021-06-15 09:34:44','','6111_Lindenhurst_Ave_Los_Angeles_90048_0001','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0001','','','2021-06-15 09:34:44','2021-06-15 09:34:44','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001.jpg',0,'attachment','image/jpeg',0),(3345,8,'2021-06-15 09:35:03','2021-06-15 09:35:03','','6111_Lindenhurst_Ave_Los_Angeles_90048_0002','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0002','','','2021-06-15 09:35:03','2021-06-15 09:35:03','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0002.jpg',0,'attachment','image/jpeg',0),(3346,8,'2021-06-15 09:35:21','2021-06-15 09:35:21','','6111_Lindenhurst_Ave_Los_Angeles_90048_0003','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0003','','','2021-06-15 09:35:21','2021-06-15 09:35:21','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0003.jpg',0,'attachment','image/jpeg',0),(3347,8,'2021-06-15 09:35:39','2021-06-15 09:35:39','','6111_Lindenhurst_Ave_Los_Angeles_90048_0004','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0004','','','2021-06-15 09:35:39','2021-06-15 09:35:39','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0004.jpg',0,'attachment','image/jpeg',0),(3348,8,'2021-06-15 09:35:57','2021-06-15 09:35:57','','6111_Lindenhurst_Ave_Los_Angeles_90048_0005','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0005','','','2021-06-15 09:35:57','2021-06-15 09:35:57','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0005.jpg',0,'attachment','image/jpeg',0),(3349,8,'2021-06-15 09:36:17','2021-06-15 09:36:17','','6111_Lindenhurst_Ave_Los_Angeles_90048_0006','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0006','','','2021-06-15 09:36:17','2021-06-15 09:36:17','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0006.jpg',0,'attachment','image/jpeg',0),(3350,8,'2021-06-15 09:36:35','2021-06-15 09:36:35','','6111_Lindenhurst_Ave_Los_Angeles_90048_0007','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0007','','','2021-06-15 09:36:35','2021-06-15 09:36:35','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0007.jpg',0,'attachment','image/jpeg',0),(3351,8,'2021-06-15 09:36:53','2021-06-15 09:36:53','','6111_Lindenhurst_Ave_Los_Angeles_90048_0008','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0008','','','2021-06-15 09:36:53','2021-06-15 09:36:53','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0008.jpg',0,'attachment','image/jpeg',0),(3352,8,'2021-06-15 09:37:11','2021-06-15 09:37:11','','6111_Lindenhurst_Ave_Los_Angeles_90048_0009','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0009','','','2021-06-15 09:37:11','2021-06-15 09:37:11','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0009.jpg',0,'attachment','image/jpeg',0),(3353,8,'2021-06-15 09:37:30','2021-06-15 09:37:30','','6111_Lindenhurst_Ave_Los_Angeles_90048_0010','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0010','','','2021-06-15 09:37:30','2021-06-15 09:37:30','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0010.jpg',0,'attachment','image/jpeg',0),(3354,8,'2021-06-15 09:37:47','2021-06-15 09:37:47','','6111_Lindenhurst_Ave_Los_Angeles_90048_0011','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0011','','','2021-06-15 09:37:47','2021-06-15 09:37:47','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0011.jpg',0,'attachment','image/jpeg',0),(3355,8,'2021-06-15 09:38:06','2021-06-15 09:38:06','','6111_Lindenhurst_Ave_Los_Angeles_90048_0012','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0012','','','2021-06-15 09:38:06','2021-06-15 09:38:06','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0012.jpg',0,'attachment','image/jpeg',0),(3356,8,'2021-06-15 09:38:25','2021-06-15 09:38:25','','6111_Lindenhurst_Ave_Los_Angeles_90048_0013','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0013','','','2021-06-15 09:38:25','2021-06-15 09:38:25','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0013.jpg',0,'attachment','image/jpeg',0),(3357,8,'2021-06-15 09:38:45','2021-06-15 09:38:45','','6111_Lindenhurst_Ave_Los_Angeles_90048_0014','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0014','','','2021-06-15 09:38:45','2021-06-15 09:38:45','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0014.jpg',0,'attachment','image/jpeg',0),(3358,8,'2021-06-15 09:39:04','2021-06-15 09:39:04','','6111_Lindenhurst_Ave_Los_Angeles_90048_0015','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0015','','','2021-06-15 09:39:04','2021-06-15 09:39:04','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0015.jpg',0,'attachment','image/jpeg',0),(3359,8,'2021-06-15 09:39:23','2021-06-15 09:39:23','','6111_Lindenhurst_Ave_Los_Angeles_90048_0016','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0016','','','2021-06-15 09:39:23','2021-06-15 09:39:23','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0016.jpg',0,'attachment','image/jpeg',0),(3360,8,'2021-06-15 09:39:40','2021-06-15 09:39:40','','6111_Lindenhurst_Ave_Los_Angeles_90048_0017','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0017','','','2021-06-15 09:39:40','2021-06-15 09:39:40','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0017.jpg',0,'attachment','image/jpeg',0),(3361,8,'2021-06-15 09:40:00','2021-06-15 09:40:00','','6111_Lindenhurst_Ave_Los_Angeles_90048_0018','','inherit','open','closed','','6111_lindenhurst_ave_los_angeles_90048_0018','','','2021-06-15 09:40:00','2021-06-15 09:40:00','',3296,'https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0018.jpg',0,'attachment','image/jpeg',0),(3362,8,'2021-06-15 09:53:49','2021-06-15 09:53:49','','croftph01','','inherit','open','closed','','croftph01','','','2021-06-15 09:53:49','2021-06-15 09:53:49','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph01.jpg',0,'attachment','image/jpeg',0),(3363,8,'2021-06-15 09:54:05','2021-06-15 09:54:05','','croftph01a','','inherit','open','closed','','croftph01a','','','2021-06-15 09:54:05','2021-06-15 09:54:05','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph01a.jpg',0,'attachment','image/jpeg',0),(3364,8,'2021-06-15 09:54:20','2021-06-15 09:54:20','','croftph01b','','inherit','open','closed','','croftph01b','','','2021-06-15 09:54:20','2021-06-15 09:54:20','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph01b-.jpg',0,'attachment','image/jpeg',0),(3365,8,'2021-06-15 09:54:36','2021-06-15 09:54:36','','croftph01c','','inherit','open','closed','','croftph01c','','','2021-06-15 09:54:36','2021-06-15 09:54:36','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph01c.jpg',0,'attachment','image/jpeg',0),(3366,8,'2021-06-15 09:54:52','2021-06-15 09:54:52','','croftph02','','inherit','open','closed','','croftph02','','','2021-06-15 09:54:52','2021-06-15 09:54:52','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph02.jpg',0,'attachment','image/jpeg',0),(3367,8,'2021-06-15 09:55:09','2021-06-15 09:55:09','','croftph02a','','inherit','open','closed','','croftph02a','','','2021-06-15 09:55:09','2021-06-15 09:55:09','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph02a.jpg',0,'attachment','image/jpeg',0),(3368,8,'2021-06-15 09:55:25','2021-06-15 09:55:25','','croftph2b','','inherit','open','closed','','croftph2b','','','2021-06-15 09:55:25','2021-06-15 09:55:25','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph2b.jpg',0,'attachment','image/jpeg',0),(3369,8,'2021-06-15 09:55:41','2021-06-15 09:55:41','','croftph3','','inherit','open','closed','','croftph3','','','2021-06-15 09:55:41','2021-06-15 09:55:41','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph3.jpg',0,'attachment','image/jpeg',0),(3370,8,'2021-06-15 09:55:57','2021-06-15 09:55:57','','croftph4','','inherit','open','closed','','croftph4','','','2021-06-15 09:55:57','2021-06-15 09:55:57','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph4.jpg',0,'attachment','image/jpeg',0),(3371,8,'2021-06-15 09:56:14','2021-06-15 09:56:14','','croftph5','','inherit','open','closed','','croftph5','','','2021-06-15 09:56:14','2021-06-15 09:56:14','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph5.jpg',0,'attachment','image/jpeg',0),(3372,8,'2021-06-15 09:56:32','2021-06-15 09:56:32','','croftph6','','inherit','open','closed','','croftph6','','','2021-06-15 09:56:32','2021-06-15 09:56:32','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph6-.jpg',0,'attachment','image/jpeg',0),(3373,8,'2021-06-15 09:56:47','2021-06-15 09:56:47','','croftph7','','inherit','open','closed','','croftph7','','','2021-06-15 09:56:47','2021-06-15 09:56:47','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph7.jpg',0,'attachment','image/jpeg',0),(3374,8,'2021-06-15 09:57:02','2021-06-15 09:57:02','','croftph9','','inherit','open','closed','','croftph9','','','2021-06-15 09:57:02','2021-06-15 09:57:02','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph9.jpg',0,'attachment','image/jpeg',0),(3375,8,'2021-06-15 09:57:18','2021-06-15 09:57:18','','croftph15','','inherit','open','closed','','croftph15','','','2021-06-15 09:57:18','2021-06-15 09:57:18','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph15.jpg',0,'attachment','image/jpeg',0),(3376,8,'2021-06-15 09:57:34','2021-06-15 09:57:34','','croftph16','','inherit','open','closed','','croftph16','','','2021-06-15 09:57:34','2021-06-15 09:57:34','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph16.jpg',0,'attachment','image/jpeg',0),(3377,8,'2021-06-15 09:57:50','2021-06-15 09:57:50','','croftph17','','inherit','open','closed','','croftph17','','','2021-06-15 09:57:50','2021-06-15 09:57:50','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph17.jpg',0,'attachment','image/jpeg',0),(3378,8,'2021-06-15 09:58:07','2021-06-15 09:58:07','','croftph19','','inherit','open','closed','','croftph19','','','2021-06-15 09:58:07','2021-06-15 09:58:07','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph19.jpg',0,'attachment','image/jpeg',0),(3379,8,'2021-06-15 09:58:23','2021-06-15 09:58:23','','croftph23','','inherit','open','closed','','croftph23','','','2021-06-15 09:58:23','2021-06-15 09:58:23','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph23.jpg',0,'attachment','image/jpeg',0),(3380,8,'2021-06-15 09:58:38','2021-06-15 09:58:38','','croftph25','','inherit','open','closed','','croftph25','','','2021-06-15 09:58:38','2021-06-15 09:58:38','',3334,'https://om7717.dev34.info/wp-content/uploads/2021/06/croftph25.jpg',0,'attachment','image/jpeg',0),(3381,8,'2021-06-15 10:06:19','2021-06-15 10:06:19','','cas1','','inherit','open','closed','','cas1','','','2021-06-15 10:06:19','2021-06-15 10:06:19','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas1.jpg',0,'attachment','image/jpeg',0),(3382,8,'2021-06-15 10:06:22','2021-06-15 10:06:22','','cas2','','inherit','open','closed','','cas2','','','2021-06-15 10:06:22','2021-06-15 10:06:22','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas2.jpg',0,'attachment','image/jpeg',0),(3383,8,'2021-06-15 10:06:24','2021-06-15 10:06:24','','cas3','','inherit','open','closed','','cas3','','','2021-06-15 10:06:24','2021-06-15 10:06:24','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas3.jpg',0,'attachment','image/jpeg',0),(3384,8,'2021-06-15 10:06:27','2021-06-15 10:06:27','','cas4','','inherit','open','closed','','cas4','','','2021-06-15 10:06:27','2021-06-15 10:06:27','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas4.jpg',0,'attachment','image/jpeg',0),(3385,8,'2021-06-15 10:06:29','2021-06-15 10:06:29','','cas5','','inherit','open','closed','','cas5','','','2021-06-15 10:06:29','2021-06-15 10:06:29','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas5.jpg',0,'attachment','image/jpeg',0),(3386,8,'2021-06-15 10:06:31','2021-06-15 10:06:31','','cas6','','inherit','open','closed','','cas6','','','2021-06-15 10:06:31','2021-06-15 10:06:31','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas6.jpg',0,'attachment','image/jpeg',0),(3387,8,'2021-06-15 10:06:33','2021-06-15 10:06:33','','cas7','','inherit','open','closed','','cas7','','','2021-06-15 10:06:33','2021-06-15 10:06:33','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas7.jpg',0,'attachment','image/jpeg',0),(3388,8,'2021-06-15 10:06:35','2021-06-15 10:06:35','','cas8','','inherit','open','closed','','cas8','','','2021-06-15 10:06:35','2021-06-15 10:06:35','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas8.jpg',0,'attachment','image/jpeg',0),(3389,8,'2021-06-15 10:06:37','2021-06-15 10:06:37','','cas9','','inherit','open','closed','','cas9','','','2021-06-15 10:06:37','2021-06-15 10:06:37','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas9.jpg',0,'attachment','image/jpeg',0),(3390,8,'2021-06-15 10:06:39','2021-06-15 10:06:39','','FW0A0487-2-3','','inherit','open','closed','','fw0a0487-2-3','','','2021-06-15 10:06:39','2021-06-15 10:06:39','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0487-2-3.jpg',0,'attachment','image/jpeg',0),(3391,8,'2021-06-15 10:06:39','2021-06-15 10:06:39','','cas10','','inherit','open','closed','','cas10','','','2021-06-15 10:06:39','2021-06-15 10:06:39','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas10.jpg',0,'attachment','image/jpeg',0),(3392,8,'2021-06-15 10:06:40','2021-06-15 10:06:40','','FW0A0518-2-1','','inherit','open','closed','','fw0a0518-2-1','','','2021-06-15 10:06:40','2021-06-15 10:06:40','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0518-2-1.jpg',0,'attachment','image/jpeg',0),(3393,8,'2021-06-15 10:06:41','2021-06-15 10:06:41','','cas11','','inherit','open','closed','','cas11','','','2021-06-15 10:06:41','2021-06-15 10:06:41','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas11.jpg',0,'attachment','image/jpeg',0),(3394,8,'2021-06-15 10:06:43','2021-06-15 10:06:43','','FW0A0538-2-1','','inherit','open','closed','','fw0a0538-2-1','','','2021-06-15 10:06:43','2021-06-15 10:06:43','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0538-2-1.jpg',0,'attachment','image/jpeg',0),(3395,8,'2021-06-15 10:06:43','2021-06-15 10:06:43','','cas12','','inherit','open','closed','','cas12','','','2021-06-15 10:06:43','2021-06-15 10:06:43','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas12.jpg',0,'attachment','image/jpeg',0),(3396,8,'2021-06-15 10:06:45','2021-06-15 10:06:45','','FW0A0544-2-1','','inherit','open','closed','','fw0a0544-2-1','','','2021-06-15 10:06:45','2021-06-15 10:06:45','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0544-2-1.jpg',0,'attachment','image/jpeg',0),(3397,8,'2021-06-15 10:06:46','2021-06-15 10:06:46','','cas13','','inherit','open','closed','','cas13','','','2021-06-15 10:06:46','2021-06-15 10:06:46','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas13.jpg',0,'attachment','image/jpeg',0),(3398,8,'2021-06-15 10:06:47','2021-06-15 10:06:47','','FW0A0559-2-HDR-Edit-1','','inherit','open','closed','','fw0a0559-2-hdr-edit-1','','','2021-06-15 10:06:47','2021-06-15 10:06:47','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0559-2-HDR-Edit-1.jpg',0,'attachment','image/jpeg',0),(3399,8,'2021-06-15 10:06:48','2021-06-15 10:06:48','','cas14','','inherit','open','closed','','cas14','','','2021-06-15 10:06:48','2021-06-15 10:06:48','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas14.jpg',0,'attachment','image/jpeg',0),(3400,8,'2021-06-15 10:06:49','2021-06-15 10:06:49','','FW0A0578-2-HDR-1','','inherit','open','closed','','fw0a0578-2-hdr-1','','','2021-06-15 10:06:49','2021-06-15 10:06:49','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0578-2-HDR-1.jpg',0,'attachment','image/jpeg',0),(3401,8,'2021-06-15 10:06:50','2021-06-15 10:06:50','','cas15','','inherit','open','closed','','cas15','','','2021-06-15 10:06:50','2021-06-15 10:06:50','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas15.jpg',0,'attachment','image/jpeg',0),(3402,8,'2021-06-15 10:06:51','2021-06-15 10:06:51','','FW0A0586-3-HDR','','inherit','open','closed','','fw0a0586-3-hdr','','','2021-06-15 10:06:51','2021-06-15 10:06:51','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0586-3-HDR.jpg',0,'attachment','image/jpeg',0),(3403,8,'2021-06-15 10:06:52','2021-06-15 10:06:52','','cas16','','inherit','open','closed','','cas16','','','2021-06-15 10:06:52','2021-06-15 10:06:52','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas16.jpg',0,'attachment','image/jpeg',0),(3404,8,'2021-06-15 10:06:53','2021-06-15 10:06:53','','FW0A0600-2-HDR-1','','inherit','open','closed','','fw0a0600-2-hdr-1','','','2021-06-15 10:06:53','2021-06-15 10:06:53','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0600-2-HDR-1.jpg',0,'attachment','image/jpeg',0),(3405,8,'2021-06-15 10:06:54','2021-06-15 10:06:54','','cas17','','inherit','open','closed','','cas17','','','2021-06-15 10:06:54','2021-06-15 10:06:54','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas17.jpg',0,'attachment','image/jpeg',0),(3406,8,'2021-06-15 10:06:55','2021-06-15 10:06:55','','FW0A0609-2-HDR-1','','inherit','open','closed','','fw0a0609-2-hdr-1','','','2021-06-15 10:06:55','2021-06-15 10:06:55','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0609-2-HDR-1.jpg',0,'attachment','image/jpeg',0),(3407,8,'2021-06-15 10:06:56','2021-06-15 10:06:56','','cas18','','inherit','open','closed','','cas18','','','2021-06-15 10:06:56','2021-06-15 10:06:56','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas18.jpg',0,'attachment','image/jpeg',0),(3408,8,'2021-06-15 10:06:58','2021-06-15 10:06:58','','FW0A0668-2 crop-1','','inherit','open','closed','','fw0a0668-2-crop-1','','','2021-06-15 10:06:58','2021-06-15 10:06:58','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0668-2-crop-1.jpg',0,'attachment','image/jpeg',0),(3409,8,'2021-06-15 10:06:58','2021-06-15 10:06:58','','cas19','','inherit','open','closed','','cas19','','','2021-06-15 10:06:58','2021-06-15 10:06:58','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas19.jpg',0,'attachment','image/jpeg',0),(3410,8,'2021-06-15 10:07:00','2021-06-15 10:07:00','','FW0A0668-2-1','','inherit','open','closed','','fw0a0668-2-1','','','2021-06-15 10:07:00','2021-06-15 10:07:00','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0668-2-1.jpg',0,'attachment','image/jpeg',0),(3411,8,'2021-06-15 10:07:00','2021-06-15 10:07:00','','cas20','','inherit','open','closed','','cas20','','','2021-06-15 10:07:00','2021-06-15 10:07:00','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas20.jpg',0,'attachment','image/jpeg',0),(3412,8,'2021-06-15 10:07:02','2021-06-15 10:07:02','','FW0A0689-2-HDR-1','','inherit','open','closed','','fw0a0689-2-hdr-1','','','2021-06-15 10:07:02','2021-06-15 10:07:02','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0689-2-HDR-1.jpg',0,'attachment','image/jpeg',0),(3413,8,'2021-06-15 10:07:03','2021-06-15 10:07:03','','cas21','','inherit','open','closed','','cas21','','','2021-06-15 10:07:03','2021-06-15 10:07:03','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas21.jpg',0,'attachment','image/jpeg',0),(3414,8,'2021-06-15 10:07:05','2021-06-15 10:07:05','','FW0A0697-2-HDR-1','','inherit','open','closed','','fw0a0697-2-hdr-1','','','2021-06-15 10:07:05','2021-06-15 10:07:05','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0697-2-HDR-1.jpg',0,'attachment','image/jpeg',0),(3415,8,'2021-06-15 10:07:05','2021-06-15 10:07:05','','cas22','','inherit','open','closed','','cas22','','','2021-06-15 10:07:05','2021-06-15 10:07:05','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas22.jpg',0,'attachment','image/jpeg',0),(3416,8,'2021-06-15 10:07:07','2021-06-15 10:07:07','','FW0A0753-2-HDR-1','','inherit','open','closed','','fw0a0753-2-hdr-1','','','2021-06-15 10:07:07','2021-06-15 10:07:07','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0753-2-HDR-1.jpg',0,'attachment','image/jpeg',0),(3417,8,'2021-06-15 10:07:08','2021-06-15 10:07:08','','cas24','','inherit','open','closed','','cas24','','','2021-06-15 10:07:08','2021-06-15 10:07:08','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas24.jpg',0,'attachment','image/jpeg',0),(3418,8,'2021-06-15 10:07:10','2021-06-15 10:07:10','','FW0A0800-Edit-1','','inherit','open','closed','','fw0a0800-edit-1','','','2021-06-15 10:07:10','2021-06-15 10:07:10','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0800-Edit-1.jpg',0,'attachment','image/jpeg',0),(3419,8,'2021-06-15 10:07:11','2021-06-15 10:07:11','','cas25','','inherit','open','closed','','cas25','','','2021-06-15 10:07:11','2021-06-15 10:07:11','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas25.jpg',0,'attachment','image/jpeg',0),(3420,8,'2021-06-15 10:07:14','2021-06-15 10:07:14','','FW0A0812-1','','inherit','open','closed','','fw0a0812-1','','','2021-06-15 10:07:14','2021-06-15 10:07:14','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0812-1.jpg',0,'attachment','image/jpeg',0),(3421,8,'2021-06-15 10:07:15','2021-06-15 10:07:15','','cas26','','inherit','open','closed','','cas26','','','2021-06-15 10:07:15','2021-06-15 10:07:15','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas26.jpg',0,'attachment','image/jpeg',0),(3422,8,'2021-06-15 10:07:17','2021-06-15 10:07:17','','FW0A0819-2-HDR-1','','inherit','open','closed','','fw0a0819-2-hdr-1','','','2021-06-15 10:07:17','2021-06-15 10:07:17','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0819-2-HDR-1.jpg',0,'attachment','image/jpeg',0),(3423,8,'2021-06-15 10:07:18','2021-06-15 10:07:18','','cas27','','inherit','open','closed','','cas27','','','2021-06-15 10:07:18','2021-06-15 10:07:18','',3335,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas27.jpg',0,'attachment','image/jpeg',0),(3424,8,'2021-06-15 10:07:19','2021-06-15 10:07:19','','FW0A0863-2-HDR-1','','inherit','open','closed','','fw0a0863-2-hdr-1','','','2021-06-15 10:07:19','2021-06-15 10:07:19','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0863-2-HDR-1.jpg',0,'attachment','image/jpeg',0),(3425,8,'2021-06-15 10:07:21','2021-06-15 10:07:21','','FW0A0905-Edit-2','','inherit','open','closed','','fw0a0905-edit-2','','','2021-06-15 10:07:21','2021-06-15 10:07:21','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0905-Edit-2.jpg',0,'attachment','image/jpeg',0),(3426,8,'2021-06-15 10:07:23','2021-06-15 10:07:23','','FW0A0952-HDR-Edit-1','','inherit','open','closed','','fw0a0952-hdr-edit-1','','','2021-06-15 10:07:23','2021-06-15 10:07:23','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0952-HDR-Edit-1.jpg',0,'attachment','image/jpeg',0),(3427,8,'2021-06-15 10:07:26','2021-06-15 10:07:26','','FW0A0955-Edit-1','','inherit','open','closed','','fw0a0955-edit-1','','','2021-06-15 10:07:26','2021-06-15 10:07:26','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0955-Edit-1.jpg',0,'attachment','image/jpeg',0),(3428,8,'2021-06-15 10:07:28','2021-06-15 10:07:28','','FW0A0968-Edit-1','','inherit','open','closed','','fw0a0968-edit-1','','','2021-06-15 10:07:28','2021-06-15 10:07:28','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0968-Edit-1.jpg',0,'attachment','image/jpeg',0),(3429,8,'2021-06-15 10:07:30','2021-06-15 10:07:30','','FW0A0989-Edit-1','','inherit','open','closed','','fw0a0989-edit-1','','','2021-06-15 10:07:30','2021-06-15 10:07:30','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0989-Edit-1.jpg',0,'attachment','image/jpeg',0),(3430,8,'2021-06-15 10:07:32','2021-06-15 10:07:32','','FW0A0995-1','','inherit','open','closed','','fw0a0995-1','','','2021-06-15 10:07:32','2021-06-15 10:07:32','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A0995-1.jpg',0,'attachment','image/jpeg',0),(3431,8,'2021-06-15 10:07:34','2021-06-15 10:07:34','','FW0A1019-HDR-1','','inherit','open','closed','','fw0a1019-hdr-1','','','2021-06-15 10:07:34','2021-06-15 10:07:34','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A1019-HDR-1.jpg',0,'attachment','image/jpeg',0),(3432,8,'2021-06-15 10:07:36','2021-06-15 10:07:36','','FW0A1022-HDR-1','','inherit','open','closed','','fw0a1022-hdr-1','','','2021-06-15 10:07:36','2021-06-15 10:07:36','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A1022-HDR-1.jpg',0,'attachment','image/jpeg',0),(3433,8,'2021-06-15 10:07:38','2021-06-15 10:07:38','','FW0A1062-Edit-1','','inherit','open','closed','','fw0a1062-edit-1','','','2021-06-15 10:07:38','2021-06-15 10:07:38','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A1062-Edit-1.jpg',0,'attachment','image/jpeg',0),(3434,8,'2021-06-15 10:07:40','2021-06-15 10:07:40','','FW0A1110-2-1','','inherit','open','closed','','fw0a1110-2-1','','','2021-06-15 10:07:40','2021-06-15 10:07:40','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A1110-2-1.jpg',0,'attachment','image/jpeg',0),(3435,8,'2021-06-15 10:07:42','2021-06-15 10:07:42','','FW0A1116-Edit-1','','inherit','open','closed','','fw0a1116-edit-1','','','2021-06-15 10:07:42','2021-06-15 10:07:42','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A1116-Edit-1.jpg',0,'attachment','image/jpeg',0),(3436,8,'2021-06-15 10:07:44','2021-06-15 10:07:44','','FW0A1182-Edit-1','','inherit','open','closed','','fw0a1182-edit-1','','','2021-06-15 10:07:44','2021-06-15 10:07:44','',3336,'https://om7717.dev34.info/wp-content/uploads/2021/06/FW0A1182-Edit-1.jpg',0,'attachment','image/jpeg',0),(3437,8,'2021-06-15 10:07:56','2021-06-15 10:07:56','','cas1','','inherit','open','closed','','cas1-2','','','2021-06-15 10:07:56','2021-06-15 10:07:56','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas1-1.jpg',0,'attachment','image/jpeg',0),(3438,8,'2021-06-15 10:07:59','2021-06-15 10:07:59','','cas2','','inherit','open','closed','','cas2-2','','','2021-06-15 10:07:59','2021-06-15 10:07:59','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas2-1.jpg',0,'attachment','image/jpeg',0),(3439,8,'2021-06-15 10:08:00','2021-06-15 10:08:00','','cas3','','inherit','open','closed','','cas3-2','','','2021-06-15 10:08:00','2021-06-15 10:08:00','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1.jpg',0,'attachment','image/jpeg',0),(3440,8,'2021-06-15 10:08:01','2021-06-15 10:08:01','','cas4','','inherit','open','closed','','cas4-2','','','2021-06-15 10:08:01','2021-06-15 10:08:01','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas4-1.jpg',0,'attachment','image/jpeg',0),(3441,8,'2021-06-15 10:08:02','2021-06-15 10:08:02','','cas5','','inherit','open','closed','','cas5-2','','','2021-06-15 10:08:02','2021-06-15 10:08:02','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas5-1.jpg',0,'attachment','image/jpeg',0),(3442,8,'2021-06-15 10:08:03','2021-06-15 10:08:03','','cas6','','inherit','open','closed','','cas6-2','','','2021-06-15 10:08:03','2021-06-15 10:08:03','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas6-1.jpg',0,'attachment','image/jpeg',0),(3443,8,'2021-06-15 10:08:04','2021-06-15 10:08:04','','cas7','','inherit','open','closed','','cas7-2','','','2021-06-15 10:08:04','2021-06-15 10:08:04','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas7-1.jpg',0,'attachment','image/jpeg',0),(3444,8,'2021-06-15 10:08:06','2021-06-15 10:08:06','','cas8','','inherit','open','closed','','cas8-2','','','2021-06-15 10:08:06','2021-06-15 10:08:06','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas8-1.jpg',0,'attachment','image/jpeg',0),(3445,8,'2021-06-15 10:08:07','2021-06-15 10:08:07','','cas9','','inherit','open','closed','','cas9-2','','','2021-06-15 10:08:07','2021-06-15 10:08:07','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas9-1.jpg',0,'attachment','image/jpeg',0),(3446,8,'2021-06-15 10:08:08','2021-06-15 10:08:08','','cas10','','inherit','open','closed','','cas10-2','','','2021-06-15 10:08:08','2021-06-15 10:08:08','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas10-1.jpg',0,'attachment','image/jpeg',0),(3447,8,'2021-06-15 10:08:09','2021-06-15 10:08:09','','cas11','','inherit','open','closed','','cas11-2','','','2021-06-15 10:08:09','2021-06-15 10:08:09','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas11-1.jpg',0,'attachment','image/jpeg',0),(3448,8,'2021-06-15 10:08:10','2021-06-15 10:08:10','','cas12','','inherit','open','closed','','cas12-2','','','2021-06-15 10:08:10','2021-06-15 10:08:10','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas12-1.jpg',0,'attachment','image/jpeg',0),(3449,8,'2021-06-15 10:08:11','2021-06-15 10:08:11','','cas13','','inherit','open','closed','','cas13-2','','','2021-06-15 10:08:11','2021-06-15 10:08:11','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas13-1.jpg',0,'attachment','image/jpeg',0),(3450,8,'2021-06-15 10:08:12','2021-06-15 10:08:12','','cas14','','inherit','open','closed','','cas14-2','','','2021-06-15 10:08:12','2021-06-15 10:08:12','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas14-1.jpg',0,'attachment','image/jpeg',0),(3451,8,'2021-06-15 10:08:13','2021-06-15 10:08:13','','cas15','','inherit','open','closed','','cas15-2','','','2021-06-15 10:08:13','2021-06-15 10:08:13','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas15-1.jpg',0,'attachment','image/jpeg',0),(3452,8,'2021-06-15 10:08:14','2021-06-15 10:08:14','','cas16','','inherit','open','closed','','cas16-2','','','2021-06-15 10:08:14','2021-06-15 10:08:14','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas16-1.jpg',0,'attachment','image/jpeg',0),(3453,8,'2021-06-15 10:08:15','2021-06-15 10:08:15','','cas17','','inherit','open','closed','','cas17-2','','','2021-06-15 10:08:15','2021-06-15 10:08:15','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas17-1.jpg',0,'attachment','image/jpeg',0),(3454,8,'2021-06-15 10:08:16','2021-06-15 10:08:16','','cas18','','inherit','open','closed','','cas18-2','','','2021-06-15 10:08:16','2021-06-15 10:08:16','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas18-1.jpg',0,'attachment','image/jpeg',0),(3455,8,'2021-06-15 10:08:17','2021-06-15 10:08:17','','cas19','','inherit','open','closed','','cas19-2','','','2021-06-15 10:08:17','2021-06-15 10:08:17','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas19-1.jpg',0,'attachment','image/jpeg',0),(3456,8,'2021-06-15 10:08:18','2021-06-15 10:08:18','','cas20','','inherit','open','closed','','cas20-2','','','2021-06-15 10:08:18','2021-06-15 10:08:18','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas20-1.jpg',0,'attachment','image/jpeg',0),(3457,8,'2021-06-15 10:08:19','2021-06-15 10:08:19','','cas21','','inherit','open','closed','','cas21-2','','','2021-06-15 10:08:19','2021-06-15 10:08:19','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas21-1.jpg',0,'attachment','image/jpeg',0),(3458,8,'2021-06-15 10:08:21','2021-06-15 10:08:21','','cas22','','inherit','open','closed','','cas22-2','','','2021-06-15 10:08:21','2021-06-15 10:08:21','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas22-1.jpg',0,'attachment','image/jpeg',0),(3459,8,'2021-06-15 10:08:22','2021-06-15 10:08:22','','cas24','','inherit','open','closed','','cas24-2','','','2021-06-15 10:08:22','2021-06-15 10:08:22','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas24-1.jpg',0,'attachment','image/jpeg',0),(3460,8,'2021-06-15 10:08:23','2021-06-15 10:08:23','','cas25','','inherit','open','closed','','cas25-2','','','2021-06-15 10:08:23','2021-06-15 10:08:23','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas25-1.jpg',0,'attachment','image/jpeg',0),(3461,8,'2021-06-15 10:08:24','2021-06-15 10:08:24','','cas26','','inherit','open','closed','','cas26-2','','','2021-06-15 10:08:24','2021-06-15 10:08:24','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas26-1.jpg',0,'attachment','image/jpeg',0),(3462,8,'2021-06-15 10:08:25','2021-06-15 10:08:25','','cas27','','inherit','open','closed','','cas27-2','','','2021-06-15 10:08:25','2021-06-15 10:08:25','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/cas27-1.jpg',0,'attachment','image/jpeg',0),(3463,8,'2021-06-15 10:09:02','2021-06-15 10:09:02','','6347_Maryland_Dr_Los_Angeles_CA_90048_0001','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0001','','','2021-06-15 10:09:02','2021-06-15 10:09:02','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0001.jpg',0,'attachment','image/jpeg',0),(3464,8,'2021-06-15 10:09:05','2021-06-15 10:09:05','','6347_Maryland_Dr_Los_Angeles_CA_90048_0002','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0002','','','2021-06-15 10:09:05','2021-06-15 10:09:05','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0002.jpg',0,'attachment','image/jpeg',0),(3465,8,'2021-06-15 10:09:11','2021-06-15 10:09:11','','6347_Maryland_Dr_Los_Angeles_CA_90048_0003','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0003','','','2021-06-15 10:09:11','2021-06-15 10:09:11','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0003.jpg',0,'attachment','image/jpeg',0),(3466,8,'2021-06-15 10:09:16','2021-06-15 10:09:16','','6347_Maryland_Dr_Los_Angeles_CA_90048_0004','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0004','','','2021-06-15 10:09:16','2021-06-15 10:09:16','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0004.jpg',0,'attachment','image/jpeg',0),(3467,8,'2021-06-15 10:09:19','2021-06-15 10:09:19','','6347_Maryland_Dr_Los_Angeles_CA_90048_0005','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0005','','','2021-06-15 10:09:19','2021-06-15 10:09:19','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0005.jpg',0,'attachment','image/jpeg',0),(3468,8,'2021-06-15 10:09:24','2021-06-15 10:09:24','','6347_Maryland_Dr_Los_Angeles_CA_90048_0006','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0006','','','2021-06-15 10:09:24','2021-06-15 10:09:24','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0006.jpg',0,'attachment','image/jpeg',0),(3469,8,'2021-06-15 10:09:27','2021-06-15 10:09:27','','6347_Maryland_Dr_Los_Angeles_CA_90048_0007','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0007','','','2021-06-15 10:09:27','2021-06-15 10:09:27','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0007.jpg',0,'attachment','image/jpeg',0),(3470,8,'2021-06-15 10:09:31','2021-06-15 10:09:31','','6347_Maryland_Dr_Los_Angeles_CA_90048_0008','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0008','','','2021-06-15 10:09:31','2021-06-15 10:09:31','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0008.jpg',0,'attachment','image/jpeg',0),(3471,8,'2021-06-15 10:09:36','2021-06-15 10:09:36','','6347_Maryland_Dr_Los_Angeles_CA_90048_0009','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0009','','','2021-06-15 10:09:36','2021-06-15 10:09:36','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0009.jpg',0,'attachment','image/jpeg',0),(3472,8,'2021-06-15 10:09:39','2021-06-15 10:09:39','','6347_Maryland_Dr_Los_Angeles_CA_90048_0010','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0010','','','2021-06-15 10:09:39','2021-06-15 10:09:39','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0010.jpg',0,'attachment','image/jpeg',0),(3473,8,'2021-06-15 10:09:43','2021-06-15 10:09:43','','6347_Maryland_Dr_Los_Angeles_CA_90048_0011','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0011','','','2021-06-15 10:09:43','2021-06-15 10:09:43','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0011.jpg',0,'attachment','image/jpeg',0),(3474,8,'2021-06-15 10:09:49','2021-06-15 10:09:49','','6347_Maryland_Dr_Los_Angeles_CA_90048_0012','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0012','','','2021-06-15 10:09:49','2021-06-15 10:09:49','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0012.jpg',0,'attachment','image/jpeg',0),(3475,8,'2021-06-15 10:09:53','2021-06-15 10:09:53','','6347_Maryland_Dr_Los_Angeles_CA_90048_0013','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0013','','','2021-06-15 10:09:53','2021-06-15 10:09:53','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0013.jpg',0,'attachment','image/jpeg',0),(3476,8,'2021-06-15 10:09:56','2021-06-15 10:09:56','','6347_Maryland_Dr_Los_Angeles_CA_90048_0014','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0014','','','2021-06-15 10:09:56','2021-06-15 10:09:56','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0014.jpg',0,'attachment','image/jpeg',0),(3477,8,'2021-06-15 10:10:00','2021-06-15 10:10:00','','6347_Maryland_Dr_Los_Angeles_CA_90048_0015','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0015','','','2021-06-15 10:10:00','2021-06-15 10:10:00','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0015.jpg',0,'attachment','image/jpeg',0),(3478,8,'2021-06-15 10:10:04','2021-06-15 10:10:04','','6347_Maryland_Dr_Los_Angeles_CA_90048_0016','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0016','','','2021-06-15 10:10:04','2021-06-15 10:10:04','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0016.jpg',0,'attachment','image/jpeg',0),(3479,8,'2021-06-15 10:10:07','2021-06-15 10:10:07','','6347_Maryland_Dr_Los_Angeles_CA_90048_0017','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0017','','','2021-06-15 10:10:07','2021-06-15 10:10:07','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0017.jpg',0,'attachment','image/jpeg',0),(3480,8,'2021-06-15 10:10:10','2021-06-15 10:10:10','','6347_Maryland_Dr_Los_Angeles_CA_90048_0018','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0018','','','2021-06-15 10:10:10','2021-06-15 10:10:10','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0018.jpg',0,'attachment','image/jpeg',0),(3481,8,'2021-06-15 10:10:14','2021-06-15 10:10:14','','6347_Maryland_Dr_Los_Angeles_CA_90048_0019','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0019','','','2021-06-15 10:10:14','2021-06-15 10:10:14','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0019.jpg',0,'attachment','image/jpeg',0),(3482,8,'2021-06-15 10:10:17','2021-06-15 10:10:17','','6347_Maryland_Dr_Los_Angeles_CA_90048_0020','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0020','','','2021-06-15 10:10:17','2021-06-15 10:10:17','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0020.jpg',0,'attachment','image/jpeg',0),(3483,8,'2021-06-15 10:10:20','2021-06-15 10:10:20','','01EBCE0B-2846-438B-A888-1F49E2924C94','','inherit','open','closed','','01ebce0b-2846-438b-a888-1f49e2924c94','','','2021-06-15 10:10:20','2021-06-15 10:10:20','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/01EBCE0B-2846-438B-A888-1F49E2924C94.jpg',0,'attachment','image/jpeg',0),(3484,8,'2021-06-15 10:10:22','2021-06-15 10:10:22','','6347_Maryland_Dr_Los_Angeles_CA_90048_0021','','inherit','open','closed','','6347_maryland_dr_los_angeles_ca_90048_0021','','','2021-06-15 10:10:22','2021-06-15 10:10:22','',3338,'https://om7717.dev34.info/wp-content/uploads/2021/06/6347_Maryland_Dr_Los_Angeles_CA_90048_0021.jpg',0,'attachment','image/jpeg',0),(3485,8,'2021-06-15 10:10:24','2021-06-15 10:10:24','','2A72D265-DC5B-424F-9826-8B0596E5487E','','inherit','open','closed','','2a72d265-dc5b-424f-9826-8b0596e5487e','','','2021-06-15 10:10:24','2021-06-15 10:10:24','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/2A72D265-DC5B-424F-9826-8B0596E5487E.jpg',0,'attachment','image/jpeg',0),(3486,8,'2021-06-15 10:10:28','2021-06-15 10:10:28','','2B007F1D-6DCB-44EF-843D-4895A90CDB38','','inherit','open','closed','','2b007f1d-6dcb-44ef-843d-4895a90cdb38','','','2021-06-15 10:10:28','2021-06-15 10:10:28','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/2B007F1D-6DCB-44EF-843D-4895A90CDB38.jpg',0,'attachment','image/jpeg',0),(3487,8,'2021-06-15 10:10:31','2021-06-15 10:10:31','','4D8B60DF-0BCA-40DC-86BC-64337AB75825','','inherit','open','closed','','4d8b60df-0bca-40dc-86bc-64337ab75825','','','2021-06-15 10:10:31','2021-06-15 10:10:31','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/4D8B60DF-0BCA-40DC-86BC-64337AB75825.jpg',0,'attachment','image/jpeg',0),(3488,8,'2021-06-15 10:10:34','2021-06-15 10:10:34','','5ADB57B4-A2B2-40BF-BF61-F3F348003F4B','','inherit','open','closed','','5adb57b4-a2b2-40bf-bf61-f3f348003f4b','','','2021-06-15 10:10:34','2021-06-15 10:10:34','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/5ADB57B4-A2B2-40BF-BF61-F3F348003F4B.jpg',0,'attachment','image/jpeg',0),(3489,8,'2021-06-15 10:10:36','2021-06-15 10:10:36','','5C44215B-1586-4966-8F2A-FA9D882F0386','','inherit','open','closed','','5c44215b-1586-4966-8f2a-fa9d882f0386','','','2021-06-15 10:10:36','2021-06-15 10:10:36','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/5C44215B-1586-4966-8F2A-FA9D882F0386.jpg',0,'attachment','image/jpeg',0),(3490,8,'2021-06-15 10:10:48','2021-06-15 10:10:48','','5F28DBD6-7BD6-4ED0-812E-68B336D4FB33','','inherit','open','closed','','5f28dbd6-7bd6-4ed0-812e-68b336d4fb33','','','2021-06-15 10:10:48','2021-06-15 10:10:48','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/5F28DBD6-7BD6-4ED0-812E-68B336D4FB33.jpg',0,'attachment','image/jpeg',0),(3491,8,'2021-06-15 10:10:52','2021-06-15 10:10:52','','6E73637C-B3F5-4F4A-B02E-9899FB38F60D','','inherit','open','closed','','6e73637c-b3f5-4f4a-b02e-9899fb38f60d','','','2021-06-15 10:10:52','2021-06-15 10:10:52','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/6E73637C-B3F5-4F4A-B02E-9899FB38F60D.jpg',0,'attachment','image/jpeg',0),(3492,8,'2021-06-15 10:10:54','2021-06-15 10:10:54','','8EB3492B-8D85-4429-A775-10034308652F','','inherit','open','closed','','8eb3492b-8d85-4429-a775-10034308652f','','','2021-06-15 10:10:54','2021-06-15 10:10:54','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/8EB3492B-8D85-4429-A775-10034308652F.jpg',0,'attachment','image/jpeg',0),(3493,8,'2021-06-15 10:10:57','2021-06-15 10:10:57','','8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5','','inherit','open','closed','','8f07bf01-6875-4ad2-aa68-40f6f5f7eee5','','','2021-06-15 10:10:57','2021-06-15 10:10:57','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/8F07BF01-6875-4AD2-AA68-40F6F5F7EEE5.jpg',0,'attachment','image/jpeg',0),(3494,8,'2021-06-15 10:10:59','2021-06-15 10:10:59','','56E784C2-9A29-400F-86BF-776EF88057E9','','inherit','open','closed','','56e784c2-9a29-400f-86bf-776ef88057e9','','','2021-06-15 10:10:59','2021-06-15 10:10:59','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/56E784C2-9A29-400F-86BF-776EF88057E9.jpg',0,'attachment','image/jpeg',0),(3495,8,'2021-06-15 10:11:02','2021-06-15 10:11:02','','86A998A7-4E4E-4360-A6C2-A4E6C7A798D2','','inherit','open','closed','','86a998a7-4e4e-4360-a6c2-a4e6c7a798d2','','','2021-06-15 10:11:02','2021-06-15 10:11:02','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/86A998A7-4E4E-4360-A6C2-A4E6C7A798D2.jpg',0,'attachment','image/jpeg',0),(3496,8,'2021-06-15 10:11:04','2021-06-15 10:11:04','','123BF73D-4D58-464E-906B-FCD3665D2A6B','','inherit','open','closed','','123bf73d-4d58-464e-906b-fcd3665d2a6b','','','2021-06-15 10:11:04','2021-06-15 10:11:04','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/123BF73D-4D58-464E-906B-FCD3665D2A6B.jpg',0,'attachment','image/jpeg',0),(3497,8,'2021-06-15 10:11:07','2021-06-15 10:11:07','','565B7C87-F332-4655-B1E4-52E9B489E3E3','','inherit','open','closed','','565b7c87-f332-4655-b1e4-52e9b489e3e3','','','2021-06-15 10:11:07','2021-06-15 10:11:07','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/565B7C87-F332-4655-B1E4-52E9B489E3E3.jpg',0,'attachment','image/jpeg',0),(3498,8,'2021-06-15 10:11:09','2021-06-15 10:11:09','','01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA','','inherit','open','closed','','01466eab-2dbb-4ac4-b7e8-0f86f1644bea','','','2021-06-15 10:11:09','2021-06-15 10:11:09','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/01466EAB-2DBB-4AC4-B7E8-0F86F1644BEA.jpg',0,'attachment','image/jpeg',0),(3499,8,'2021-06-15 10:11:12','2021-06-15 10:11:12','','5452CB3E-4866-4D1E-8CA0-A670C91F1A45','','inherit','open','closed','','5452cb3e-4866-4d1e-8ca0-a670c91f1a45','','','2021-06-15 10:11:12','2021-06-15 10:11:12','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/5452CB3E-4866-4D1E-8CA0-A670C91F1A45.jpg',0,'attachment','image/jpeg',0),(3500,8,'2021-06-15 10:11:14','2021-06-15 10:11:14','','6836B441-430C-410F-B1A5-8350F74D4A15','','inherit','open','closed','','6836b441-430c-410f-b1a5-8350f74d4a15','','','2021-06-15 10:11:14','2021-06-15 10:11:14','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/6836B441-430C-410F-B1A5-8350F74D4A15.jpg',0,'attachment','image/jpeg',0),(3501,8,'2021-06-15 10:11:17','2021-06-15 10:11:17','','41619C01-A215-4F7B-A448-06615FCB3935','','inherit','open','closed','','41619c01-a215-4f7b-a448-06615fcb3935','','','2021-06-15 10:11:17','2021-06-15 10:11:17','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/41619C01-A215-4F7B-A448-06615FCB3935.jpg',0,'attachment','image/jpeg',0),(3502,8,'2021-06-15 10:11:19','2021-06-15 10:11:19','','2208505D-9667-4849-B368-16A97E7A20EE','','inherit','open','closed','','2208505d-9667-4849-b368-16a97e7a20ee','','','2021-06-15 10:11:19','2021-06-15 10:11:19','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/2208505D-9667-4849-B368-16A97E7A20EE.jpg',0,'attachment','image/jpeg',0),(3503,8,'2021-06-15 10:11:22','2021-06-15 10:11:22','','A5D75136-9428-4430-AE88-2D806DE5F30D','','inherit','open','closed','','a5d75136-9428-4430-ae88-2d806de5f30d','','','2021-06-15 10:11:22','2021-06-15 10:11:22','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/A5D75136-9428-4430-AE88-2D806DE5F30D.jpg',0,'attachment','image/jpeg',0),(3504,8,'2021-06-15 10:11:24','2021-06-15 10:11:24','','A8FF24B0-BEA0-441E-85CA-85194C1DF5EC','','inherit','open','closed','','a8ff24b0-bea0-441e-85ca-85194c1df5ec','','','2021-06-15 10:11:24','2021-06-15 10:11:24','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/A8FF24B0-BEA0-441E-85CA-85194C1DF5EC.jpg',0,'attachment','image/jpeg',0),(3505,8,'2021-06-15 10:11:27','2021-06-15 10:11:27','','A6562C2C-DCE5-4C75-85E7-B08006AAB4FE','','inherit','open','closed','','a6562c2c-dce5-4c75-85e7-b08006aab4fe','','','2021-06-15 10:11:27','2021-06-15 10:11:27','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/A6562C2C-DCE5-4C75-85E7-B08006AAB4FE.jpg',0,'attachment','image/jpeg',0),(3506,8,'2021-06-15 10:11:29','2021-06-15 10:11:29','','1','','inherit','open','closed','','1-5','','','2021-06-15 10:11:29','2021-06-15 10:11:29','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/1-1.jpg',0,'attachment','image/jpeg',0),(3507,8,'2021-06-15 10:11:30','2021-06-15 10:11:30','','AE11E812-4B0E-4CF4-8773-F24591DF617F','','inherit','open','closed','','ae11e812-4b0e-4cf4-8773-f24591df617f','','','2021-06-15 10:11:30','2021-06-15 10:11:30','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/AE11E812-4B0E-4CF4-8773-F24591DF617F.jpg',0,'attachment','image/jpeg',0),(3508,8,'2021-06-15 10:11:31','2021-06-15 10:11:31','','2','','inherit','open','closed','','2-5','','','2021-06-15 10:11:31','2021-06-15 10:11:31','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/2-1.jpg',0,'attachment','image/jpeg',0),(3509,8,'2021-06-15 10:11:32','2021-06-15 10:11:32','','B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9','','inherit','open','closed','','b3caa72e-9c1c-4e6f-8966-37f0048e8fd9','','','2021-06-15 10:11:32','2021-06-15 10:11:32','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/B3CAA72E-9C1C-4E6F-8966-37F0048E8FD9.jpg',0,'attachment','image/jpeg',0),(3510,8,'2021-06-15 10:11:33','2021-06-15 10:11:33','','3','','inherit','open','closed','','3-5','','','2021-06-15 10:11:33','2021-06-15 10:11:33','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/3-1.jpg',0,'attachment','image/jpeg',0),(3511,8,'2021-06-15 10:11:35','2021-06-15 10:11:35','','B6FF5053-9716-4DF8-A2A2-4F359849798E','','inherit','open','closed','','b6ff5053-9716-4df8-a2a2-4f359849798e','','','2021-06-15 10:11:35','2021-06-15 10:11:35','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/B6FF5053-9716-4DF8-A2A2-4F359849798E.jpg',0,'attachment','image/jpeg',0),(3512,8,'2021-06-15 10:11:36','2021-06-15 10:11:36','','4','','inherit','open','closed','','4-5','','','2021-06-15 10:11:36','2021-06-15 10:11:36','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/4-1.jpg',0,'attachment','image/jpeg',0),(3513,8,'2021-06-15 10:11:37','2021-06-15 10:11:37','','5','','inherit','open','closed','','5-5','','','2021-06-15 10:11:37','2021-06-15 10:11:37','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/5-1.jpg',0,'attachment','image/jpeg',0),(3514,8,'2021-06-15 10:11:38','2021-06-15 10:11:38','','BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47','','inherit','open','closed','','bc7abc8c-dfa5-468d-8adb-b9cfc6182d47','','','2021-06-15 10:11:38','2021-06-15 10:11:38','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/BC7ABC8C-DFA5-468D-8ADB-B9CFC6182D47.jpg',0,'attachment','image/jpeg',0),(3515,8,'2021-06-15 10:11:40','2021-06-15 10:11:40','','6','','inherit','open','closed','','6-4','','','2021-06-15 10:11:40','2021-06-15 10:11:40','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/6-1.jpg',0,'attachment','image/jpeg',0),(3516,8,'2021-06-15 10:11:40','2021-06-15 10:11:40','','C3D615E9-A2F7-4486-A140-22BBA5F74659','','inherit','open','closed','','c3d615e9-a2f7-4486-a140-22bba5f74659','','','2021-06-15 10:11:40','2021-06-15 10:11:40','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/C3D615E9-A2F7-4486-A140-22BBA5F74659.jpg',0,'attachment','image/jpeg',0),(3517,8,'2021-06-15 10:11:41','2021-06-15 10:11:41','','7','','inherit','open','closed','','7-4','','','2021-06-15 10:11:41','2021-06-15 10:11:41','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7-1.jpg',0,'attachment','image/jpeg',0),(3518,8,'2021-06-15 10:11:43','2021-06-15 10:11:43','','C8744A9A-FD54-472D-920F-9FF3556BAC93','','inherit','open','closed','','c8744a9a-fd54-472d-920f-9ff3556bac93','','','2021-06-15 10:11:43','2021-06-15 10:11:43','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/C8744A9A-FD54-472D-920F-9FF3556BAC93.jpg',0,'attachment','image/jpeg',0),(3519,8,'2021-06-15 10:11:43','2021-06-15 10:11:43','','8','','inherit','open','closed','','8-5','','','2021-06-15 10:11:43','2021-06-15 10:11:43','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/8-1.jpg',0,'attachment','image/jpeg',0),(3520,8,'2021-06-15 10:11:46','2021-06-15 10:11:46','','C9700104-D699-49F5-A6F9-2316A1B5DC54','','inherit','open','closed','','c9700104-d699-49f5-a6f9-2316a1b5dc54','','','2021-06-15 10:11:46','2021-06-15 10:11:46','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/C9700104-D699-49F5-A6F9-2316A1B5DC54.jpg',0,'attachment','image/jpeg',0),(3521,8,'2021-06-15 10:11:46','2021-06-15 10:11:46','','9','','inherit','open','closed','','9-5','','','2021-06-15 10:11:46','2021-06-15 10:11:46','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/9-1.jpg',0,'attachment','image/jpeg',0),(3522,8,'2021-06-15 10:11:48','2021-06-15 10:11:48','','CA97D2F1-49A6-4201-A10E-F21F126AD25F','','inherit','open','closed','','ca97d2f1-49a6-4201-a10e-f21f126ad25f','','','2021-06-15 10:11:48','2021-06-15 10:11:48','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/CA97D2F1-49A6-4201-A10E-F21F126AD25F.jpg',0,'attachment','image/jpeg',0),(3523,8,'2021-06-15 10:11:51','2021-06-15 10:11:51','','E2E1A548-7EB1-418C-874F-E362258AD27C','','inherit','open','closed','','e2e1a548-7eb1-418c-874f-e362258ad27c','','','2021-06-15 10:11:51','2021-06-15 10:11:51','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/E2E1A548-7EB1-418C-874F-E362258AD27C.jpg',0,'attachment','image/jpeg',0),(3524,8,'2021-06-15 10:11:53','2021-06-15 10:11:53','','E70CB066-84F5-4B88-AD9A-754D6EBC8C07','','inherit','open','closed','','e70cb066-84f5-4b88-ad9a-754d6ebc8c07','','','2021-06-15 10:11:53','2021-06-15 10:11:53','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/E70CB066-84F5-4B88-AD9A-754D6EBC8C07.jpg',0,'attachment','image/jpeg',0),(3525,8,'2021-06-15 10:11:56','2021-06-15 10:11:56','','E474D795-DF60-4F08-979A-19E1686D57E3','','inherit','open','closed','','e474d795-df60-4f08-979a-19e1686d57e3','','','2021-06-15 10:11:56','2021-06-15 10:11:56','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/E474D795-DF60-4F08-979A-19E1686D57E3.jpg',0,'attachment','image/jpeg',0),(3526,8,'2021-06-15 10:11:58','2021-06-15 10:11:58','','E6714E88-5F82-4059-BFB6-93761D53751B','','inherit','open','closed','','e6714e88-5f82-4059-bfb6-93761d53751b','','','2021-06-15 10:11:58','2021-06-15 10:11:58','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/E6714E88-5F82-4059-BFB6-93761D53751B.jpg',0,'attachment','image/jpeg',0),(3527,8,'2021-06-15 10:12:00','2021-06-15 10:12:00','','E3719696-496F-4AF0-AFEB-282FDE0B408D','','inherit','open','closed','','e3719696-496f-4af0-afeb-282fde0b408d','','','2021-06-15 10:12:00','2021-06-15 10:12:00','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/E3719696-496F-4AF0-AFEB-282FDE0B408D.jpg',0,'attachment','image/jpeg',0),(3528,8,'2021-06-15 10:12:01','2021-06-15 10:12:01','','10','','inherit','open','closed','','10-5','','','2021-06-15 10:12:01','2021-06-15 10:12:01','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/10-1.jpg',0,'attachment','image/jpeg',0),(3529,8,'2021-06-15 10:12:03','2021-06-15 10:12:03','','EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB','','inherit','open','closed','','ec579bad-94ba-49ac-b3cb-e0045ee8afcb','','','2021-06-15 10:12:03','2021-06-15 10:12:03','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/EC579BAD-94BA-49AC-B3CB-E0045EE8AFCB.jpg',0,'attachment','image/jpeg',0),(3530,8,'2021-06-15 10:12:06','2021-06-15 10:12:06','','ED3F4111-81BE-4BFC-95C4-F399F93EBA90','','inherit','open','closed','','ed3f4111-81be-4bfc-95c4-f399f93eba90','','','2021-06-15 10:12:06','2021-06-15 10:12:06','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/ED3F4111-81BE-4BFC-95C4-F399F93EBA90.jpg',0,'attachment','image/jpeg',0),(3531,8,'2021-06-15 10:12:08','2021-06-15 10:12:08','','F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5','','inherit','open','closed','','f1b063f2-fcff-4d4d-9c1a-6a938f8ee3f5','','','2021-06-15 10:12:08','2021-06-15 10:12:08','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/F1B063F2-FCFF-4D4D-9C1A-6A938F8EE3F5.jpg',0,'attachment','image/jpeg',0),(3532,8,'2021-06-15 10:12:10','2021-06-15 10:12:10','','F832F08C-19D7-4D96-B5FD-25BC66314675','','inherit','open','closed','','f832f08c-19d7-4d96-b5fd-25bc66314675','','','2021-06-15 10:12:10','2021-06-15 10:12:10','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/F832F08C-19D7-4D96-B5FD-25BC66314675.jpg',0,'attachment','image/jpeg',0),(3533,8,'2021-06-15 10:12:13','2021-06-15 10:12:13','','F6640F96-5124-442D-B88E-E7638AA3BA75','','inherit','open','closed','','f6640f96-5124-442d-b88e-e7638aa3ba75','','','2021-06-15 10:12:13','2021-06-15 10:12:13','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/F6640F96-5124-442D-B88E-E7638AA3BA75.jpg',0,'attachment','image/jpeg',0),(3534,8,'2021-06-15 10:12:15','2021-06-15 10:12:15','','F83979A9-C921-4E29-A2CE-3A3770BBC32C','','inherit','open','closed','','f83979a9-c921-4e29-a2ce-3a3770bbc32c','','','2021-06-15 10:12:15','2021-06-15 10:12:15','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/F83979A9-C921-4E29-A2CE-3A3770BBC32C.jpg',0,'attachment','image/jpeg',0),(3535,8,'2021-06-15 10:12:16','2021-06-15 10:12:16','','11','','inherit','open','closed','','11-5','','','2021-06-15 10:12:16','2021-06-15 10:12:16','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/11-1.jpg',0,'attachment','image/jpeg',0),(3536,8,'2021-06-15 10:12:17','2021-06-15 10:12:17','','FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13','','inherit','open','closed','','fd58b7b2-42b6-4a29-85ea-37cfcdb4ef13','','','2021-06-15 10:12:17','2021-06-15 10:12:17','',3339,'https://om7717.dev34.info/wp-content/uploads/2021/06/FD58B7B2-42B6-4A29-85EA-37CFCDB4EF13.jpg',0,'attachment','image/jpeg',0),(3537,8,'2021-06-15 10:12:30','2021-06-15 10:12:30','','12','','inherit','open','closed','','12-5','','','2021-06-15 10:12:30','2021-06-15 10:12:30','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/12-1.jpg',0,'attachment','image/jpeg',0),(3538,8,'2021-06-15 10:12:33','2021-06-15 10:12:33','','13','','inherit','open','closed','','13-4','','','2021-06-15 10:12:33','2021-06-15 10:12:33','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/13-1.jpg',0,'attachment','image/jpeg',0),(3539,8,'2021-06-15 10:12:48','2021-06-15 10:12:48','','14','','inherit','open','closed','','14-4','','','2021-06-15 10:12:48','2021-06-15 10:12:48','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/14-1.jpg',0,'attachment','image/jpeg',0),(3540,8,'2021-06-15 10:13:02','2021-06-15 10:13:02','','15','','inherit','open','closed','','15-4','','','2021-06-15 10:13:02','2021-06-15 10:13:02','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/15-1.jpg',0,'attachment','image/jpeg',0),(3541,8,'2021-06-15 10:13:05','2021-06-15 10:13:05','','16','','inherit','open','closed','','16-4','','','2021-06-15 10:13:05','2021-06-15 10:13:05','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/16-1.jpg',0,'attachment','image/jpeg',0),(3542,8,'2021-06-15 10:13:19','2021-06-15 10:13:19','','17','','inherit','open','closed','','17-4','','','2021-06-15 10:13:19','2021-06-15 10:13:19','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/17-1.jpg',0,'attachment','image/jpeg',0),(3543,8,'2021-06-15 10:13:21','2021-06-15 10:13:21','','18','','inherit','open','closed','','18-5','','','2021-06-15 10:13:21','2021-06-15 10:13:21','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/18-1.jpg',0,'attachment','image/jpeg',0),(3544,8,'2021-06-15 10:13:23','2021-06-15 10:13:23','','19','','inherit','open','closed','','19-5','','','2021-06-15 10:13:23','2021-06-15 10:13:23','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/19-1.jpg',0,'attachment','image/jpeg',0),(3545,8,'2021-06-15 10:13:25','2021-06-15 10:13:25','','20','','inherit','open','closed','','20-4','','','2021-06-15 10:13:25','2021-06-15 10:13:25','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/20-1.jpg',0,'attachment','image/jpeg',0),(3546,8,'2021-06-15 10:13:27','2021-06-15 10:13:27','','21','','inherit','open','closed','','21-4','','','2021-06-15 10:13:27','2021-06-15 10:13:27','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/21-1.jpg',0,'attachment','image/jpeg',0),(3547,8,'2021-06-15 10:13:41','2021-06-15 10:13:41','','22','','inherit','open','closed','','22-5','','','2021-06-15 10:13:41','2021-06-15 10:13:41','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/22-1.jpg',0,'attachment','image/jpeg',0),(3548,8,'2021-06-15 10:13:43','2021-06-15 10:13:43','','23','','inherit','open','closed','','23-5','','','2021-06-15 10:13:43','2021-06-15 10:13:43','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/23-1.jpg',0,'attachment','image/jpeg',0),(3549,8,'2021-06-15 10:13:45','2021-06-15 10:13:45','','24','','inherit','open','closed','','24-5','','','2021-06-15 10:13:45','2021-06-15 10:13:45','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/24-1.jpg',0,'attachment','image/jpeg',0),(3550,8,'2021-06-15 10:13:57','2021-06-15 10:13:57','','25','','inherit','open','closed','','25-5','','','2021-06-15 10:13:57','2021-06-15 10:13:57','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/25-1.jpg',0,'attachment','image/jpeg',0),(3551,8,'2021-06-15 10:14:13','2021-06-15 10:14:13','','26','','inherit','open','closed','','26-5','','','2021-06-15 10:14:13','2021-06-15 10:14:13','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/26-1.jpg',0,'attachment','image/jpeg',0),(3552,8,'2021-06-15 10:14:16','2021-06-15 10:14:16','','27','','inherit','open','closed','','27-4','','','2021-06-15 10:14:16','2021-06-15 10:14:16','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/27-1.jpg',0,'attachment','image/jpeg',0),(3553,8,'2021-06-15 10:14:30','2021-06-15 10:14:30','','28','','inherit','open','closed','','28-4','','','2021-06-15 10:14:30','2021-06-15 10:14:30','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/28-1.jpg',0,'attachment','image/jpeg',0),(3554,8,'2021-06-15 10:14:45','2021-06-15 10:14:45','','29','','inherit','open','closed','','29-5','','','2021-06-15 10:14:45','2021-06-15 10:14:45','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/29-1.jpg',0,'attachment','image/jpeg',0),(3555,8,'2021-06-15 10:15:00','2021-06-15 10:15:00','','30','','inherit','open','closed','','30-5','','','2021-06-15 10:15:00','2021-06-15 10:15:00','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/30-1.jpg',0,'attachment','image/jpeg',0),(3556,8,'2021-06-15 10:15:14','2021-06-15 10:15:14','','31','','inherit','open','closed','','31-5','','','2021-06-15 10:15:14','2021-06-15 10:15:14','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/31-1.jpg',0,'attachment','image/jpeg',0),(3557,8,'2021-06-15 10:15:17','2021-06-15 10:15:17','','32','','inherit','open','closed','','32-5','','','2021-06-15 10:15:17','2021-06-15 10:15:17','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/32-1.jpg',0,'attachment','image/jpeg',0),(3558,8,'2021-06-15 10:15:25','2021-06-15 10:15:25','','34','','inherit','open','closed','','34-2','','','2021-06-15 10:15:25','2021-06-15 10:15:25','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/34.jpg',0,'attachment','image/jpeg',0),(3559,8,'2021-06-15 10:15:42','2021-06-15 10:15:42','','35','','inherit','open','closed','','35-2','','','2021-06-15 10:15:42','2021-06-15 10:15:42','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/35.jpg',0,'attachment','image/jpeg',0),(3560,8,'2021-06-15 10:15:56','2021-06-15 10:15:56','','35','','inherit','open','closed','','35-3','','','2021-06-15 10:15:56','2021-06-15 10:15:56','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/35-1.jpg',0,'attachment','image/jpeg',0),(3561,8,'2021-06-15 10:16:14','2021-06-15 10:16:14','','7377-pyramid-pl-web-3','','inherit','open','closed','','7377-pyramid-pl-web-3','','','2021-06-15 10:16:14','2021-06-15 10:16:14','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-3.jpg',0,'attachment','image/jpeg',0),(3562,8,'2021-06-15 10:16:16','2021-06-15 10:16:16','','7377-pyramid-pl-web-6','','inherit','open','closed','','7377-pyramid-pl-web-6','','','2021-06-15 10:16:16','2021-06-15 10:16:16','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-6.jpg',0,'attachment','image/jpeg',0),(3563,8,'2021-06-15 10:16:18','2021-06-15 10:16:18','','7377-pyramid-pl-web-7','','inherit','open','closed','','7377-pyramid-pl-web-7','','','2021-06-15 10:16:18','2021-06-15 10:16:18','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-7.jpg',0,'attachment','image/jpeg',0),(3564,8,'2021-06-15 10:16:20','2021-06-15 10:16:20','','7377-pyramid-pl-web-8','','inherit','open','closed','','7377-pyramid-pl-web-8','','','2021-06-15 10:16:20','2021-06-15 10:16:20','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-8.jpg',0,'attachment','image/jpeg',0),(3565,8,'2021-06-15 10:16:22','2021-06-15 10:16:22','','7377-pyramid-pl-web-9','','inherit','open','closed','','7377-pyramid-pl-web-9','','','2021-06-15 10:16:22','2021-06-15 10:16:22','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-9.jpg',0,'attachment','image/jpeg',0),(3566,8,'2021-06-15 10:16:25','2021-06-15 10:16:25','','7377-pyramid-pl-web-10(1)','','inherit','open','closed','','7377-pyramid-pl-web-101','','','2021-06-15 10:16:25','2021-06-15 10:16:25','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-101.jpg',0,'attachment','image/jpeg',0),(3567,8,'2021-06-15 10:16:28','2021-06-15 10:16:28','','7377-pyramid-pl-web-10','','inherit','open','closed','','7377-pyramid-pl-web-10','','','2021-06-15 10:16:28','2021-06-15 10:16:28','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-10.jpg',0,'attachment','image/jpeg',0),(3568,8,'2021-06-15 10:16:30','2021-06-15 10:16:30','','7377-pyramid-pl-web-11','','inherit','open','closed','','7377-pyramid-pl-web-11','','','2021-06-15 10:16:30','2021-06-15 10:16:30','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-11.jpg',0,'attachment','image/jpeg',0),(3569,8,'2021-06-15 10:16:32','2021-06-15 10:16:32','','7377-pyramid-pl-web-13','','inherit','open','closed','','7377-pyramid-pl-web-13','','','2021-06-15 10:16:32','2021-06-15 10:16:32','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-13.jpg',0,'attachment','image/jpeg',0),(3570,8,'2021-06-15 10:16:35','2021-06-15 10:16:35','','7377-pyramid-pl-web-14','','inherit','open','closed','','7377-pyramid-pl-web-14','','','2021-06-15 10:16:35','2021-06-15 10:16:35','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-14.jpg',0,'attachment','image/jpeg',0),(3571,8,'2021-06-15 10:16:38','2021-06-15 10:16:38','','7377-pyramid-pl-web-15','','inherit','open','closed','','7377-pyramid-pl-web-15','','','2021-06-15 10:16:38','2021-06-15 10:16:38','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-15.jpg',0,'attachment','image/jpeg',0),(3572,8,'2021-06-15 10:16:40','2021-06-15 10:16:40','','7377-pyramid-pl-web-16','','inherit','open','closed','','7377-pyramid-pl-web-16','','','2021-06-15 10:16:40','2021-06-15 10:16:40','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-16.jpg',0,'attachment','image/jpeg',0),(3573,8,'2021-06-15 10:16:42','2021-06-15 10:16:42','','7377-pyramid-pl-web-17','','inherit','open','closed','','7377-pyramid-pl-web-17','','','2021-06-15 10:16:42','2021-06-15 10:16:42','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-17.jpg',0,'attachment','image/jpeg',0),(3574,8,'2021-06-15 10:16:44','2021-06-15 10:16:44','','7377-pyramid-pl-web-18','','inherit','open','closed','','7377-pyramid-pl-web-18','','','2021-06-15 10:16:44','2021-06-15 10:16:44','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-18.jpg',0,'attachment','image/jpeg',0),(3575,8,'2021-06-15 10:16:47','2021-06-15 10:16:47','','7377-pyramid-pl-web-19','','inherit','open','closed','','7377-pyramid-pl-web-19','','','2021-06-15 10:16:47','2021-06-15 10:16:47','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-19.jpg',0,'attachment','image/jpeg',0),(3576,8,'2021-06-15 10:16:49','2021-06-15 10:16:49','','7377-pyramid-pl-web-20','','inherit','open','closed','','7377-pyramid-pl-web-20','','','2021-06-15 10:16:49','2021-06-15 10:16:49','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-20.jpg',0,'attachment','image/jpeg',0),(3577,8,'2021-06-15 10:16:51','2021-06-15 10:16:51','','7377-pyramid-pl-web-21','','inherit','open','closed','','7377-pyramid-pl-web-21','','','2021-06-15 10:16:51','2021-06-15 10:16:51','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-21.jpg',0,'attachment','image/jpeg',0),(3578,8,'2021-06-15 10:16:53','2021-06-15 10:16:53','','7377-pyramid-pl-web-22','','inherit','open','closed','','7377-pyramid-pl-web-22','','','2021-06-15 10:16:53','2021-06-15 10:16:53','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-22.jpg',0,'attachment','image/jpeg',0),(3579,8,'2021-06-15 10:16:55','2021-06-15 10:16:55','','7377-pyramid-pl-web-23','','inherit','open','closed','','7377-pyramid-pl-web-23','','','2021-06-15 10:16:55','2021-06-15 10:16:55','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-23.jpg',0,'attachment','image/jpeg',0),(3580,8,'2021-06-15 10:16:57','2021-06-15 10:16:57','','7377-pyramid-pl-web-24','','inherit','open','closed','','7377-pyramid-pl-web-24','','','2021-06-15 10:16:57','2021-06-15 10:16:57','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-24.jpg',0,'attachment','image/jpeg',0),(3581,8,'2021-06-15 10:16:59','2021-06-15 10:16:59','','7377-pyramid-pl-web-25','','inherit','open','closed','','7377-pyramid-pl-web-25','','','2021-06-15 10:16:59','2021-06-15 10:16:59','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-25.jpg',0,'attachment','image/jpeg',0),(3582,8,'2021-06-15 10:17:02','2021-06-15 10:17:02','','7377-pyramid-pl-web-26','','inherit','open','closed','','7377-pyramid-pl-web-26','','','2021-06-15 10:17:02','2021-06-15 10:17:02','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-26.jpg',0,'attachment','image/jpeg',0),(3583,8,'2021-06-15 10:17:04','2021-06-15 10:17:04','','7377-pyramid-pl-web-27','','inherit','open','closed','','7377-pyramid-pl-web-27','','','2021-06-15 10:17:04','2021-06-15 10:17:04','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-27.jpg',0,'attachment','image/jpeg',0),(3584,8,'2021-06-15 10:17:06','2021-06-15 10:17:06','','7377-pyramid-pl-web-28','','inherit','open','closed','','7377-pyramid-pl-web-28','','','2021-06-15 10:17:06','2021-06-15 10:17:06','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-28.jpg',0,'attachment','image/jpeg',0),(3585,8,'2021-06-15 10:17:08','2021-06-15 10:17:08','','7377-pyramid-pl-web-29','','inherit','open','closed','','7377-pyramid-pl-web-29','','','2021-06-15 10:17:08','2021-06-15 10:17:08','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-29.jpg',0,'attachment','image/jpeg',0),(3586,8,'2021-06-15 10:17:10','2021-06-15 10:17:10','','7377-pyramid-pl-web-30','','inherit','open','closed','','7377-pyramid-pl-web-30','','','2021-06-15 10:17:10','2021-06-15 10:17:10','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-30.jpg',0,'attachment','image/jpeg',0),(3587,8,'2021-06-15 10:17:12','2021-06-15 10:17:12','','7377-pyramid-pl-web-31','','inherit','open','closed','','7377-pyramid-pl-web-31','','','2021-06-15 10:17:12','2021-06-15 10:17:12','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-31.jpg',0,'attachment','image/jpeg',0),(3588,8,'2021-06-15 10:17:15','2021-06-15 10:17:15','','7377-pyramid-pl-web-32','','inherit','open','closed','','7377-pyramid-pl-web-32','','','2021-06-15 10:17:15','2021-06-15 10:17:15','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-32.jpg',0,'attachment','image/jpeg',0),(3589,8,'2021-06-15 10:17:17','2021-06-15 10:17:17','','7377-pyramid-pl-web-33','','inherit','open','closed','','7377-pyramid-pl-web-33','','','2021-06-15 10:17:17','2021-06-15 10:17:17','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-33.jpg',0,'attachment','image/jpeg',0),(3590,8,'2021-06-15 10:17:19','2021-06-15 10:17:19','','7377-pyramid-pl-web-34','','inherit','open','closed','','7377-pyramid-pl-web-34','','','2021-06-15 10:17:19','2021-06-15 10:17:19','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-34.jpg',0,'attachment','image/jpeg',0),(3591,8,'2021-06-15 10:17:21','2021-06-15 10:17:21','','7377-pyramid-pl-web-35','','inherit','open','closed','','7377-pyramid-pl-web-35','','','2021-06-15 10:17:21','2021-06-15 10:17:21','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-35.jpg',0,'attachment','image/jpeg',0),(3592,8,'2021-06-15 10:17:23','2021-06-15 10:17:23','','7377-pyramid-pl-web-36','','inherit','open','closed','','7377-pyramid-pl-web-36','','','2021-06-15 10:17:23','2021-06-15 10:17:23','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-36.jpg',0,'attachment','image/jpeg',0),(3593,8,'2021-06-15 10:17:26','2021-06-15 10:17:26','','7377-pyramid-pl-web-37','','inherit','open','closed','','7377-pyramid-pl-web-37','','','2021-06-15 10:17:26','2021-06-15 10:17:26','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-37.jpg',0,'attachment','image/jpeg',0),(3594,8,'2021-06-15 10:17:28','2021-06-15 10:17:28','','7377-pyramid-pl-web-38','','inherit','open','closed','','7377-pyramid-pl-web-38','','','2021-06-15 10:17:28','2021-06-15 10:17:28','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-38.jpg',0,'attachment','image/jpeg',0),(3595,8,'2021-06-15 10:17:30','2021-06-15 10:17:30','','7377-pyramid-pl-web-48','','inherit','open','closed','','7377-pyramid-pl-web-48','','','2021-06-15 10:17:30','2021-06-15 10:17:30','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-48.jpg',0,'attachment','image/jpeg',0),(3596,8,'2021-06-15 10:17:32','2021-06-15 10:17:32','','7377-pyramid-pl-web-49','','inherit','open','closed','','7377-pyramid-pl-web-49','','','2021-06-15 10:17:32','2021-06-15 10:17:32','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-49.jpg',0,'attachment','image/jpeg',0),(3597,8,'2021-06-15 10:17:34','2021-06-15 10:17:34','','7377-pyramid-pl-web-50','','inherit','open','closed','','7377-pyramid-pl-web-50','','','2021-06-15 10:17:34','2021-06-15 10:17:34','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-pl-web-50.jpg',0,'attachment','image/jpeg',0),(3598,8,'2021-06-15 10:17:36','2021-06-15 10:17:36','','7377-pyramid-p-web-37','','inherit','open','closed','','7377-pyramid-p-web-37','','','2021-06-15 10:17:36','2021-06-15 10:17:36','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-p-web-37.jpg',0,'attachment','image/jpeg',0),(3599,8,'2021-06-15 10:17:38','2021-06-15 10:17:38','','7377-pyramid-p-web-38','','inherit','open','closed','','7377-pyramid-p-web-38','','','2021-06-15 10:17:38','2021-06-15 10:17:38','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-p-web-38.jpg',0,'attachment','image/jpeg',0),(3600,8,'2021-06-15 10:17:41','2021-06-15 10:17:41','','7377-pyramid-p-web-39','','inherit','open','closed','','7377-pyramid-p-web-39','','','2021-06-15 10:17:41','2021-06-15 10:17:41','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-p-web-39.jpg',0,'attachment','image/jpeg',0),(3601,8,'2021-06-15 10:17:43','2021-06-15 10:17:43','','7377-pyramid-p-web-40','','inherit','open','closed','','7377-pyramid-p-web-40','','','2021-06-15 10:17:43','2021-06-15 10:17:43','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-p-web-40.jpg',0,'attachment','image/jpeg',0),(3602,8,'2021-06-15 10:17:45','2021-06-15 10:17:45','','7377-pyramid-p-web-41','','inherit','open','closed','','7377-pyramid-p-web-41','','','2021-06-15 10:17:45','2021-06-15 10:17:45','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-p-web-41.jpg',0,'attachment','image/jpeg',0),(3603,8,'2021-06-15 10:17:47','2021-06-15 10:17:47','','7377-pyramid-p-web-42','','inherit','open','closed','','7377-pyramid-p-web-42','','','2021-06-15 10:17:47','2021-06-15 10:17:47','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-p-web-42.jpg',0,'attachment','image/jpeg',0),(3604,8,'2021-06-15 10:17:49','2021-06-15 10:17:49','','7377-pyramid-p-web-45','','inherit','open','closed','','7377-pyramid-p-web-45','','','2021-06-15 10:17:49','2021-06-15 10:17:49','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-p-web-45.jpg',0,'attachment','image/jpeg',0),(3605,8,'2021-06-15 10:17:52','2021-06-15 10:17:52','','7377-pyramid-p-web-46','','inherit','open','closed','','7377-pyramid-p-web-46','','','2021-06-15 10:17:52','2021-06-15 10:17:52','',3340,'https://om7717.dev34.info/wp-content/uploads/2021/06/7377-pyramid-p-web-46.jpg',0,'attachment','image/jpeg',0),(3607,8,'2021-06-15 11:08:48','2021-06-15 11:08:48','','2','','inherit','open','closed','','2-6','','','2021-06-15 11:08:48','2021-06-15 11:08:48','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/2-2.jpg',0,'attachment','image/jpeg',0),(3608,8,'2021-06-15 11:08:49','2021-06-15 11:08:49','','3','','inherit','open','closed','','3-6','','','2021-06-15 11:08:49','2021-06-15 11:08:49','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/3-2.jpg',0,'attachment','image/jpeg',0),(3609,8,'2021-06-15 11:08:50','2021-06-15 11:08:50','','4','','inherit','open','closed','','4-6','','','2021-06-15 11:08:50','2021-06-15 11:08:50','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/4-2.jpg',0,'attachment','image/jpeg',0),(3610,8,'2021-06-15 11:08:52','2021-06-15 11:08:52','','5','','inherit','open','closed','','5-6','','','2021-06-15 11:08:52','2021-06-15 11:08:52','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/5-2.jpg',0,'attachment','image/jpeg',0),(3611,8,'2021-06-15 11:08:54','2021-06-15 11:08:54','','6','','inherit','open','closed','','6-5','','','2021-06-15 11:08:54','2021-06-15 11:08:54','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/6-2.jpg',0,'attachment','image/jpeg',0),(3612,8,'2021-06-15 11:08:57','2021-06-15 11:08:57','','7','','inherit','open','closed','','7-5','','','2021-06-15 11:08:57','2021-06-15 11:08:57','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/7-2.jpg',0,'attachment','image/jpeg',0),(3613,8,'2021-06-15 11:08:59','2021-06-15 11:08:59','','8','','inherit','open','closed','','8-6','','','2021-06-15 11:08:59','2021-06-15 11:08:59','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/8-2.jpg',0,'attachment','image/jpeg',0),(3614,8,'2021-06-15 11:09:01','2021-06-15 11:09:01','','9','','inherit','open','closed','','9-6','','','2021-06-15 11:09:01','2021-06-15 11:09:01','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/9-2.jpg',0,'attachment','image/jpeg',0),(3615,8,'2021-06-15 11:09:03','2021-06-15 11:09:03','','10','','inherit','open','closed','','10-6','','','2021-06-15 11:09:03','2021-06-15 11:09:03','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/10-2.jpg',0,'attachment','image/jpeg',0),(3616,8,'2021-06-15 11:09:05','2021-06-15 11:09:05','','11','','inherit','open','closed','','11-6','','','2021-06-15 11:09:05','2021-06-15 11:09:05','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/11-2.jpg',0,'attachment','image/jpeg',0),(3617,8,'2021-06-15 11:09:06','2021-06-15 11:09:06','','12','','inherit','open','closed','','12-6','','','2021-06-15 11:09:06','2021-06-15 11:09:06','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/12-2.jpg',0,'attachment','image/jpeg',0),(3618,8,'2021-06-15 11:09:08','2021-06-15 11:09:08','','13','','inherit','open','closed','','13-5','','','2021-06-15 11:09:08','2021-06-15 11:09:08','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/13-2.jpg',0,'attachment','image/jpeg',0),(3619,8,'2021-06-15 11:09:11','2021-06-15 11:09:11','','14','','inherit','open','closed','','14-5','','','2021-06-15 11:09:11','2021-06-15 11:09:11','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/14-2.jpg',0,'attachment','image/jpeg',0),(3620,8,'2021-06-15 11:09:13','2021-06-15 11:09:13','','15','','inherit','open','closed','','15-5','','','2021-06-15 11:09:13','2021-06-15 11:09:13','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/15-2.jpg',0,'attachment','image/jpeg',0),(3621,8,'2021-06-15 11:09:15','2021-06-15 11:09:15','','16','','inherit','open','closed','','16-5','','','2021-06-15 11:09:15','2021-06-15 11:09:15','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/16-2.jpg',0,'attachment','image/jpeg',0),(3622,8,'2021-06-15 11:09:18','2021-06-15 11:09:18','','17','','inherit','open','closed','','17-5','','','2021-06-15 11:09:18','2021-06-15 11:09:18','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/17-2.jpg',0,'attachment','image/jpeg',0),(3623,8,'2021-06-15 11:09:25','2021-06-15 11:09:25','','18','','inherit','open','closed','','18-6','','','2021-06-15 11:09:25','2021-06-15 11:09:25','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/18-2.jpg',0,'attachment','image/jpeg',0),(3624,8,'2021-06-15 11:09:27','2021-06-15 11:09:27','','19','','inherit','open','closed','','19-6','','','2021-06-15 11:09:27','2021-06-15 11:09:27','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/19-2.jpg',0,'attachment','image/jpeg',0),(3625,8,'2021-06-15 11:09:30','2021-06-15 11:09:30','','20','','inherit','open','closed','','20-5','','','2021-06-15 11:09:30','2021-06-15 11:09:30','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/20-2.jpg',0,'attachment','image/jpeg',0),(3626,8,'2021-06-15 11:09:32','2021-06-15 11:09:32','','21','','inherit','open','closed','','21-5','','','2021-06-15 11:09:32','2021-06-15 11:09:32','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/21-2.jpg',0,'attachment','image/jpeg',0),(3627,8,'2021-06-15 11:09:34','2021-06-15 11:09:34','','22','','inherit','open','closed','','22-6','','','2021-06-15 11:09:34','2021-06-15 11:09:34','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/22-2.jpg',0,'attachment','image/jpeg',0),(3628,8,'2021-06-15 11:09:36','2021-06-15 11:09:36','','23','','inherit','open','closed','','23-6','','','2021-06-15 11:09:36','2021-06-15 11:09:36','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/23-2.jpg',0,'attachment','image/jpeg',0),(3629,8,'2021-06-15 11:09:37','2021-06-15 11:09:37','','24','','inherit','open','closed','','24-6','','','2021-06-15 11:09:37','2021-06-15 11:09:37','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/24-2.jpg',0,'attachment','image/jpeg',0),(3630,8,'2021-06-15 11:09:39','2021-06-15 11:09:39','','25','','inherit','open','closed','','25-6','','','2021-06-15 11:09:39','2021-06-15 11:09:39','',3337,'https://om7717.dev34.info/wp-content/uploads/2021/06/25-2.jpg',0,'attachment','image/jpeg',0),(3631,8,'2021-06-15 11:12:51','2021-06-15 11:12:51','','5','','inherit','open','closed','','5-7','','','2021-06-15 11:12:51','2021-06-15 11:12:51','',3343,'https://om7717.dev34.info/wp-content/uploads/2021/06/5-3.jpg',0,'attachment','image/jpeg',0),(3632,8,'2021-06-15 11:12:55','2021-06-15 11:12:55','','8','','inherit','open','closed','','8-7','','','2021-06-15 11:12:55','2021-06-15 11:12:55','',3343,'https://om7717.dev34.info/wp-content/uploads/2021/06/8-3.jpg',0,'attachment','image/jpeg',0),(3633,8,'2021-06-15 11:12:58','2021-06-15 11:12:58','','19','','inherit','open','closed','','19-7','','','2021-06-15 11:12:58','2021-06-15 11:12:58','',3343,'https://om7717.dev34.info/wp-content/uploads/2021/06/19-3.jpg',0,'attachment','image/jpeg',0),(3634,8,'2021-06-15 11:13:12','2021-06-15 11:13:12','','0001','','inherit','open','closed','','0001-7','','','2021-06-15 11:13:12','2021-06-15 11:13:12','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0001-2.jpg',0,'attachment','image/jpeg',0),(3635,8,'2021-06-15 11:13:29','2021-06-15 11:13:29','','0002','','inherit','open','closed','','0002-7','','','2021-06-15 11:13:29','2021-06-15 11:13:29','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0002-2.jpg',0,'attachment','image/jpeg',0),(3636,8,'2021-06-15 11:13:30','2021-06-15 11:13:30','','1','','inherit','open','closed','','1-7','','','2021-06-15 11:13:30','2021-06-15 11:13:30','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/1-3.jpg',0,'attachment','image/jpeg',0),(3637,8,'2021-06-15 11:13:32','2021-06-15 11:13:32','','2','','inherit','open','closed','','2-7','','','2021-06-15 11:13:32','2021-06-15 11:13:32','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/2-3.jpg',0,'attachment','image/jpeg',0),(3638,8,'2021-06-15 11:13:35','2021-06-15 11:13:35','','3','','inherit','open','closed','','3-7','','','2021-06-15 11:13:35','2021-06-15 11:13:35','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/3-3.jpg',0,'attachment','image/jpeg',0),(3639,8,'2021-06-15 11:13:40','2021-06-15 11:13:40','','4','','inherit','open','closed','','4-7','','','2021-06-15 11:13:40','2021-06-15 11:13:40','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/4-3.jpg',0,'attachment','image/jpeg',0),(3640,8,'2021-06-15 11:13:43','2021-06-15 11:13:43','','5','','inherit','open','closed','','5-8','','','2021-06-15 11:13:43','2021-06-15 11:13:43','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/5-4.jpg',0,'attachment','image/jpeg',0),(3641,8,'2021-06-15 11:13:46','2021-06-15 11:13:46','','6','','inherit','open','closed','','6-6','','','2021-06-15 11:13:46','2021-06-15 11:13:46','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/6-3.jpg',0,'attachment','image/jpeg',0),(3642,8,'2021-06-15 11:13:47','2021-06-15 11:13:47','','0003','','inherit','open','closed','','0003-6','','','2021-06-15 11:13:47','2021-06-15 11:13:47','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0003-2.jpg',0,'attachment','image/jpeg',0),(3643,8,'2021-06-15 11:13:50','2021-06-15 11:13:50','','7','','inherit','open','closed','','7-6','','','2021-06-15 11:13:50','2021-06-15 11:13:50','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/7-3.jpg',0,'attachment','image/jpeg',0),(3644,8,'2021-06-15 11:13:53','2021-06-15 11:13:53','','8','','inherit','open','closed','','8-8','','','2021-06-15 11:13:53','2021-06-15 11:13:53','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/8-4.jpg',0,'attachment','image/jpeg',0),(3645,8,'2021-06-15 11:13:56','2021-06-15 11:13:56','','9','','inherit','open','closed','','9-7','','','2021-06-15 11:13:56','2021-06-15 11:13:56','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/9-3.jpg',0,'attachment','image/jpeg',0),(3646,8,'2021-06-15 11:13:59','2021-06-15 11:13:59','','10','','inherit','open','closed','','10-7','','','2021-06-15 11:13:59','2021-06-15 11:13:59','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/10-3.jpg',0,'attachment','image/jpeg',0),(3647,8,'2021-06-15 11:14:02','2021-06-15 11:14:02','','11','','inherit','open','closed','','11-7','','','2021-06-15 11:14:02','2021-06-15 11:14:02','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/11-3.jpg',0,'attachment','image/jpeg',0),(3648,8,'2021-06-15 11:14:04','2021-06-15 11:14:04','','0004','','inherit','open','closed','','0004-6','','','2021-06-15 11:14:04','2021-06-15 11:14:04','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0004-2.jpg',0,'attachment','image/jpeg',0),(3649,8,'2021-06-15 11:14:06','2021-06-15 11:14:06','','12','','inherit','open','closed','','12-7','','','2021-06-15 11:14:06','2021-06-15 11:14:06','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/12-3.jpg',0,'attachment','image/jpeg',0),(3650,8,'2021-06-15 11:14:08','2021-06-15 11:14:08','','13','','inherit','open','closed','','13-6','','','2021-06-15 11:14:08','2021-06-15 11:14:08','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/13-3.jpg',0,'attachment','image/jpeg',0),(3651,8,'2021-06-15 11:14:11','2021-06-15 11:14:11','','14','','inherit','open','closed','','14-6','','','2021-06-15 11:14:11','2021-06-15 11:14:11','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/14-3.jpg',0,'attachment','image/jpeg',0),(3652,8,'2021-06-15 11:14:14','2021-06-15 11:14:14','','15','','inherit','open','closed','','15-6','','','2021-06-15 11:14:14','2021-06-15 11:14:14','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/15-3.jpg',0,'attachment','image/jpeg',0),(3653,8,'2021-06-15 11:14:17','2021-06-15 11:14:17','','16','','inherit','open','closed','','16-6','','','2021-06-15 11:14:17','2021-06-15 11:14:17','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/16-3.jpg',0,'attachment','image/jpeg',0),(3654,8,'2021-06-15 11:14:19','2021-06-15 11:14:19','','17','','inherit','open','closed','','17-6','','','2021-06-15 11:14:19','2021-06-15 11:14:19','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/17-3.jpg',0,'attachment','image/jpeg',0),(3655,8,'2021-06-15 11:14:21','2021-06-15 11:14:21','','0005','','inherit','open','closed','','0005-6','','','2021-06-15 11:14:21','2021-06-15 11:14:21','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0005-2.jpg',0,'attachment','image/jpeg',0),(3656,8,'2021-06-15 11:14:22','2021-06-15 11:14:22','','18','','inherit','open','closed','','18-7','','','2021-06-15 11:14:22','2021-06-15 11:14:22','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/18-3.jpg',0,'attachment','image/jpeg',0),(3657,8,'2021-06-15 11:14:24','2021-06-15 11:14:24','','19','','inherit','open','closed','','19-8','','','2021-06-15 11:14:24','2021-06-15 11:14:24','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/19-4.jpg',0,'attachment','image/jpeg',0),(3658,8,'2021-06-15 11:14:28','2021-06-15 11:14:28','','20','','inherit','open','closed','','20-6','','','2021-06-15 11:14:28','2021-06-15 11:14:28','',3341,'https://om7717.dev34.info/wp-content/uploads/2021/06/20-3.jpg',0,'attachment','image/jpeg',0),(3659,8,'2021-06-15 11:14:37','2021-06-15 11:14:37','','0006','','inherit','open','closed','','0006-6','','','2021-06-15 11:14:37','2021-06-15 11:14:37','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0006-2.jpg',0,'attachment','image/jpeg',0),(3660,8,'2021-06-15 11:14:53','2021-06-15 11:14:53','','0007','','inherit','open','closed','','0007-6','','','2021-06-15 11:14:53','2021-06-15 11:14:53','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0007-2.jpg',0,'attachment','image/jpeg',0),(3661,8,'2021-06-15 11:15:10','2021-06-15 11:15:10','','0008','','inherit','open','closed','','0008-6','','','2021-06-15 11:15:10','2021-06-15 11:15:10','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0008-2.jpg',0,'attachment','image/jpeg',0),(3662,8,'2021-06-15 11:15:26','2021-06-15 11:15:26','','0009','','inherit','open','closed','','0009-6','','','2021-06-15 11:15:26','2021-06-15 11:15:26','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0009-2.jpg',0,'attachment','image/jpeg',0),(3663,8,'2021-06-15 11:15:43','2021-06-15 11:15:43','','0010','','inherit','open','closed','','0010-6','','','2021-06-15 11:15:43','2021-06-15 11:15:43','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0010-2.jpg',0,'attachment','image/jpeg',0),(3664,8,'2021-06-15 11:16:00','2021-06-15 11:16:00','','0011','','inherit','open','closed','','0011-6','','','2021-06-15 11:16:00','2021-06-15 11:16:00','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0011-2.jpg',0,'attachment','image/jpeg',0),(3665,8,'2021-06-15 11:16:19','2021-06-15 11:16:19','','0012','','inherit','open','closed','','0012-7','','','2021-06-15 11:16:19','2021-06-15 11:16:19','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0012-2.jpg',0,'attachment','image/jpeg',0),(3666,8,'2021-06-15 11:16:35','2021-06-15 11:16:35','','0013','','inherit','open','closed','','0013-6','','','2021-06-15 11:16:35','2021-06-15 11:16:35','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0013-2.jpg',0,'attachment','image/jpeg',0),(3667,8,'2021-06-15 11:16:50','2021-06-15 11:16:50','','0014','','inherit','open','closed','','0014-6','','','2021-06-15 11:16:50','2021-06-15 11:16:50','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0014-2.jpg',0,'attachment','image/jpeg',0),(3668,8,'2021-06-15 11:17:05','2021-06-15 11:17:05','','0015','','inherit','open','closed','','0015-7','','','2021-06-15 11:17:05','2021-06-15 11:17:05','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0015-2.jpg',0,'attachment','image/jpeg',0),(3669,8,'2021-06-15 11:17:29','2021-06-15 11:17:29','','0016','','inherit','open','closed','','0016-6','','','2021-06-15 11:17:29','2021-06-15 11:17:29','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0016-2.jpg',0,'attachment','image/jpeg',0),(3670,8,'2021-06-15 11:17:46','2021-06-15 11:17:46','','0017','','inherit','open','closed','','0017-6','','','2021-06-15 11:17:46','2021-06-15 11:17:46','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0017-2.jpg',0,'attachment','image/jpeg',0),(3671,8,'2021-06-15 11:18:02','2021-06-15 11:18:02','','0018','','inherit','open','closed','','0018-6','','','2021-06-15 11:18:02','2021-06-15 11:18:02','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0018-2.jpg',0,'attachment','image/jpeg',0),(3672,8,'2021-06-15 11:18:17','2021-06-15 11:18:17','','0019','','inherit','open','closed','','0019-6','','','2021-06-15 11:18:17','2021-06-15 11:18:17','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0019-2.jpg',0,'attachment','image/jpeg',0),(3673,8,'2021-06-15 11:18:32','2021-06-15 11:18:32','','0020','','inherit','open','closed','','0020-6','','','2021-06-15 11:18:32','2021-06-15 11:18:32','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0020-2.jpg',0,'attachment','image/jpeg',0),(3674,8,'2021-06-15 11:18:47','2021-06-15 11:18:47','','0021','','inherit','open','closed','','0021-6','','','2021-06-15 11:18:47','2021-06-15 11:18:47','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0021-2.jpg',0,'attachment','image/jpeg',0),(3675,8,'2021-06-15 11:19:05','2021-06-15 11:19:05','','0022','','inherit','open','closed','','0022-6','','','2021-06-15 11:19:05','2021-06-15 11:19:05','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0022-2.jpg',0,'attachment','image/jpeg',0),(3676,8,'2021-06-15 11:19:21','2021-06-15 11:19:21','','0023','','inherit','open','closed','','0023-6','','','2021-06-15 11:19:21','2021-06-15 11:19:21','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0023-2.jpg',0,'attachment','image/jpeg',0),(3677,8,'2021-06-15 11:19:36','2021-06-15 11:19:36','','0024','','inherit','open','closed','','0024-7','','','2021-06-15 11:19:36','2021-06-15 11:19:36','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0024-2.jpg',0,'attachment','image/jpeg',0),(3678,8,'2021-06-15 11:19:55','2021-06-15 11:19:55','','0025','','inherit','open','closed','','0025-7','','','2021-06-15 11:19:55','2021-06-15 11:19:55','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0025-2.jpg',0,'attachment','image/jpeg',0),(3679,8,'2021-06-15 11:20:12','2021-06-15 11:20:12','','0026','','inherit','open','closed','','0026-7','','','2021-06-15 11:20:12','2021-06-15 11:20:12','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0026-2.jpg',0,'attachment','image/jpeg',0),(3680,8,'2021-06-15 11:20:29','2021-06-15 11:20:29','','0027','','inherit','open','closed','','0027-7','','','2021-06-15 11:20:29','2021-06-15 11:20:29','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0027-2.jpg',0,'attachment','image/jpeg',0),(3681,8,'2021-06-15 11:20:45','2021-06-15 11:20:45','','0028','','inherit','open','closed','','0028-7','','','2021-06-15 11:20:45','2021-06-15 11:20:45','',3342,'https://om7717.dev34.info/wp-content/uploads/2021/06/0028-2.jpg',0,'attachment','image/jpeg',0),(3682,8,'2021-06-16 16:33:08','2021-06-16 16:33:08','<div class=\"content-column one_half\"><div style=\"padding:\"10;\"><label> \r\n    [text Name placeholder \"Name\"] </label></div></div>\r\n \r\n<div class=\"content-column one_half last_column\"><label> \r\n     [email email placeholder \"Email\"] </label></div><div class=\"clear_column\"></div>\r\n\r\n<div class=\"content-column one_half\"><div style=\"padding:\"10;\"><label>\r\n    [tel Phone placeholder \"Phone Number\"] </label></div></div>\r\n \r\n<div class=\"content-column one_half last_column\"><label> \r\n    [number Guest min:1 max:20 placeholder \"Guest\"] </label></div><div class=\"clear_column\"></div>\r\n \r\n<div class=\"content-column one_half\"><div style=\"padding:\"10;\"><label> Check-in date:\r\n    [date Datein min:2021-06-18 max:2022-06-18 placeholder \"dd/mm/yyyy\"] </label></div></div>\r\n \r\n<div class=\"content-column one_half last_column\"><label> Check-out date: [date Date min:2021-06-18 max:2022-06-18 placeholder \"dd/mm/yyyy\"]\r\n     </label></div><div class=\"clear_column\"></div>\r\n\r\n<label> Please select any additional luxury service you are interested in? \r\n    [select Service include_blank \"Exotic Car Rental\" \"Private Airfare\" \"Inhouse Chef\" \"Nightlife\" \"Other Activities\"] </label>\r\n \r\n[submit \"Check Availability\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@om7717.dev34.info>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@om7717.dev34.info>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Untitled','','publish','closed','closed','','untitled','','','2021-06-16 17:23:21','2021-06-16 17:23:21','',0,'https://om7717.dev34.info/?post_type=wpcf7_contact_form&#038;p=3682',0,'wpcf7_contact_form','',0),(3683,0,'2021-06-17 09:40:25','2021-06-17 09:40:25','','HERCULES','','publish','closed','closed','','hercules','','','2021-06-23 07:49:32','2021-06-23 07:49:32','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3683',0,'listing','',0),(3684,8,'2021-06-17 10:30:04','2021-06-17 10:30:04','','1H','','inherit','open','closed','','1h','','','2021-06-17 10:30:04','2021-06-17 10:30:04','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/1H.jpg',0,'attachment','image/jpeg',0),(3685,8,'2021-06-17 10:30:05','2021-06-17 10:30:05','','2','','inherit','open','closed','','2-8','','','2021-06-17 10:30:05','2021-06-17 10:30:05','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/2-4.jpg',0,'attachment','image/jpeg',0),(3686,8,'2021-06-17 10:30:07','2021-06-17 10:30:07','','2H','','inherit','open','closed','','2h','','','2021-06-17 10:30:07','2021-06-17 10:30:07','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/2H.jpg',0,'attachment','image/jpeg',0),(3687,8,'2021-06-17 10:30:08','2021-06-17 10:30:08','','3H','','inherit','open','closed','','3h','','','2021-06-17 10:30:08','2021-06-17 10:30:08','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/3H.jpg',0,'attachment','image/jpeg',0),(3688,8,'2021-06-17 10:30:09','2021-06-17 10:30:09','','4H','','inherit','open','closed','','4h','','','2021-06-17 10:30:09','2021-06-17 10:30:09','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/4H.jpg',0,'attachment','image/jpeg',0),(3689,8,'2021-06-17 10:30:10','2021-06-17 10:30:10','','5H','','inherit','open','closed','','5h','','','2021-06-17 10:30:10','2021-06-17 10:30:10','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/5H.jpg',0,'attachment','image/jpeg',0),(3690,8,'2021-06-17 10:30:11','2021-06-17 10:30:11','','6H','','inherit','open','closed','','6h','','','2021-06-17 10:30:11','2021-06-17 10:30:11','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/6H.jpg',0,'attachment','image/jpeg',0),(3691,8,'2021-06-17 10:30:13','2021-06-17 10:30:13','','7H','','inherit','open','closed','','7h','','','2021-06-17 10:30:13','2021-06-17 10:30:13','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/7H.jpg',0,'attachment','image/jpeg',0),(3692,8,'2021-06-17 10:30:14','2021-06-17 10:30:14','','8H','','inherit','open','closed','','8h','','','2021-06-17 10:30:14','2021-06-17 10:30:14','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/8H.jpg',0,'attachment','image/jpeg',0),(3693,8,'2021-06-17 10:30:15','2021-06-17 10:30:15','','9H','','inherit','open','closed','','9h','','','2021-06-17 10:30:15','2021-06-17 10:30:15','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/9H.jpg',0,'attachment','image/jpeg',0),(3694,8,'2021-06-17 10:30:16','2021-06-17 10:30:16','','10H','','inherit','open','closed','','10h','','','2021-06-17 10:30:16','2021-06-17 10:30:16','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/10H.jpg',0,'attachment','image/jpeg',0),(3695,8,'2021-06-17 10:30:17','2021-06-17 10:30:17','','11H','','inherit','open','closed','','11h','','','2021-06-17 10:30:17','2021-06-17 10:30:17','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/11H.jpg',0,'attachment','image/jpeg',0),(3696,8,'2021-06-17 10:30:18','2021-06-17 10:30:18','','12H','','inherit','open','closed','','12h','','','2021-06-17 10:30:18','2021-06-17 10:30:18','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/12H.jpg',0,'attachment','image/jpeg',0),(3697,8,'2021-06-17 10:30:19','2021-06-17 10:30:19','','13H','','inherit','open','closed','','13h','','','2021-06-17 10:30:19','2021-06-17 10:30:19','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/13H.jpg',0,'attachment','image/jpeg',0),(3698,8,'2021-06-17 10:30:20','2021-06-17 10:30:20','','14H','','inherit','open','closed','','14h','','','2021-06-17 10:30:20','2021-06-17 10:30:20','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/14H.jpg',0,'attachment','image/jpeg',0),(3699,8,'2021-06-17 10:30:21','2021-06-17 10:30:21','','15H','','inherit','open','closed','','15h','','','2021-06-17 10:30:21','2021-06-17 10:30:21','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/15H.jpg',0,'attachment','image/jpeg',0),(3700,8,'2021-06-17 10:30:24','2021-06-17 10:30:24','','16H','','inherit','open','closed','','16h','','','2021-06-17 10:30:24','2021-06-17 10:30:24','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/16H.jpg',0,'attachment','image/jpeg',0),(3701,8,'2021-06-17 10:30:25','2021-06-17 10:30:25','','17H','','inherit','open','closed','','17h','','','2021-06-17 10:30:25','2021-06-17 10:30:25','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/17H.jpg',0,'attachment','image/jpeg',0),(3702,8,'2021-06-17 10:30:26','2021-06-17 10:30:26','','18H','','inherit','open','closed','','18h','','','2021-06-17 10:30:26','2021-06-17 10:30:26','',3683,'https://om7717.dev34.info/wp-content/uploads/2021/06/18H.jpg',0,'attachment','image/jpeg',0),(3703,0,'2021-06-17 12:31:39','2021-06-17 12:31:39','','BH MANSION','','publish','closed','closed','','bh-mansion','','','2021-06-23 07:46:56','2021-06-23 07:46:56','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3703',0,'listing','',0),(3704,8,'2021-06-17 13:18:32','2021-06-17 13:18:32','','01','','inherit','open','closed','','01','','','2021-06-17 13:18:32','2021-06-17 13:18:32','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/01.jpg',0,'attachment','image/jpeg',0),(3705,8,'2021-06-17 13:18:36','2021-06-17 13:18:36','','002','','inherit','open','closed','','002','','','2021-06-17 13:18:36','2021-06-17 13:18:36','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/002.jpg',0,'attachment','image/jpeg',0),(3706,8,'2021-06-17 13:18:39','2021-06-17 13:18:39','','02','','inherit','open','closed','','02','','','2021-06-17 13:18:39','2021-06-17 13:18:39','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/02.jpg',0,'attachment','image/jpeg',0),(3707,8,'2021-06-17 13:18:42','2021-06-17 13:18:42','','03','','inherit','open','closed','','03','','','2021-06-17 13:18:42','2021-06-17 13:18:42','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/03.jpg',0,'attachment','image/jpeg',0),(3708,8,'2021-06-17 13:18:45','2021-06-17 13:18:45','','04','','inherit','open','closed','','04','','','2021-06-17 13:18:45','2021-06-17 13:18:45','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/04.jpg',0,'attachment','image/jpeg',0),(3709,8,'2021-06-17 13:18:48','2021-06-17 13:18:48','','06','','inherit','open','closed','','06','','','2021-06-17 13:18:48','2021-06-17 13:18:48','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/06.jpg',0,'attachment','image/jpeg',0),(3710,8,'2021-06-17 13:18:51','2021-06-17 13:18:51','','07','','inherit','open','closed','','07','','','2021-06-17 13:18:51','2021-06-17 13:18:51','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/07.jpg',0,'attachment','image/jpeg',0),(3711,8,'2021-06-17 13:18:54','2021-06-17 13:18:54','','08','','inherit','open','closed','','08','','','2021-06-17 13:18:54','2021-06-17 13:18:54','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/08.jpg',0,'attachment','image/jpeg',0),(3712,8,'2021-06-17 13:18:57','2021-06-17 13:18:57','','09','','inherit','open','closed','','09','','','2021-06-17 13:18:57','2021-06-17 13:18:57','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/09.jpg',0,'attachment','image/jpeg',0),(3713,8,'2021-06-17 13:18:59','2021-06-17 13:18:59','','010','','inherit','open','closed','','010','','','2021-06-17 13:18:59','2021-06-17 13:18:59','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/010.jpg',0,'attachment','image/jpeg',0),(3714,8,'2021-06-17 13:19:02','2021-06-17 13:19:02','','011','','inherit','open','closed','','011','','','2021-06-17 13:19:02','2021-06-17 13:19:02','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/011.jpg',0,'attachment','image/jpeg',0),(3715,8,'2021-06-17 13:19:05','2021-06-17 13:19:05','','012','','inherit','open','closed','','012','','','2021-06-17 13:19:05','2021-06-17 13:19:05','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/012.jpg',0,'attachment','image/jpeg',0),(3716,8,'2021-06-17 13:19:08','2021-06-17 13:19:08','','013','','inherit','open','closed','','013','','','2021-06-17 13:19:08','2021-06-17 13:19:08','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/013.jpg',0,'attachment','image/jpeg',0),(3717,8,'2021-06-17 13:19:11','2021-06-17 13:19:11','','014','','inherit','open','closed','','014','','','2021-06-17 13:19:11','2021-06-17 13:19:11','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/014.jpg',0,'attachment','image/jpeg',0),(3718,8,'2021-06-17 13:19:14','2021-06-17 13:19:14','','015','','inherit','open','closed','','015','','','2021-06-17 13:19:14','2021-06-17 13:19:14','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/015.jpg',0,'attachment','image/jpeg',0),(3719,8,'2021-06-17 13:19:17','2021-06-17 13:19:17','','016','','inherit','open','closed','','016','','','2021-06-17 13:19:17','2021-06-17 13:19:17','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/016.jpg',0,'attachment','image/jpeg',0),(3720,8,'2021-06-17 13:19:20','2021-06-17 13:19:20','','017','','inherit','open','closed','','017','','','2021-06-17 13:19:20','2021-06-17 13:19:20','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/017.jpg',0,'attachment','image/jpeg',0),(3721,8,'2021-06-17 13:19:23','2021-06-17 13:19:23','','018','','inherit','open','closed','','018','','','2021-06-17 13:19:23','2021-06-17 13:19:23','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/018.jpg',0,'attachment','image/jpeg',0),(3722,8,'2021-06-17 13:19:26','2021-06-17 13:19:26','','019','','inherit','open','closed','','019','','','2021-06-17 13:19:26','2021-06-17 13:19:26','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/019.jpg',0,'attachment','image/jpeg',0),(3723,8,'2021-06-17 13:19:29','2021-06-17 13:19:29','','020','','inherit','open','closed','','020','','','2021-06-17 13:19:29','2021-06-17 13:19:29','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/020.jpg',0,'attachment','image/jpeg',0),(3724,8,'2021-06-17 13:19:32','2021-06-17 13:19:32','','021(1)','','inherit','open','closed','','0211','','','2021-06-17 13:19:32','2021-06-17 13:19:32','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/0211.jpg',0,'attachment','image/jpeg',0),(3725,8,'2021-06-17 13:19:35','2021-06-17 13:19:35','','021','','inherit','open','closed','','021','','','2021-06-17 13:19:35','2021-06-17 13:19:35','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/021.jpg',0,'attachment','image/jpeg',0),(3726,8,'2021-06-17 13:19:38','2021-06-17 13:19:38','','022','','inherit','open','closed','','022','','','2021-06-17 13:19:38','2021-06-17 13:19:38','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/022.jpg',0,'attachment','image/jpeg',0),(3727,8,'2021-06-17 13:19:41','2021-06-17 13:19:41','','023','','inherit','open','closed','','023','','','2021-06-17 13:19:41','2021-06-17 13:19:41','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/023.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `wpew_posts` VALUES (3728,8,'2021-06-17 13:19:44','2021-06-17 13:19:44','','024','','inherit','open','closed','','024','','','2021-06-17 13:19:44','2021-06-17 13:19:44','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/024.jpg',0,'attachment','image/jpeg',0),(3729,8,'2021-06-17 13:19:47','2021-06-17 13:19:47','','025','','inherit','open','closed','','025','','','2021-06-17 13:19:47','2021-06-17 13:19:47','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/025.jpg',0,'attachment','image/jpeg',0),(3730,8,'2021-06-17 13:19:50','2021-06-17 13:19:50','','026(1)','','inherit','open','closed','','0261','','','2021-06-17 13:19:50','2021-06-17 13:19:50','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/0261.jpg',0,'attachment','image/jpeg',0),(3731,8,'2021-06-17 13:19:53','2021-06-17 13:19:53','','026','','inherit','open','closed','','026','','','2021-06-17 13:19:53','2021-06-17 13:19:53','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/026.jpg',0,'attachment','image/jpeg',0),(3732,8,'2021-06-17 13:19:56','2021-06-17 13:19:56','','027','','inherit','open','closed','','027','','','2021-06-17 13:19:56','2021-06-17 13:19:56','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/027.jpg',0,'attachment','image/jpeg',0),(3733,8,'2021-06-17 13:19:59','2021-06-17 13:19:59','','028','','inherit','open','closed','','028','','','2021-06-17 13:19:59','2021-06-17 13:19:59','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/028.jpg',0,'attachment','image/jpeg',0),(3734,8,'2021-06-17 13:20:03','2021-06-17 13:20:03','','029','','inherit','open','closed','','029','','','2021-06-17 13:20:03','2021-06-17 13:20:03','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/029.jpg',0,'attachment','image/jpeg',0),(3735,8,'2021-06-17 13:20:06','2021-06-17 13:20:06','','030','','inherit','open','closed','','030','','','2021-06-17 13:20:06','2021-06-17 13:20:06','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/030.jpg',0,'attachment','image/jpeg',0),(3736,8,'2021-06-17 13:20:09','2021-06-17 13:20:09','','031','','inherit','open','closed','','031','','','2021-06-17 13:20:09','2021-06-17 13:20:09','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/031.jpg',0,'attachment','image/jpeg',0),(3737,8,'2021-06-17 13:20:12','2021-06-17 13:20:12','','032','','inherit','open','closed','','032','','','2021-06-17 13:20:12','2021-06-17 13:20:12','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/032.jpg',0,'attachment','image/jpeg',0),(3738,8,'2021-06-17 13:20:15','2021-06-17 13:20:15','','033','','inherit','open','closed','','033','','','2021-06-17 13:20:15','2021-06-17 13:20:15','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/033.jpg',0,'attachment','image/jpeg',0),(3739,8,'2021-06-17 13:20:18','2021-06-17 13:20:18','','034','','inherit','open','closed','','034','','','2021-06-17 13:20:18','2021-06-17 13:20:18','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/034.jpg',0,'attachment','image/jpeg',0),(3740,8,'2021-06-17 13:20:21','2021-06-17 13:20:21','','035','','inherit','open','closed','','035','','','2021-06-17 13:20:21','2021-06-17 13:20:21','',3703,'https://om7717.dev34.info/wp-content/uploads/2021/06/035.jpg',0,'attachment','image/jpeg',0),(3741,0,'2021-06-17 13:37:42','2021-06-17 13:37:42','','ELVILL DR','','publish','closed','closed','','elvill-dr','','','2021-06-23 07:42:45','2021-06-23 07:42:45','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3741',0,'listing','',0),(3742,8,'2021-06-17 13:58:59','2021-06-17 13:58:59','','1','','inherit','open','closed','','1-8','','','2021-06-17 13:58:59','2021-06-17 13:58:59','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/1-4.jpg',0,'attachment','image/jpeg',0),(3743,8,'2021-06-17 13:59:23','2021-06-17 13:59:23','','2','','inherit','open','closed','','2-9','','','2021-06-17 13:59:23','2021-06-17 13:59:23','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/2-5.jpg',0,'attachment','image/jpeg',0),(3744,8,'2021-06-17 13:59:26','2021-06-17 13:59:26','','3','','inherit','open','closed','','3-8','','','2021-06-17 13:59:26','2021-06-17 13:59:26','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/3-4.jpg',0,'attachment','image/jpeg',0),(3745,8,'2021-06-17 13:59:29','2021-06-17 13:59:29','','4','','inherit','open','closed','','4-8','','','2021-06-17 13:59:29','2021-06-17 13:59:29','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/4-4.jpg',0,'attachment','image/jpeg',0),(3746,8,'2021-06-17 13:59:32','2021-06-17 13:59:32','','6','','inherit','open','closed','','6-7','','','2021-06-17 13:59:32','2021-06-17 13:59:32','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/6-4.jpg',0,'attachment','image/jpeg',0),(3747,8,'2021-06-17 13:59:36','2021-06-17 13:59:36','','8','','inherit','open','closed','','8-9','','','2021-06-17 13:59:36','2021-06-17 13:59:36','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/8-5.jpg',0,'attachment','image/jpeg',0),(3748,8,'2021-06-17 13:59:47','2021-06-17 13:59:47','','9','','inherit','open','closed','','9-8','','','2021-06-17 13:59:47','2021-06-17 13:59:47','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/9-4.jpg',0,'attachment','image/jpeg',0),(3749,8,'2021-06-17 13:59:50','2021-06-17 13:59:50','','10','','inherit','open','closed','','10-8','','','2021-06-17 13:59:50','2021-06-17 13:59:50','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/10-4.jpg',0,'attachment','image/jpeg',0),(3750,8,'2021-06-17 13:59:53','2021-06-17 13:59:53','','11','','inherit','open','closed','','11-8','','','2021-06-17 13:59:53','2021-06-17 13:59:53','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/11-4.jpg',0,'attachment','image/jpeg',0),(3751,8,'2021-06-17 13:59:56','2021-06-17 13:59:56','','12','','inherit','open','closed','','12-8','','','2021-06-17 13:59:56','2021-06-17 13:59:56','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/12-4.jpg',0,'attachment','image/jpeg',0),(3752,8,'2021-06-17 13:59:58','2021-06-17 13:59:58','','13','','inherit','open','closed','','13-7','','','2021-06-17 13:59:58','2021-06-17 13:59:58','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/13-4.jpg',0,'attachment','image/jpeg',0),(3753,8,'2021-06-17 14:00:04','2021-06-17 14:00:04','','14','','inherit','open','closed','','14-7','','','2021-06-17 14:00:04','2021-06-17 14:00:04','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/14-4.jpg',0,'attachment','image/jpeg',0),(3754,8,'2021-06-17 14:00:07','2021-06-17 14:00:07','','15','','inherit','open','closed','','15-7','','','2021-06-17 14:00:07','2021-06-17 14:00:07','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/15-4.jpg',0,'attachment','image/jpeg',0),(3755,8,'2021-06-17 14:00:12','2021-06-17 14:00:12','','16','','inherit','open','closed','','16-7','','','2021-06-17 14:00:12','2021-06-17 14:00:12','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/16-4.jpg',0,'attachment','image/jpeg',0),(3756,8,'2021-06-17 14:00:15','2021-06-17 14:00:15','','17','','inherit','open','closed','','17-7','','','2021-06-17 14:00:15','2021-06-17 14:00:15','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/17-4.jpg',0,'attachment','image/jpeg',0),(3757,8,'2021-06-17 14:00:31','2021-06-17 14:00:31','','18','','inherit','open','closed','','18-8','','','2021-06-17 14:00:31','2021-06-17 14:00:31','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/18-4.jpg',0,'attachment','image/jpeg',0),(3758,8,'2021-06-17 14:00:33','2021-06-17 14:00:33','','19','','inherit','open','closed','','19-9','','','2021-06-17 14:00:33','2021-06-17 14:00:33','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/19-5.jpg',0,'attachment','image/jpeg',0),(3759,8,'2021-06-17 14:00:35','2021-06-17 14:00:35','','20','','inherit','open','closed','','20-7','','','2021-06-17 14:00:35','2021-06-17 14:00:35','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/20-4.jpg',0,'attachment','image/jpeg',0),(3760,8,'2021-06-17 14:00:37','2021-06-17 14:00:37','','21','','inherit','open','closed','','21-6','','','2021-06-17 14:00:37','2021-06-17 14:00:37','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/21-3.jpg',0,'attachment','image/jpeg',0),(3761,8,'2021-06-17 14:00:39','2021-06-17 14:00:39','','23','','inherit','open','closed','','23-7','','','2021-06-17 14:00:39','2021-06-17 14:00:39','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/23-3.jpg',0,'attachment','image/jpeg',0),(3762,8,'2021-06-17 14:00:41','2021-06-17 14:00:41','','24','','inherit','open','closed','','24-7','','','2021-06-17 14:00:41','2021-06-17 14:00:41','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/24-3.jpg',0,'attachment','image/jpeg',0),(3763,8,'2021-06-17 14:00:43','2021-06-17 14:00:43','','25','','inherit','open','closed','','25-7','','','2021-06-17 14:00:43','2021-06-17 14:00:43','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/25-3.jpg',0,'attachment','image/jpeg',0),(3764,8,'2021-06-17 14:00:45','2021-06-17 14:00:45','','26','','inherit','open','closed','','26-6','','','2021-06-17 14:00:45','2021-06-17 14:00:45','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/26-2.jpg',0,'attachment','image/jpeg',0),(3765,8,'2021-06-17 14:00:47','2021-06-17 14:00:47','','27','','inherit','open','closed','','27-5','','','2021-06-17 14:00:47','2021-06-17 14:00:47','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/27-2.jpg',0,'attachment','image/jpeg',0),(3766,8,'2021-06-17 14:00:49','2021-06-17 14:00:49','','28','','inherit','open','closed','','28-5','','','2021-06-17 14:00:49','2021-06-17 14:00:49','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/28-2.jpg',0,'attachment','image/jpeg',0),(3767,8,'2021-06-17 14:00:50','2021-06-17 14:00:50','','29','','inherit','open','closed','','29-6','','','2021-06-17 14:00:50','2021-06-17 14:00:50','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/29-2.jpg',0,'attachment','image/jpeg',0),(3768,8,'2021-06-17 14:00:52','2021-06-17 14:00:52','','30','','inherit','open','closed','','30-6','','','2021-06-17 14:00:52','2021-06-17 14:00:52','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/30-2.jpg',0,'attachment','image/jpeg',0),(3769,8,'2021-06-17 14:00:54','2021-06-17 14:00:54','','31','','inherit','open','closed','','31-6','','','2021-06-17 14:00:54','2021-06-17 14:00:54','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/31-2.jpg',0,'attachment','image/jpeg',0),(3770,8,'2021-06-17 14:00:55','2021-06-17 14:00:55','','33','','inherit','open','closed','','33-3','','','2021-06-17 14:00:55','2021-06-17 14:00:55','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/33.jpg',0,'attachment','image/jpeg',0),(3771,8,'2021-06-17 14:00:57','2021-06-17 14:00:57','','34','','inherit','open','closed','','34-3','','','2021-06-17 14:00:57','2021-06-17 14:00:57','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/34-1.jpg',0,'attachment','image/jpeg',0),(3772,8,'2021-06-17 14:00:59','2021-06-17 14:00:59','','35','','inherit','open','closed','','35-4','','','2021-06-17 14:00:59','2021-06-17 14:00:59','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/35-2.jpg',0,'attachment','image/jpeg',0),(3773,8,'2021-06-17 14:01:01','2021-06-17 14:01:01','','36','','inherit','open','closed','','36-3','','','2021-06-17 14:01:01','2021-06-17 14:01:01','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/36.jpg',0,'attachment','image/jpeg',0),(3774,8,'2021-06-17 14:01:03','2021-06-17 14:01:03','','37','','inherit','open','closed','','37-3','','','2021-06-17 14:01:03','2021-06-17 14:01:03','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/37.jpg',0,'attachment','image/jpeg',0),(3775,8,'2021-06-17 14:01:05','2021-06-17 14:01:05','','38','','inherit','open','closed','','38-4','','','2021-06-17 14:01:05','2021-06-17 14:01:05','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/38.jpg',0,'attachment','image/jpeg',0),(3776,8,'2021-06-17 14:01:07','2021-06-17 14:01:07','','39','','inherit','open','closed','','39-2','','','2021-06-17 14:01:07','2021-06-17 14:01:07','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/39.jpg',0,'attachment','image/jpeg',0),(3777,8,'2021-06-17 14:01:09','2021-06-17 14:01:09','','40','','inherit','open','closed','','40-2','','','2021-06-17 14:01:09','2021-06-17 14:01:09','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/40.jpg',0,'attachment','image/jpeg',0),(3778,8,'2021-06-17 14:01:11','2021-06-17 14:01:11','','41','','inherit','open','closed','','41','','','2021-06-17 14:01:11','2021-06-17 14:01:11','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/41.jpg',0,'attachment','image/jpeg',0),(3779,8,'2021-06-17 14:01:13','2021-06-17 14:01:13','','42','','inherit','open','closed','','42','','','2021-06-17 14:01:13','2021-06-17 14:01:13','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/42.jpg',0,'attachment','image/jpeg',0),(3780,8,'2021-06-17 14:01:15','2021-06-17 14:01:15','','43','','inherit','open','closed','','43','','','2021-06-17 14:01:15','2021-06-17 14:01:15','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/43.jpg',0,'attachment','image/jpeg',0),(3781,8,'2021-06-17 14:01:17','2021-06-17 14:01:17','','44','','inherit','open','closed','','44','','','2021-06-17 14:01:17','2021-06-17 14:01:17','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/44.jpg',0,'attachment','image/jpeg',0),(3782,8,'2021-06-17 14:01:18','2021-06-17 14:01:18','','45','','inherit','open','closed','','45-2','','','2021-06-17 14:01:18','2021-06-17 14:01:18','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/45.jpg',0,'attachment','image/jpeg',0),(3783,8,'2021-06-17 14:01:20','2021-06-17 14:01:20','','46','','inherit','open','closed','','46-2','','','2021-06-17 14:01:20','2021-06-17 14:01:20','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/46.jpg',0,'attachment','image/jpeg',0),(3784,8,'2021-06-17 14:01:22','2021-06-17 14:01:22','','47','','inherit','open','closed','','47-2','','','2021-06-17 14:01:22','2021-06-17 14:01:22','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/47.jpg',0,'attachment','image/jpeg',0),(3785,8,'2021-06-17 14:01:26','2021-06-17 14:01:26','','48','','inherit','open','closed','','48-2','','','2021-06-17 14:01:26','2021-06-17 14:01:26','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/48.jpg',0,'attachment','image/jpeg',0),(3786,8,'2021-06-17 14:01:28','2021-06-17 14:01:28','','49','','inherit','open','closed','','49-2','','','2021-06-17 14:01:28','2021-06-17 14:01:28','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/49.jpg',0,'attachment','image/jpeg',0),(3787,8,'2021-06-17 14:01:30','2021-06-17 14:01:30','','50','','inherit','open','closed','','50-2','','','2021-06-17 14:01:30','2021-06-17 14:01:30','',3741,'https://om7717.dev34.info/wp-content/uploads/2021/06/50.jpg',0,'attachment','image/jpeg',0),(3796,1,'2021-06-23 02:20:35','2021-06-23 02:20:35','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','home stats 1','','publish','closed','closed','','home-stats-1','','','2021-06-23 02:20:35','2021-06-23 02:20:35','',0,'https://om7717.dev34.info/?elementor_library=home-stats-1',0,'elementor_library','',0),(3797,1,'2021-06-23 02:20:35','2021-06-23 02:20:35','','home stats 1','','inherit','closed','closed','','3796-revision-v1','','','2021-06-23 02:20:35','2021-06-23 02:20:35','',3796,'https://om7717.dev34.info/?p=3797',0,'revision','',0),(3798,1,'2021-06-23 02:20:35','2021-06-23 02:20:35','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','home stats 1','','inherit','closed','closed','','3796-revision-v1','','','2021-06-23 02:20:35','2021-06-23 02:20:35','',3796,'https://om7717.dev34.info/?p=3798',0,'revision','',0),(3790,1,'2021-06-23 02:03:00','2021-06-23 02:03:00','','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 02:03:00','2021-06-23 02:03:00','',581,'https://om7717.dev34.info/?p=3790',0,'revision','',0),(3793,1,'2021-06-23 02:11:34','2021-06-23 02:11:34','<h2>About us</h2>		\n										<img width=\"1500\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17.jpeg 1500w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-1024x683.jpeg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-768x513.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-17-674x450.jpeg 674w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>		\n				<h3>\n					Guidance you need\n				</h3>\n								<p>We\'re here to strip the fear out of home buying and arm you with the confidence you need to make decisions</p>\n				<h3>\n					Search that feels familiar\n				</h3>\n								<p>Our first-of-its-kind search experience enables you to plug in a monthly payment you\'re willing to make </p>\n				<h3>\n					Premium values\n				</h3>\n								<p>Luxury real estate is our passion and it demands our focus. We strive to provide a high level of personalised service</p>\n			<h6>Why us</h6>		\n			<h2>To help members\nbecome more profitable\nand successful</h2>		\n		The Homey is America\'s largest trade association, representing 1.3 million members, including our institutes, societies, and councils, involved in all aspects of the residential and commercial real estate industries.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Help sellers get the most for their properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help sellers price their properties fairly\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help buyers find the property that fits their needs\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help buyers avoid over paying by strategically negotiating purchase\n											</a>\n									</li>\n						</ul>\n                    0\n                    Homes for sale                \n                    0\n                    Homes for rent                \n                    0\n                    Recently sold                \n                    0\n                    Happy clients                \n			<h6>testimonials</h6>		\n			<h2>Here’s what clients say<br>\nabout us\n</h2>		\n                                    Mr. William Smith                                    Corporate communications Executive\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                                    Mrs. Emma Stone                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 02:11:34','2021-06-23 02:11:34','',581,'https://om7717.dev34.info/?p=3793',0,'revision','',0),(3792,1,'2021-06-23 02:09:21','2021-06-23 02:09:21','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>		\n				<h3>\n					Guidance you need\n				</h3>\n								<p>We\'re here to strip the fear out of home buying and arm you with the confidence you need to make decisions</p>\n				<h3>\n					Search that feels familiar\n				</h3>\n								<p>Our first-of-its-kind search experience enables you to plug in a monthly payment you\'re willing to make </p>\n				<h3>\n					Premium values\n				</h3>\n								<p>Luxury real estate is our passion and it demands our focus. We strive to provide a high level of personalised service</p>\n			<h6>Why us</h6>		\n			<h2>To help members\nbecome more profitable\nand successful</h2>		\n		The Homey is America\'s largest trade association, representing 1.3 million members, including our institutes, societies, and councils, involved in all aspects of the residential and commercial real estate industries.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Help sellers get the most for their properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help sellers price their properties fairly\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help buyers find the property that fits their needs\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help buyers avoid over paying by strategically negotiating purchase\n											</a>\n									</li>\n						</ul>\n                    0\n                    Homes for sale                \n                    0\n                    Homes for rent                \n                    0\n                    Recently sold                \n                    0\n                    Happy clients                \n			<h6>testimonials</h6>		\n			<h2>Here’s what clients say<br>\nabout us\n</h2>		\n                                    Mr. William Smith                                    Corporate communications Executive\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                                    Mrs. Emma Stone                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 02:09:21','2021-06-23 02:09:21','',581,'https://om7717.dev34.info/?p=3792',0,'revision','',0),(3791,1,'2021-06-23 02:03:00','2021-06-23 02:03:00','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>about us</h6>		\n			<h2>Our long-standing<br> experience</h2>		\n		<p>Founded in the UK in 1955, Rentex is one of the world\'s leading property agents. Our experience and expertise spans the globe, with 600 offices across the Americas, Europe, Asia Pacific, Africa and the Middle East.</p><p>Our scale gives us wide-ranging specialist and local knowledge, and we take pride in providing best-in-class advice as we help individuals, businesses and institutions make better property decisions.Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor.</p>		\n			<h6>We have over</h6>		\n			<h1>75</h1>		\n			<h3>years\'</h3>		\n			<h6>Expertise</h6>		\n            <a role=\"button\" href=\"https://www.youtube.com/watch?v=XHOmBV4js_E\" data-effect=\"mfp-zoom-in\">\n                            </a>\n				<h3>\n					Guidance you need\n				</h3>\n								<p>We\'re here to strip the fear out of home buying and arm you with the confidence you need to make decisions</p>\n				<h3>\n					Search that feels familiar\n				</h3>\n								<p>Our first-of-its-kind search experience enables you to plug in a monthly payment you\'re willing to make </p>\n				<h3>\n					Premium values\n				</h3>\n								<p>Luxury real estate is our passion and it demands our focus. We strive to provide a high level of personalised service</p>\n			<h6>Why us</h6>		\n			<h2>To help members\nbecome more profitable\nand successful</h2>		\n		The Homey is America\'s largest trade association, representing 1.3 million members, including our institutes, societies, and councils, involved in all aspects of the residential and commercial real estate industries.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Help sellers get the most for their properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help sellers price their properties fairly\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help buyers find the property that fits their needs\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help buyers avoid over paying by strategically negotiating purchase\n											</a>\n									</li>\n						</ul>\n                    0\n                    Homes for sale                \n                    0\n                    Homes for rent                \n                    0\n                    Recently sold                \n                    0\n                    Happy clients                \n			<h6>testimonials</h6>		\n			<h2>Here’s what clients say<br>\nabout us\n</h2>		\n                                    Mr. William Smith                                    Corporate communications Executive\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                                    Mrs. Emma Stone                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 02:03:00','2021-06-23 02:03:00','',581,'https://om7717.dev34.info/?p=3791',0,'revision','',0),(3795,1,'2021-06-23 02:15:27','2021-06-23 02:15:27','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 02:15:27','2021-06-23 02:15:27','',581,'https://om7717.dev34.info/?p=3795',0,'revision','',0),(3794,1,'2021-06-23 02:12:43','2021-06-23 02:12:43','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>		\n				<h3>\n					Guidance you need\n				</h3>\n								<p>We\'re here to strip the fear out of home buying and arm you with the confidence you need to make decisions</p>\n				<h3>\n					Search that feels familiar\n				</h3>\n								<p>Our first-of-its-kind search experience enables you to plug in a monthly payment you\'re willing to make </p>\n				<h3>\n					Premium values\n				</h3>\n								<p>Luxury real estate is our passion and it demands our focus. We strive to provide a high level of personalised service</p>\n			<h6>Why us</h6>		\n			<h2>To help members\nbecome more profitable\nand successful</h2>		\n		The Homey is America\'s largest trade association, representing 1.3 million members, including our institutes, societies, and councils, involved in all aspects of the residential and commercial real estate industries.		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Help sellers get the most for their properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help sellers price their properties fairly\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help buyers find the property that fits their needs\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Help buyers avoid over paying by strategically negotiating purchase\n											</a>\n									</li>\n						</ul>\n                    0\n                    Homes for sale                \n                    0\n                    Homes for rent                \n                    0\n                    Recently sold                \n                    0\n                    Happy clients                \n			<h6>testimonials</h6>		\n			<h2>Here’s what clients say<br>\nabout us\n</h2>		\n                                    Mr. William Smith                                    Corporate communications Executive\n                                Very easy to use. I don\'t know what else to say. I didn\'t even need training. It fits our needs perfectly. Rentex is the real deal! I would like to personally thank you for your outstanding product.\n                                    Mrs. Emma Stone                                    New York, USA\n                                I don\'t always clop, but when I do, it\'s because of Rentex. I will let my friends know about this, they could really make use of Rentex!','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 02:12:43','2021-06-23 02:12:43','',581,'https://om7717.dev34.info/?p=3794',0,'revision','',0),(3799,1,'2021-06-23 02:22:23','2021-06-23 02:22:23','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','home stats 1','','publish','closed','closed','','home-stats-1-2','','','2021-06-23 02:22:23','2021-06-23 02:22:23','',0,'https://om7717.dev34.info/?elementor_library=home-stats-1-2',0,'elementor_library','',0),(3800,1,'2021-06-23 02:22:23','2021-06-23 02:22:23','','home stats 1','','inherit','closed','closed','','3799-revision-v1','','','2021-06-23 02:22:23','2021-06-23 02:22:23','',3799,'https://om7717.dev34.info/?p=3800',0,'revision','',0),(3801,1,'2021-06-23 02:22:23','2021-06-23 02:22:23','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','home stats 1','','inherit','closed','closed','','3799-revision-v1','','','2021-06-23 02:22:23','2021-06-23 02:22:23','',3799,'https://om7717.dev34.info/?p=3801',0,'revision','',0),(3802,1,'2021-06-23 02:22:39','2021-06-23 02:22:39','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','reviews 1','','publish','closed','closed','','reviews-1','','','2021-06-23 02:22:39','2021-06-23 02:22:39','',0,'https://om7717.dev34.info/?elementor_library=reviews-1',0,'elementor_library','',0),(3803,1,'2021-06-23 02:22:39','2021-06-23 02:22:39','','reviews 1','','inherit','closed','closed','','3802-revision-v1','','','2021-06-23 02:22:39','2021-06-23 02:22:39','',3802,'https://om7717.dev34.info/?p=3803',0,'revision','',0),(3804,1,'2021-06-23 02:22:39','2021-06-23 02:22:39','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','reviews 1','','inherit','closed','closed','','3802-revision-v1','','','2021-06-23 02:22:39','2021-06-23 02:22:39','',3802,'https://om7717.dev34.info/?p=3804',0,'revision','',0),(3805,1,'2021-06-23 02:23:00','2021-06-23 02:23:00','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','reviews','','publish','closed','closed','','reviews','','','2021-06-23 02:23:00','2021-06-23 02:23:00','',0,'https://om7717.dev34.info/?elementor_library=reviews',0,'elementor_library','',0),(3806,1,'2021-06-23 02:23:00','2021-06-23 02:23:00','','reviews','','inherit','closed','closed','','3805-revision-v1','','','2021-06-23 02:23:00','2021-06-23 02:23:00','',3805,'https://om7717.dev34.info/?p=3806',0,'revision','',0),(3807,1,'2021-06-23 02:23:00','2021-06-23 02:23:00','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','reviews','','inherit','closed','closed','','3805-revision-v1','','','2021-06-23 02:23:00','2021-06-23 02:23:00','',3805,'https://om7717.dev34.info/?p=3807',0,'revision','',0),(3808,1,'2021-06-23 02:23:01','2021-06-23 02:23:01','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','reviews','','publish','closed','closed','','reviews-2','','','2021-06-23 02:23:01','2021-06-23 02:23:01','',0,'https://om7717.dev34.info/?elementor_library=reviews-2',0,'elementor_library','',0),(3809,1,'2021-06-23 02:23:01','2021-06-23 02:23:01','','reviews','','inherit','closed','closed','','3808-revision-v1','','','2021-06-23 02:23:01','2021-06-23 02:23:01','',3808,'https://om7717.dev34.info/?p=3809',0,'revision','',0),(3810,1,'2021-06-23 02:23:01','2021-06-23 02:23:01','0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','reviews','','inherit','closed','closed','','3808-revision-v1','','','2021-06-23 02:23:01','2021-06-23 02:23:01','',3808,'https://om7717.dev34.info/?p=3810',0,'revision','',0),(3966,0,'2021-07-13 12:10:31','2021-07-13 12:10:31','','Hyde Beach House Residence 09','','publish','closed','closed','','hyde-beach-house-residence-09','','','2021-07-15 05:44:05','2021-07-15 05:44:05','',0,'https://om7717.dev34.info/?post_type=listing&#038;p=3966',0,'listing','',0),(3814,8,'2021-06-23 02:44:33','2021-06-23 02:44:33','<h2>The Opulence Management Difference</h2>','OMD section','','publish','closed','closed','','omd-section','','','2021-06-23 02:44:33','2021-06-23 02:44:33','',0,'https://om7717.dev34.info/?elementor_library=omd-section',0,'elementor_library','',0),(3815,8,'2021-06-23 02:44:33','2021-06-23 02:44:33','','OMD section','','inherit','closed','closed','','3814-revision-v1','','','2021-06-23 02:44:33','2021-06-23 02:44:33','',3814,'https://om7717.dev34.info/?p=3815',0,'revision','',0),(3816,8,'2021-06-23 02:44:33','2021-06-23 02:44:33','<h2>The Opulence Management Difference</h2>','OMD section','','inherit','closed','closed','','3814-revision-v1','','','2021-06-23 02:44:33','2021-06-23 02:44:33','',3814,'https://om7717.dev34.info/?p=3816',0,'revision','',0),(3817,8,'2021-06-23 02:49:55','2021-06-23 02:49:55','<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','testi section','','publish','closed','closed','','testi-section','','','2021-06-23 02:49:55','2021-06-23 02:49:55','',0,'https://om7717.dev34.info/?elementor_library=testi-section',0,'elementor_library','',0),(3818,8,'2021-06-23 02:49:55','2021-06-23 02:49:55','','testi section','','inherit','closed','closed','','3817-revision-v1','','','2021-06-23 02:49:55','2021-06-23 02:49:55','',3817,'https://om7717.dev34.info/?p=3818',0,'revision','',0),(3819,8,'2021-06-23 02:49:55','2021-06-23 02:49:55','<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','testi section','','inherit','closed','closed','','3817-revision-v1','','','2021-06-23 02:49:55','2021-06-23 02:49:55','',3817,'https://om7717.dev34.info/?p=3819',0,'revision','',0),(3821,8,'2021-06-23 03:20:19','2021-06-23 03:20:19','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 03:20:19','2021-06-23 03:20:19','',581,'https://om7717.dev34.info/?p=3821',0,'revision','',0),(3839,8,'2021-06-23 03:50:53','2021-06-23 03:50:53','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 03:50:53','2021-06-23 03:50:53','',581,'https://om7717.dev34.info/?p=3839',0,'revision','',0),(3892,8,'2021-06-23 04:39:47','2021-06-23 04:39:47','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6>Luxury Town Homes</h6>		\n			<h6>Luxury Condos</h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 04:39:47','2021-06-23 04:39:47','',881,'https://om7717.dev34.info/?p=3892',0,'revision','',0),(3896,8,'2021-06-23 06:12:34','2021-06-23 06:12:34','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 06:12:34','2021-06-23 06:12:34','',1771,'https://om7717.dev34.info/?p=3896',0,'revision','',0),(3890,8,'2021-06-23 04:28:21','2021-06-23 04:28:21','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 04:28:21','2021-06-23 04:28:21','',581,'https://om7717.dev34.info/?p=3890',0,'revision','',0),(3862,8,'2021-06-23 03:58:48','2021-06-23 03:58:48','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','About us','','inherit','closed','closed','','581-revision-v1','','','2021-06-23 03:58:48','2021-06-23 03:58:48','',581,'https://om7717.dev34.info/?p=3862',0,'revision','',0),(3897,8,'2021-06-23 06:14:57','2021-06-23 06:14:57','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 06:14:57','2021-06-23 06:14:57','',1771,'https://om7717.dev34.info/?p=3897',0,'revision','',0),(3898,8,'2021-06-23 06:21:09','2021-06-23 06:21:09','<h2>Contact us</h2>		\n			<h2>Contact Information</h2>		\n					<ul>\n							<li >\n										(424)-567-2106\n									</li>\n								<li >\n										info@opulencemgmt.net\n									</li>\n								<li >\n										Beverly Hills, C.A.\n									</li>\n						</ul>\n										<img width=\"663\" height=\"555\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/om.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/om-300x251.png 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/om-538x450.png 538w, https://om7717.dev34.info/wp-content/uploads/2020/06/om.png 663w\" sizes=\"(max-width: 663px) 100vw, 663px\" />											\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n    <input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your email<br />\n    <input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Subject<br />\n    <input type=\"text\" name=\"your-subject\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your message (optional)<br />\n    <textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-invalid=\"false\"></textarea> </label></p>\n<p><input type=\"submit\" value=\"Submit\" /></p>\n</form>','Contact Us','','publish','closed','closed','','contact','','','2021-06-24 15:55:04','2021-06-24 15:55:04','',0,'https://om7717.dev34.info/?page_id=3898',0,'page','',0),(3899,8,'2021-06-23 06:19:29','2021-06-23 06:19:29','<h2>About us</h2>','about','','publish','closed','closed','','about','','','2021-06-23 06:19:29','2021-06-23 06:19:29','',0,'https://om7717.dev34.info/?elementor_library=about',0,'elementor_library','',0),(3900,8,'2021-06-23 06:19:29','2021-06-23 06:19:29','','about','','inherit','closed','closed','','3899-revision-v1','','','2021-06-23 06:19:29','2021-06-23 06:19:29','',3899,'https://om7717.dev34.info/?p=3900',0,'revision','',0),(3901,8,'2021-06-23 06:19:29','2021-06-23 06:19:29','<h2>About us</h2>','about','','inherit','closed','closed','','3899-revision-v1','','','2021-06-23 06:19:29','2021-06-23 06:19:29','',3899,'https://om7717.dev34.info/?p=3901',0,'revision','',0),(3902,8,'2021-06-23 06:20:23','2021-06-23 06:20:23','<h2>About us</h2>		\n										<img width=\"1920\" height=\"1001\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n			<h6>More About</h6>		\n			<h2>Opulence Management</h2>		\n		<p>Founded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami. </p><p>Opulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','About us','','inherit','closed','closed','','581-autosave-v1','','','2021-06-23 06:20:24','2021-06-23 06:20:24','',581,'https://om7717.dev34.info/?p=3902',0,'revision','',0),(3884,8,'2021-06-23 04:26:23','2021-06-23 04:26:23','<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>','news section','','publish','closed','closed','','news-section','','','2021-06-23 04:26:23','2021-06-23 04:26:23','',0,'https://om7717.dev34.info/?elementor_library=news-section',0,'elementor_library','',0),(3885,8,'2021-06-23 04:26:23','2021-06-23 04:26:23','','news section','','inherit','closed','closed','','3884-revision-v1','','','2021-06-23 04:26:23','2021-06-23 04:26:23','',3884,'https://om7717.dev34.info/?p=3885',0,'revision','',0),(3886,8,'2021-06-23 04:26:23','2021-06-23 04:26:23','<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>','news section','','inherit','closed','closed','','3884-revision-v1','','','2021-06-23 04:26:23','2021-06-23 04:26:23','',3884,'https://om7717.dev34.info/?p=3886',0,'revision','',0),(3887,8,'2021-06-23 04:27:26','2021-06-23 04:27:26','<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>','news sect','','publish','closed','closed','','news-sect','','','2021-06-23 04:27:26','2021-06-23 04:27:26','',0,'https://om7717.dev34.info/?elementor_library=news-sect',0,'elementor_library','',0),(3888,8,'2021-06-23 04:27:26','2021-06-23 04:27:26','','news sect','','inherit','closed','closed','','3887-revision-v1','','','2021-06-23 04:27:26','2021-06-23 04:27:26','',3887,'https://om7717.dev34.info/?p=3888',0,'revision','',0),(3889,8,'2021-06-23 04:27:26','2021-06-23 04:27:26','<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>','news sect','','inherit','closed','closed','','3887-revision-v1','','','2021-06-23 04:27:26','2021-06-23 04:27:26','',3887,'https://om7717.dev34.info/?p=3889',0,'revision','',0),(3881,8,'2021-06-23 04:24:05','2021-06-23 04:24:05','<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','newsletter section','','publish','closed','closed','','newsletter-section-2','','','2021-06-23 04:24:05','2021-06-23 04:24:05','',0,'https://om7717.dev34.info/?elementor_library=newsletter-section-2',0,'elementor_library','',0),(3882,8,'2021-06-23 04:24:05','2021-06-23 04:24:05','','newsletter section','','inherit','closed','closed','','3881-revision-v1','','','2021-06-23 04:24:05','2021-06-23 04:24:05','',3881,'https://om7717.dev34.info/?p=3882',0,'revision','',0),(3883,8,'2021-06-23 04:24:05','2021-06-23 04:24:05','<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','newsletter section','','inherit','closed','closed','','3881-revision-v1','','','2021-06-23 04:24:05','2021-06-23 04:24:05','',3881,'https://om7717.dev34.info/?p=3883',0,'revision','',0),(3866,8,'2021-06-23 03:59:55','2021-06-23 03:59:55','<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','newsletter section','','publish','closed','closed','','newsletter-section','','','2021-06-23 03:59:55','2021-06-23 03:59:55','',0,'https://om7717.dev34.info/?elementor_library=newsletter-section',0,'elementor_library','',0),(3867,8,'2021-06-23 03:59:55','2021-06-23 03:59:55','','newsletter section','','inherit','closed','closed','','3866-revision-v1','','','2021-06-23 03:59:55','2021-06-23 03:59:55','',3866,'https://om7717.dev34.info/?p=3867',0,'revision','',0),(3868,8,'2021-06-23 03:59:55','2021-06-23 03:59:55','<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','newsletter section','','inherit','closed','closed','','3866-revision-v1','','','2021-06-23 03:59:55','2021-06-23 03:59:55','',3866,'https://om7717.dev34.info/?p=3868',0,'revision','',0),(3891,8,'2021-06-23 04:35:59','2021-06-23 04:35:59','','Properties','','inherit','closed','closed','','2643-revision-v1','','','2021-06-23 04:35:59','2021-06-23 04:35:59','',2643,'https://om7717.dev34.info/?p=3891',0,'revision','',0),(3893,8,'2021-06-23 04:39:56','2021-06-23 04:39:56','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"#\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 04:39:56','2021-06-23 04:39:56','',881,'https://om7717.dev34.info/?p=3893',0,'revision','',0),(3903,8,'2021-06-23 06:21:09','2021-06-23 06:21:09','','Contact Us','','inherit','closed','closed','','3898-revision-v1','','','2021-06-23 06:21:09','2021-06-23 06:21:09','',3898,'https://om7717.dev34.info/?p=3903',0,'revision','',0),(3906,8,'2021-06-23 06:39:28','2021-06-23 06:39:28','<h2>Contact us</h2>		\n			<h2>Contact Information</h2>		\n					<ul>\n							<li >\n										(424)-567-2106\n									</li>\n								<li >\n										info@opulencemgmt.net\n									</li>\n								<li >\n										Beverly Hills, C.A.\n									</li>\n						</ul>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n    <input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your email<br />\n    <input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Subject<br />\n    <input type=\"text\" name=\"your-subject\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your message (optional)<br />\n    <textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-invalid=\"false\"></textarea> </label></p>\n<p><input type=\"submit\" value=\"Submit\" /></p>\n</form>','Contact Us','','inherit','closed','closed','','3898-revision-v1','','','2021-06-23 06:39:28','2021-06-23 06:39:28','',3898,'https://om7717.dev34.info/?p=3906',0,'revision','',0),(3905,8,'2021-06-23 06:34:50','2021-06-23 06:34:50','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 06:34:50','2021-06-23 06:34:50','',1771,'https://om7717.dev34.info/?p=3905',0,'revision','',0),(3908,8,'2021-06-23 06:41:57','2021-06-23 06:41:57','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 06:41:57','2021-06-23 06:41:57','',1771,'https://om7717.dev34.info/?p=3908',0,'revision','',0),(3910,8,'2021-06-23 06:48:47','2021-06-23 06:48:47','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 06:48:47','2021-06-23 06:48:47','',1771,'https://om7717.dev34.info/?p=3910',0,'revision','',0),(3909,8,'2021-06-23 06:47:57','2021-06-23 06:47:57','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n		<p><a href=\"https://om7717.dev34.info/\">Home</a></p><p><a href=\"https://om7717.dev34.info/properties/\">Property Search</a></p><p><a href=\"https://om7717.dev34.info/about-us/\">About Us</a></p><p><a href=\"https://om7717.dev34.info/#\">List Your Home</a></p><p><a href=\"https://om7717.dev34.info/#\">Beverly Hills Info</a></p><p>Contact Us</p><p>Rental Agreement</p><p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 06:47:57','2021-06-23 06:47:57','',1771,'https://om7717.dev34.info/?p=3909',0,'revision','',0),(3911,1,'2021-06-23 18:40:16','2021-06-23 18:40:16','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n										Home\n									</li>\n								<li >\n										Property Search\n									</li>\n								<li >\n										About Us\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n										Contact\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 18:40:16','2021-06-23 18:40:16','',1771,'https://om7717.dev34.info/?p=3911',0,'revision','',0),(3912,1,'2021-06-23 18:40:54','2021-06-23 18:40:54','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n										Home\n									</li>\n								<li >\n										Property Search\n									</li>\n								<li >\n										About\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n										Contact\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 18:40:54','2021-06-23 18:40:54','',1771,'https://om7717.dev34.info/?p=3912',0,'revision','',0),(3913,1,'2021-06-23 18:41:47','2021-06-23 18:41:47','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n										Home\n									</li>\n								<li >\n										Property Search\n									</li>\n								<li >\n										About\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n										Contact\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 18:41:47','2021-06-23 18:41:47','',1771,'https://om7717.dev34.info/?p=3913',0,'revision','',0),(3914,1,'2021-06-23 18:42:41','2021-06-23 18:42:41','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Home\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Property Search\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					About\n											</a>\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/contact/\">					Contact\n											</a>\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 18:42:41','2021-06-23 18:42:41','',1771,'https://om7717.dev34.info/?p=3914',0,'revision','',0),(3915,1,'2021-06-23 18:43:27','2021-06-23 18:43:27','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"#\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"#\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Home\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Property Search\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					About\n											</a>\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/contact/\">					Contact\n											</a>\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-23 18:43:27','2021-06-23 18:43:27','',1771,'https://om7717.dev34.info/?p=3915',0,'revision','',0),(3916,1,'2021-06-23 19:26:35','2021-06-23 19:26:35','<h2>List Your Property</h2>		\n			<h2>List Your Property</h2>		\n			<h2>With Opulence Management</h2>		\n		<p style=\"text-align: center;\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','List Your Property','','publish','closed','closed','','list-your-property','','','2021-06-24 15:56:24','2021-06-24 15:56:24','',0,'https://om7717.dev34.info/?page_id=3916',0,'page','',0),(3927,1,'2021-06-23 19:30:33','2021-06-23 19:30:33','<h2>About us</h2>		\n			<h2>List Your Property</h2>		\n			<h2>With Opulence Management</h2>		\n		<p style=\"text-align: center;\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','List Your Property','','inherit','closed','closed','','3916-revision-v1','','','2021-06-23 19:30:33','2021-06-23 19:30:33','',3916,'https://om7717.dev34.info/?p=3927',0,'revision','',0),(3926,1,'2021-06-23 19:26:35','2021-06-23 19:26:35','<h2>About us</h2>\r\n<img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg\" sizes=\"(max-width: 1920px) 100vw, 1920px\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-300x156.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1024x534.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-768x400.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-1536x801.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/sunset-3128170_1920-863x450.jpg 863w\" alt=\"\" width=\"1920\" height=\"1001\" />\r\n<h6>More About</h6>\r\n<h2>Opulence Management</h2>\r\nFounded by seasoned real estate executives, Opulence Management has quickly emerged as the #1 vacation rental provider in Los Angeles. Our luxury short term rental portfolio is currently expanding into other markets including Miami.\r\n\r\nOpulence Management provides the absolute best quality service for our high end clientele. In addition to providing the most luxurious properties, we can also assist with Private Airfare, Luxury and Exotic Car Rentals, Nightlife and more. Contact Opulence Management today to elevate your next vacation to a whole new level.\r\n<h2>The Opulence Management Difference</h2>\r\n0\r\n%\r\n1 of a Kind Properties\r\n0\r\n%\r\nFirst Class Service\r\n0\r\n%\r\nCustomer Satisfaction\r\n<h2>Signup For Our Newsletter</h2>\r\nBe the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.\r\n<h2>Client Reviews</h2>\r\n\"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"\r\nLincoln Jones Customer','List Your Property','','inherit','closed','closed','','3916-revision-v1','','','2021-06-23 19:26:35','2021-06-23 19:26:35','',3916,'https://om7717.dev34.info/?p=3926',0,'revision','',0),(3917,1,'2021-06-23 18:46:53','2021-06-23 18:46:53','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"#\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 18:46:53','2021-06-23 18:46:53','',881,'https://om7717.dev34.info/?p=3917',0,'revision','',0),(3918,1,'2021-06-23 18:48:59','2021-06-23 18:48:59','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 18:48:59','2021-06-23 18:48:59','',881,'https://om7717.dev34.info/?p=3918',0,'revision','',0),(3919,1,'2021-06-23 18:51:06','2021-06-23 18:51:06','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 18:51:06','2021-06-23 18:51:06','',881,'https://om7717.dev34.info/?p=3919',0,'revision','',0),(3920,1,'2021-06-23 18:54:06','2021-06-23 18:54:06','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 18:54:06','2021-06-23 18:54:06','',881,'https://om7717.dev34.info/?p=3920',0,'revision','',0),(3922,1,'2021-06-23 19:03:24','2021-06-23 19:03:24','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 19:03:24','2021-06-23 19:03:24','',881,'https://om7717.dev34.info/?p=3922',0,'revision','',0),(3923,1,'2021-06-23 19:04:05','2021-06-23 19:04:05','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 19:04:05','2021-06-23 19:04:05','',881,'https://om7717.dev34.info/?p=3923',0,'revision','',0),(3924,1,'2021-06-23 19:05:56','2021-06-23 19:05:56','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 19:05:56','2021-06-23 19:05:56','',881,'https://om7717.dev34.info/?p=3924',0,'revision','',0),(3925,1,'2021-06-23 19:06:59','2021-06-23 19:06:59','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 19:06:59','2021-06-23 19:06:59','',881,'https://om7717.dev34.info/?p=3925',0,'revision','',0),(3928,1,'2021-06-23 19:30:51','2021-06-23 19:30:51','<h2>About us</h2>		\n			<h2>List Your Property</h2>		\n			<h2>With Opulence Management</h2>		\n		<p style=\"text-align: center;\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','List Your Property','','inherit','closed','closed','','3916-revision-v1','','','2021-06-23 19:30:51','2021-06-23 19:30:51','',3916,'https://om7717.dev34.info/?p=3928',0,'revision','',0),(3930,1,'2021-06-23 19:33:23','2021-06-23 19:33:23','<h2>List Your Property</h2>		\n			<h2>List Your Property</h2>		\n			<h2>With Opulence Management</h2>		\n		<p style=\"text-align: center;\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','List Your Property','','inherit','closed','closed','','3916-revision-v1','','','2021-06-23 19:33:23','2021-06-23 19:33:23','',3916,'https://om7717.dev34.info/?p=3930',0,'revision','',0),(3931,1,'2021-06-23 19:40:06','2021-06-23 19:40:06','<h2>List Your Property</h2>		\n			<h2>List Your Property</h2>		\n			<h2>With Opulence Management</h2>		\n		<p style=\"text-align: center;\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','List Your Property','','inherit','closed','closed','','3916-revision-v1','','','2021-06-23 19:40:06','2021-06-23 19:40:06','',3916,'https://om7717.dev34.info/?p=3931',0,'revision','',0),(3933,1,'2021-06-23 19:46:37','2021-06-23 19:46:37','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-23 19:46:37','2021-06-23 19:46:37','',881,'https://om7717.dev34.info/?p=3933',0,'revision','',0),(3934,1,'2021-06-23 20:07:12','2021-06-23 20:07:12','','Screen Shot 2021-06-23 at 12.49.07 PM','','inherit','open','closed','','screen-shot-2021-06-23-at-12-49-07-pm','','','2021-06-23 20:07:12','2021-06-23 20:07:12','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/Screen-Shot-2021-06-23-at-12.49.07-PM.png',0,'attachment','image/png',0),(3935,1,'2021-06-23 20:07:49','2021-06-23 20:07:49','','Screen Shot 2021-06-23 at 1.01.05 PM','','inherit','open','closed','','screen-shot-2021-06-23-at-1-01-05-pm','','','2021-06-23 20:07:49','2021-06-23 20:07:49','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/Screen-Shot-2021-06-23-at-1.01.05-PM.png',0,'attachment','image/png',0),(3936,1,'2021-06-23 20:09:01','2021-06-23 20:09:01','','Screen Shot 2021-06-23 at 1.08.45 PM','','inherit','open','closed','','screen-shot-2021-06-23-at-1-08-45-pm','','','2021-06-23 20:09:01','2021-06-23 20:09:01','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/Screen-Shot-2021-06-23-at-1.08.45-PM.png',0,'attachment','image/png',0),(3937,1,'2021-06-23 20:11:04','2021-06-23 20:11:04','','vip nightlife','','inherit','open','closed','','vip-nightlife','','','2021-06-23 20:11:04','2021-06-23 20:11:04','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/vip-nightlife.jpeg',0,'attachment','image/jpeg',0),(3938,1,'2021-06-23 20:11:20','2021-06-23 20:11:20','','Shot of a gorgeous and elegant young woman out on a shopping spree','Shot of a gorgeous and elegant young woman out on a shopping spree','inherit','open','closed','','shot-of-a-gorgeous-and-elegant-young-woman-out-on-a-shopping-spree','','','2021-06-23 20:11:20','2021-06-23 20:11:20','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/luxury-shopping.jpeg',0,'attachment','image/jpeg',0),(3939,1,'2021-06-23 20:13:54','2021-06-23 20:13:54','','escalade','','inherit','open','closed','','escalade','','','2021-06-23 20:13:54','2021-06-23 20:13:54','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/escalade.jpeg',0,'attachment','image/jpeg',0),(3940,1,'2021-06-24 05:39:46','2021-06-24 05:39:46','','om','','inherit','open','closed','','om','','','2021-06-24 05:39:46','2021-06-24 05:39:46','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/om.png',0,'attachment','image/png',0),(3942,1,'2021-06-24 05:46:43','2021-06-24 05:46:43','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-24 05:46:43','2021-06-24 05:46:43','',881,'https://om7717.dev34.info/?p=3942',0,'revision','',0),(3943,1,'2021-06-24 05:52:43','2021-06-24 05:52:43','','Screen Shot 2021-06-23 at 12.49.07 PM','','inherit','open','closed','','screen-shot-2021-06-23-at-12-49-07-pm-2','','','2021-06-24 05:52:43','2021-06-24 05:52:43','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/Screen-Shot-2021-06-23-at-12.49.07-PM-1.png',0,'attachment','image/png',0),(3944,1,'2021-06-24 05:53:50','2021-06-24 05:53:50','','Screen Shot 2021-06-23 at 1.08.45 PM','','inherit','open','closed','','screen-shot-2021-06-23-at-1-08-45-pm-2','','','2021-06-24 05:53:50','2021-06-24 05:53:50','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/Screen-Shot-2021-06-23-at-1.08.45-PM-1.png',0,'attachment','image/png',0),(3945,1,'2021-06-24 05:57:42','2021-06-24 05:57:42','','hurrican','','inherit','open','closed','','hurrican','','','2021-06-24 05:57:42','2021-06-24 05:57:42','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/hurrican.jpg',0,'attachment','image/jpeg',0),(3946,1,'2021-06-24 05:59:54','2021-06-24 05:59:54','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>Search By Property Type</h2>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-24 05:59:54','2021-06-24 05:59:54','',881,'https://om7717.dev34.info/?p=3946',0,'revision','',0),(3947,1,'2021-06-24 06:01:01','2021-06-24 06:01:01','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>Search By Property Type</h2>		\n		[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-24 06:01:01','2021-06-24 06:01:01','',881,'https://om7717.dev34.info/?p=3947',0,'revision','',0),(3948,1,'2021-06-24 06:04:03','2021-06-24 06:04:03','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>All Inclusive Services</h2>		\n		[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-24 06:04:03','2021-06-24 06:04:03','',881,'https://om7717.dev34.info/?p=3948',0,'revision','',0),(3949,1,'2021-06-24 06:05:38','2021-06-24 06:05:38','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>All Inclusive Services</h2>		\n		<p>Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class. </p>[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-24 06:05:38','2021-06-24 06:05:38','',881,'https://om7717.dev34.info/?p=3949',0,'revision','',0),(3950,1,'2021-06-24 06:05:47','2021-06-24 06:05:47','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>All Inclusive Services</h2>		\n		<p>Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class. </p>[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-06-24 06:05:47','2021-06-24 06:05:47','',881,'https://om7717.dev34.info/?p=3950',0,'revision','',0),(3951,1,'2021-06-24 15:54:39','2021-06-24 15:54:39','<h2>Contact us</h2>		\n			<h2>Contact Information</h2>		\n					<ul>\n							<li >\n										(424)-567-2106\n									</li>\n								<li >\n										info@opulencemgmt.net\n									</li>\n								<li >\n										Beverly Hills, C.A.\n									</li>\n						</ul>\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n    <input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your email<br />\n    <input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Subject<br />\n    <input type=\"text\" name=\"your-subject\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your message (optional)<br />\n    <textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-invalid=\"false\"></textarea> </label></p>\n<p><input type=\"submit\" value=\"Submit\" /></p>\n</form>','Contact Us','','inherit','closed','closed','','3898-revision-v1','','','2021-06-24 15:54:39','2021-06-24 15:54:39','',3898,'https://om7717.dev34.info/?p=3951',0,'revision','',0),(3952,1,'2021-06-24 15:55:04','2021-06-24 15:55:04','<h2>Contact us</h2>		\n			<h2>Contact Information</h2>		\n					<ul>\n							<li >\n										(424)-567-2106\n									</li>\n								<li >\n										info@opulencemgmt.net\n									</li>\n								<li >\n										Beverly Hills, C.A.\n									</li>\n						</ul>\n										<img width=\"663\" height=\"555\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/om.png\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/om-300x251.png 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/om-538x450.png 538w, https://om7717.dev34.info/wp-content/uploads/2020/06/om.png 663w\" sizes=\"(max-width: 663px) 100vw, 663px\" />											\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f6-o1\" method=\"post\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"6\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.4.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f6-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><label> Your name<br />\n    <input type=\"text\" name=\"your-name\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your email<br />\n    <input type=\"email\" name=\"your-email\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Subject<br />\n    <input type=\"text\" name=\"your-subject\" value=\"\" size=\"40\" aria-required=\"true\" aria-invalid=\"false\" /> </label></p>\n<p><label> Your message (optional)<br />\n    <textarea name=\"your-message\" cols=\"40\" rows=\"10\" aria-invalid=\"false\"></textarea> </label></p>\n<p><input type=\"submit\" value=\"Submit\" /></p>\n</form>','Contact Us','','inherit','closed','closed','','3898-revision-v1','','','2021-06-24 15:55:04','2021-06-24 15:55:04','',3898,'https://om7717.dev34.info/?p=3952',0,'revision','',0),(3953,1,'2021-06-24 15:56:24','2021-06-24 15:56:24','<h2>List Your Property</h2>		\n			<h2>List Your Property</h2>		\n			<h2>With Opulence Management</h2>		\n		<p style=\"text-align: center;\">Thank you for your interest in partnering with Opulence Management. Please complete the form below and a member of our team will be in contact with you within 1 business day. We look forward to speaking to you soon regarding your property.</p>		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. First class properties and service.\"                                                                \n                                    Lincoln Jones                                    Customer','List Your Property','','inherit','closed','closed','','3916-revision-v1','','','2021-06-24 15:56:24','2021-06-24 15:56:24','',3916,'https://om7717.dev34.info/?p=3953',0,'revision','',0),(3954,1,'2021-06-24 15:57:22','2021-06-24 15:57:22','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"https://om7717.dev34.info/list-your-property/\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Home\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Property Search\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					About\n											</a>\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/contact/\">					Contact\n											</a>\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p><p>Access | Terms | Privacy</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-06-24 15:57:22','2021-06-24 15:57:22','',1771,'https://om7717.dev34.info/?p=3954',0,'revision','',0),(3956,1,'2021-07-04 20:04:34','2021-07-04 20:04:34','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"https://om7717.dev34.info/list-your-property/\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Home\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Property Search\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					About\n											</a>\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/contact/\">					Contact\n											</a>\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Terms\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Privacy\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					Access\n											</a>\n									</li>\n						</ul>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-07-04 20:04:34','2021-07-04 20:04:34','',1771,'https://om7717.dev34.info/?p=3956',0,'revision','',0),(3957,1,'2021-07-04 20:05:02','2021-07-04 20:05:02','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"https://om7717.dev34.info/list-your-property/\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Home\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Property Search\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					About\n											</a>\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/contact/\">					Contact\n											</a>\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Terms\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Privacy\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					Access\n											</a>\n									</li>\n						</ul>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-07-04 20:05:02','2021-07-04 20:05:02','',1771,'https://om7717.dev34.info/?p=3957',0,'revision','',0),(3958,1,'2021-07-04 20:05:14','2021-07-04 20:05:14','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"https://om7717.dev34.info/list-your-property/\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Home\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Property Search\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					About\n											</a>\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/contact/\">					Contact\n											</a>\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Terms\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Privacy\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					Access\n											</a>\n									</li>\n						</ul>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-07-04 20:05:14','2021-07-04 20:05:14','',1771,'https://om7717.dev34.info/?p=3958',0,'revision','',0),(3959,1,'2021-07-04 20:05:22','2021-07-04 20:05:22','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"https://om7717.dev34.info/list-your-property/\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Home\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Property Search\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					About\n											</a>\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/contact/\">					Contact\n											</a>\n									</li>\n						</ul>\n		<p>© 2021 Opulent Management. All Rights Reserved.</p>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Terms\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Privacy\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					Access\n											</a>\n									</li>\n						</ul>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-07-04 20:05:22','2021-07-04 20:05:22','',1771,'https://om7717.dev34.info/?p=3959',0,'revision','',0),(3960,1,'2021-07-04 20:06:01','2021-07-04 20:06:01','<p>for clients</p>		\n			<h2>Are you looking for a<br>\ndream vacation home?</h2>		\n		<p>We help you create unforgettable experiences</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore Properties\n					</a>\n			<h2>or</h2>		\n		<p>Home Owners</p>		\n			<h2>Do you want to join<br>\nour network?</h2>		\n		<p>Monetize your properties without the headache of management</p>		\n			<a href=\"https://om7717.dev34.info/list-your-property/\" role=\"button\">\n						Let’s Discuss Details\n					</a>\n			<h2>Contact Us</h2>		\n					<ul>\n							<li >\n					<a href=\"tel:(424)-567-2106\">						\n										(424)-567-2106\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@opulencemgmt.net\">						\n										info@opulencemgmt.net\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Beverly Hills, C.A.\n											</a>\n									</li>\n						</ul>\n										<img width=\"851\" height=\"248\" src=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 851w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-300x87.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14-768x224.jpeg 768w, https://om7717.dev34.info/wp-content/uploads/2020/06/2021-05-14.jpeg 850w\" sizes=\"(max-width: 851px) 100vw, 851px\" />											\n			<h2>Navigation</h2>		\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Home\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Property Search\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					About\n											</a>\n									</li>\n								<li >\n										List Your Home\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/contact/\">					Contact\n											</a>\n									</li>\n						</ul>\n					<ul>\n							<li >\n					<a href=\"https://om7717.dev34.info\">					Terms\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/properties/\">					Privacy\n											</a>\n									</li>\n								<li >\n					<a href=\"https://om7717.dev34.info/about-us/\">					Access\n											</a>\n									</li>\n						</ul>\n		<p style=\"text-align: center;\">© 2021 Opulent Management. All Rights Reserved.</p>','FooterBuilder 3','','inherit','closed','closed','','1771-revision-v1','','','2021-07-04 20:06:01','2021-07-04 20:06:01','',1771,'https://om7717.dev34.info/?p=3960',0,'revision','',0),(3961,1,'2021-07-04 20:49:57','2021-07-04 20:49:57','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>All Inclusive Services</h2>		\n		<p>Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class. </p>[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\"                                                                \n                                    Lincoln Jones                                    Customer','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-07-04 20:49:57','2021-07-04 20:49:57','',881,'https://om7717.dev34.info/?p=3961',0,'revision','',0),(3962,1,'2021-07-04 20:50:25','2021-07-04 20:50:25','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>All Inclusive Services</h2>		\n		<p>Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class. </p>[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\"                                                                \n                                    Lincoln Jones                                    Valued Client','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-07-04 20:50:25','2021-07-04 20:50:25','',881,'https://om7717.dev34.info/?p=3962',0,'revision','',0),(3963,1,'2021-07-05 23:59:34','2021-07-05 23:59:34','','WB Header','','inherit','open','closed','','wb-header','','','2021-07-05 23:59:34','2021-07-05 23:59:34','',0,'https://om7717.dev34.info/wp-content/uploads/2020/06/WB-Header.mp4',0,'attachment','video/mp4',0),(3964,1,'2021-07-06 00:00:15','2021-07-06 00:00:15','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>All Inclusive Services</h2>		\n		<p>Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class. </p>[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\"                                                                \n                                    Lincoln Jones                                    Valued Client','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-07-06 00:00:15','2021-07-06 00:00:15','',881,'https://om7717.dev34.info/?p=3964',0,'revision','',0),(3967,8,'2021-07-13 11:31:57','0000-00-00 00:00:00','','Hyde Beach House','','draft','closed','closed','','','','','2021-07-13 11:31:57','2021-07-13 11:31:57','',0,'https://om7717.dev34.info/?post_type=listing_type&#038;p=3967',0,'listing_type','',0),(3968,8,'2021-07-13 11:31:57','2021-07-13 11:31:57','','Hyde Beach House','','publish','closed','closed','','hyde-beach-house','','','2021-07-13 11:31:57','2021-07-13 11:31:57','',0,'https://om7717.dev34.info/hyde-beach-house/',0,'page','',0),(3969,8,'2021-07-13 11:45:08','2021-07-13 11:45:08','','Residences02','','inherit','open','closed','','residences02','','','2021-07-13 11:45:08','2021-07-13 11:45:08','',3966,'https://om7717.dev34.info/wp-content/uploads/2021/07/Residences02.jpg',0,'attachment','image/jpeg',0),(3970,8,'2021-07-13 11:46:12','2021-07-13 11:46:12','','NGP_0545','','inherit','open','closed','','ngp_0545','','','2021-07-13 11:46:12','2021-07-13 11:46:12','',3966,'https://om7717.dev34.info/wp-content/uploads/2021/07/NGP_0545.jpg',0,'attachment','image/jpeg',0),(3971,8,'2021-07-13 11:46:15','2021-07-13 11:46:15','','NGP_3950','','inherit','open','closed','','ngp_3950','','','2021-07-13 11:46:15','2021-07-13 11:46:15','',3966,'https://om7717.dev34.info/wp-content/uploads/2021/07/NGP_3950.jpg',0,'attachment','image/jpeg',0),(3972,8,'2021-07-13 11:46:20','2021-07-13 11:46:20','','Residences03','','inherit','open','closed','','residences03','','','2021-07-13 11:46:20','2021-07-13 11:46:20','',3966,'https://om7717.dev34.info/wp-content/uploads/2021/07/Residences03.jpg',0,'attachment','image/jpeg',0),(3973,8,'2021-07-13 11:46:24','2021-07-13 11:46:24','','NGP_3982','','inherit','open','closed','','ngp_3982','','','2021-07-13 11:46:24','2021-07-13 11:46:24','',3966,'https://om7717.dev34.info/wp-content/uploads/2021/07/NGP_3982.jpg',0,'attachment','image/jpeg',0),(3975,9,'2021-07-13 23:00:36','2021-07-13 23:00:36','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>All Inclusive Services</h2>		\n		<p>Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class. </p>[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\"                                                                \n                                    Lincoln Jones                                    Valued Client','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-07-13 23:00:36','2021-07-13 23:00:36','',881,'https://om7717.dev34.info/?p=3975',0,'revision','',0),(3977,1,'2021-07-14 20:41:54','2021-07-14 20:41:54','Discover Your 		\n			<h2>Dream Vacation</h2>		\n		<p>Opulence Management Proudly Showcases The Most Exclusive Properties</p>		\n			<a href=\"https://om7717.dev34.info/properties/\" role=\"button\">\n						Explore The Collection\n					</a>\n			<h2>Featured Properties</h2>		\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      18 \n        <a href=\"https://om7717.dev34.info/listing/artist-loft/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/6111_Lindenhurst_Ave_Los_Angeles_90048_0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/artist-loft/\">\n                            ARTIST LOFT                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            2\n                            Beds\n                            1\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      37 \n        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/026-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/bh-mansion/\">\n                            BH MANSION                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      26 \n        <a href=\"https://om7717.dev34.info/listing/casablanca/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/cas3-1-615x445.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/casablanca/\">\n                            CASABLANCA                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            7\n                            Beds\n                            7\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      32 \n        <a href=\"https://om7717.dev34.info/listing/colgate-r/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/06/2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-r/\">\n                            COLGATE R                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h6>Welcome To</h6>		\n			<h2>The World Famous</h2>		\n			<h2>California</h2>		\n		<p>Where the most luxurious homes, incredible experiences and second to none shopping and cuisine awaits you. </p><p>Opulence Management proudly showcases California\'s finest and most exclusive luxury properties. We cater to a high end clientele and offer the most reliable, convenient service in the industry. Our staff will ensure an efficient and first class booking process and ensure you have the vacation stay of a lifetime.</p>		\n					<ul>\n							<li >\n					<a href=\"#\">						\n										Experienced team at your service\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Family friendly properties\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Special requests for our guests\n											</a>\n									</li>\n								<li >\n					<a href=\"#\">						\n										Reliable and quick turnaround on bookings\n											</a>\n									</li>\n						</ul>\n			<a href=\"https://om7717.dev34.info/properties\" role=\"button\">\n						Explore Properties Now\n					</a>\n										<img width=\"1920\" height=\"1280\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-300x200.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1024x683.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-768x512.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-1536x1024.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/beverly-hills-116228_1920-675x450.jpg 675w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"1920\" height=\"1271\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920.jpg 1920w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-300x199.jpg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1024x678.jpg 1024w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-768x508.jpg 768w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-1536x1017.jpg 1536w, https://om7717.dev34.info/wp-content/uploads/2021/05/water-rescue-1657783_1920-680x450.jpg 680w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />											\n										<img width=\"669\" height=\"446\" src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg\" alt=\"\" loading=\"lazy\" srcset=\"https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1-300x200.jpeg 300w, https://om7717.dev34.info/wp-content/uploads/2021/05/hollywood-sign-1.jpeg 669w\" sizes=\"(max-width: 669px) 100vw, 669px\" />											\n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      59 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-508/\">\n                            SWEETZER 508                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      60 \n        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1620974688234.jpeg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sweetzer-510/\">\n                            SWEETZER 510                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            4\n                            Beds\n                            4\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      91 \n        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/0001-2-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/beverly-crest/\">\n                            BEVERLY CREST                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      28 \n        <a href=\"https://om7717.dev34.info/listing/drexel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/33-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/drexel/\">\n                            DREXEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      41 \n        <a href=\"https://om7717.dev34.info/listing/gardner/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/3-2-615x427.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/gardner/\">\n                            GARDNER                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/martel/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/52-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/martel/\">\n                            MARTEL                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            6\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      31 \n        <a href=\"https://om7717.dev34.info/listing/sycamore/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/1-1-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/sycamore/\">\n                            SYCAMORE                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n        <!--Thumbnail-Box-->\n        <!--Thumbnail Top-->\n      46 \n        <a href=\"https://om7717.dev34.info/listing/colgate-z/\"></a><img src=\"https://om7717.dev34.info/wp-content/uploads/2021/05/DZ5A2667-615x450.jpg\" alt=\"Opulence Management\">         <!--Thumbnail Bottom-->\n    <!--Content-Box-->\n            <!--Get Title-->\n                    <h3>\n                        <a href=\"https://om7717.dev34.info/listing/colgate-z/\">\n                            COLGATE Z                        </a>\n                    </h3>\n            <!--Get Attribute Beds,Baths,Area-->\n                            5\n                            Beds\n                            5\n                            Baths\n                          <!--Get Category-->\n            Vacation Rentals        \n			<h2>Search By Property Type</h2>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Town Homes</a></h6>		\n			<h6><a href=\"https://om7717.dev34.info/properties/\">Luxury Condos</a></h6>		\n			<h2>All Inclusive Services</h2>		\n		<p>Click any service below to learn more about our add on services. Opulence Management can make every aspect of your vacation world class. </p>[ess_grid alias=\"home main 1\"]		\n			<h2>The Opulence Management Difference</h2>		\n                    0\n                    %\n                    1 of a Kind Properties                \n                    0\n                    %\n                    First Class Service                \n                    0\n                    %\n                    Customer Satisfaction                \n			<h2>Signup For Our Newsletter</h2>		\n		<p>Be the first to know about exclusive new listings,by subscribing to our newsletter. We never share your information.</p>		\n			<h2>Client Reviews</h2>		\n                                \"We had an incredible time during our vacation. I will only be booking my vacation homes through Opulence Management. They assisted us with reserving a luxury vehicle and helped us coordinate private airfare at the last minute. Absolutely first class properties and world class service.\"                                                                \n                                    Lincoln Jones                                    Valued Client','Home 5','','inherit','closed','closed','','881-revision-v1','','','2021-07-14 20:41:54','2021-07-14 20:41:54','',881,'https://om7717.dev34.info/?p=3977',0,'revision','',0);
/*!40000 ALTER TABLE `wpew_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_term_relationships`
--

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

--
-- Dumping data for table `wpew_term_relationships`
--

LOCK TABLES `wpew_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpew_term_relationships` DISABLE KEYS */;
INSERT INTO `wpew_term_relationships` VALUES (3338,51,0),(57,1,0),(57,7,0),(57,8,0),(57,9,0),(59,1,0),(58,3,0),(58,4,0),(58,5,0),(58,6,0),(59,2,0),(60,1,0),(61,1,0),(62,1,0),(75,10,0),(234,17,0),(326,17,0),(495,12,0),(496,12,0),(497,12,0),(503,10,0),(612,10,0),(613,10,0),(614,10,0),(615,10,0),(698,10,0),(699,10,0),(1591,17,0),(1771,17,0),(2105,10,0),(2127,11,0),(2128,11,0),(2129,11,0),(2130,11,0),(2131,11,0),(2132,11,0),(2133,11,0),(2134,11,0),(2135,11,0),(2136,11,0),(2137,11,0),(2138,11,0),(2139,11,0),(2140,11,0),(2393,19,0),(2475,17,0),(2584,10,0),(2585,10,0),(2638,10,0),(2639,10,0),(2640,10,0),(2641,10,0),(3335,51,0),(2786,14,0),(3225,51,0),(3337,14,0),(3334,14,0),(2788,14,0),(3225,14,0),(3337,51,0),(3895,52,0),(2790,14,0),(3296,51,0),(3336,14,0),(3334,51,0),(2781,14,0),(3263,14,0),(3336,51,0),(3297,14,0),(2779,14,0),(3263,51,0),(3335,14,0),(2769,14,0),(3966,83,0),(3297,51,0),(3296,14,0),(2710,52,0),(2711,52,0),(2713,52,0),(2712,52,0),(2720,14,0),(2720,51,0),(3338,14,0),(2769,51,0),(2784,14,0),(2779,51,0),(2781,51,0),(2784,51,0),(2786,51,0),(2788,51,0),(2790,51,0),(3339,51,0),(3339,14,0),(3340,51,0),(3340,14,0),(3341,51,0),(3341,14,0),(3342,51,0),(3342,14,0),(3343,51,0),(3343,14,0),(3683,51,0),(3683,14,0),(3703,51,0),(3703,14,0),(3741,51,0),(3741,14,0),(3796,19,0),(3799,19,0),(3802,19,0),(3805,19,0),(3808,19,0),(3814,19,0),(3817,19,0),(3884,19,0),(3881,19,0),(3866,19,0),(3887,19,0),(3899,19,0);
/*!40000 ALTER TABLE `wpew_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_term_taxonomy`
--

DROP TABLE IF EXISTS `wpew_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_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_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=84 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_term_taxonomy`
--

LOCK TABLES `wpew_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpew_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpew_term_taxonomy` VALUES (1,1,'category','',0,5),(2,2,'category','',0,1),(3,3,'category','',0,1),(4,4,'category','',0,1),(5,5,'category','',0,1),(6,6,'category','',0,1),(7,7,'post_tag','',0,1),(8,8,'post_tag','',0,1),(9,9,'post_tag','',0,1),(10,10,'nav_menu','',0,15),(11,11,'nav_menu','',0,14),(12,12,'nav_menu','',0,3),(14,14,'listing-region','',0,25),(15,15,'listing-region','',0,0),(16,16,'listing-region','',0,0),(17,17,'elementor_library_type','',0,5),(19,19,'elementor_library_type','',0,13),(21,21,'listing-attribute-options','',0,0),(22,22,'listing-attribute-options','',0,0),(23,23,'listing-attribute-options','',0,0),(24,24,'listing-attribute-options','',0,0),(25,25,'listing-attribute-options','',0,0),(26,26,'listing-attribute-options','',0,0),(27,27,'listing-attribute-options','',0,0),(28,28,'listing-attribute-options','',0,0),(29,29,'listing-attribute-options','',0,0),(30,30,'listing-attribute-options','',0,0),(31,31,'listing-attribute-options','',0,0),(32,32,'listing-attribute-options','',0,0),(33,33,'listing-attribute-options','',0,0),(34,34,'listing-attribute-options','',0,0),(35,35,'listing-attribute-options','',0,0),(36,36,'listing-attribute-options','',0,0),(37,37,'listing-attribute-options','',0,0),(38,38,'listing-attribute-options','',0,0),(39,39,'listing-attribute-options','',0,0),(40,40,'listing-attribute-options','',0,0),(41,41,'listing-attribute-options','',0,0),(42,42,'listing-attribute-options','',0,0),(43,43,'listing-attribute-options','',0,0),(44,44,'listing-attribute-options','',0,0),(45,45,'listing-attribute-options','',0,0),(46,46,'listing-attribute-options','',0,0),(47,47,'listing-attribute-options','',0,0),(48,48,'listing-attribute-options','',0,0),(49,49,'listing-attribute-options','',0,0),(50,50,'listing-attribute-options','',0,0),(55,55,'listing-attribute-options','',0,0),(54,54,'listing-attribute-options','',0,0),(53,53,'listing-attribute-options','',0,0),(60,60,'listing-attribute-options','',0,0),(51,51,'listing-category','',0,25),(52,52,'nav_menu','',0,5),(56,56,'listing-attribute-options','',0,0),(57,57,'listing-attribute-options','',0,0),(58,58,'listing-attribute-options','',0,0),(59,59,'listing-attribute-options','',0,0),(61,61,'listing-attribute-options','',0,0),(62,62,'listing-attribute-options','',0,0),(63,63,'listing-attribute-options','',0,0),(71,71,'listing-attribute-options','',0,0),(65,65,'listing-attribute-options','',0,0),(69,69,'listing-attribute-options','',0,0),(67,67,'listing-attribute-options','',0,0),(70,70,'listing-attribute-options','',0,0),(72,72,'listing-attribute-options','',0,0),(73,73,'listing-attribute-options','',0,0),(74,74,'listing-attribute-options','',0,0),(75,75,'listing-attribute-options','',0,0),(76,76,'listing-attribute-options','',0,0),(77,77,'listing-attribute-options','',0,0),(78,78,'listing-attribute-options','',0,0),(79,79,'listing-attribute-options','',0,0),(80,80,'listing-attribute-options','',0,0),(81,81,'listing-attribute-options','',0,0),(82,82,'listing-attribute-options','',0,0),(83,83,'listing-category','',0,1);
/*!40000 ALTER TABLE `wpew_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_termmeta`
--

DROP TABLE IF EXISTS `wpew_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_termmeta`
--

LOCK TABLES `wpew_termmeta` WRITE;
/*!40000 ALTER TABLE `wpew_termmeta` DISABLE KEYS */;
INSERT INTO `wpew_termmeta` VALUES (1,21,'listing-attribute-options-icon','rentex-icon-check-square'),(2,22,'listing-attribute-options-icon','rentex-icon-check-square'),(3,23,'listing-attribute-options-icon','rentex-icon-check-square'),(4,24,'listing-attribute-options-icon','rentex-icon-check-square'),(5,25,'listing-attribute-options-icon','rentex-icon-check-square'),(6,26,'listing-attribute-options-icon','rentex-icon-check-square'),(7,27,'listing-attribute-options-icon','rentex-icon-check-square'),(8,28,'listing-attribute-options-icon','rentex-icon-check-square'),(9,29,'listing-attribute-options-icon','rentex-icon-check-square'),(10,30,'listing-attribute-options-icon','rentex-icon-check-square'),(11,31,'listing-attribute-options-icon','rentex-icon-check-square'),(12,32,'listing-attribute-options-icon','rentex-icon-check-square'),(13,33,'listing-attribute-options-icon','rentex-icon-bed'),(14,34,'listing-attribute-options-icon','rentex-icon-bed'),(15,35,'listing-attribute-options-icon','rentex-icon-bed'),(16,36,'listing-attribute-options-icon','rentex-icon-bed'),(17,37,'listing-attribute-options-icon','rentex-icon-bed'),(18,38,'listing-attribute-options-icon','rentex-icon-bed'),(19,39,'listing-attribute-options-icon','rentex-icon-bath'),(20,40,'listing-attribute-options-icon','rentex-icon-bath'),(21,41,'listing-attribute-options-icon','rentex-icon-bath'),(22,42,'listing-attribute-options-icon','rentex-icon-bath'),(23,43,'listing-attribute-options-icon','rentex-icon-bath'),(24,44,'listing-attribute-options-icon','rentex-icon-bath'),(25,45,'listing-attribute-options-icon','rentex-icon-bath'),(26,46,'listing-attribute-options-icon','rentex-icon-bath'),(27,47,'listing-attribute-options-icon','rentex-icon-bath'),(28,48,'listing-attribute-options-icon','rentex-icon-bath'),(29,49,'listing-attribute-options-icon','rentex-icon-bath'),(30,50,'listing-attribute-options-icon','rentex-icon-bath'),(36,55,'listing-attribute-options-icon',''),(35,54,'listing-attribute-options-icon',''),(34,53,'listing-attribute-options-icon',''),(37,56,'listing-attribute-options-icon',''),(38,57,'listing-attribute-options-icon',''),(39,58,'listing-attribute-options-icon',''),(40,59,'listing-attribute-options-icon',''),(41,60,'listing-attribute-options-icon',''),(42,61,'listing-attribute-options-icon',''),(43,62,'listing-attribute-options-icon',''),(44,63,'listing-attribute-options-icon',''),(52,71,'listing-attribute-options-icon',''),(46,65,'listing-attribute-options-icon',''),(50,69,'listing-attribute-options-icon',''),(48,67,'listing-attribute-options-icon',''),(51,70,'listing-attribute-options-icon',''),(53,72,'listing-attribute-options-icon',''),(54,73,'listing-attribute-options-icon',''),(55,74,'listing-attribute-options-icon',''),(56,75,'listing-attribute-options-icon',''),(57,76,'listing-attribute-options-icon',''),(58,77,'listing-attribute-options-icon',''),(59,78,'listing-attribute-options-icon',''),(60,79,'listing-attribute-options-icon',''),(61,80,'listing-attribute-options-icon',''),(62,81,'listing-attribute-options-icon',''),(63,82,'listing-attribute-options-icon','');
/*!40000 ALTER TABLE `wpew_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_terms`
--

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

--
-- Dumping data for table `wpew_terms`
--

LOCK TABLES `wpew_terms` WRITE;
/*!40000 ALTER TABLE `wpew_terms` DISABLE KEYS */;
INSERT INTO `wpew_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Company insights','company-insights',0),(3,'Industry Insights','industry-insights',0),(4,'Multimedia Insights','multimedia-insights',0),(5,'Partner insights','partner-insights',0),(6,'Services Insights','services-insights',0),(7,'listing','listing',0),(8,'opal','opal',0),(9,'rentex','rentex',0),(10,'Main Menu','main-menu',0),(11,'Optima Express','optima-express',0),(12,'Topbar','topbar',0),(55,'6.5','bathrooms-6-5',0),(14,'California','california',0),(15,'Las Vegas','las-vegas',0),(16,'New York','newyork',0),(17,'page','page',0),(54,'5.5','bathrooms-5-5',0),(19,'section','section',0),(53,'4.5','bathrooms-4-5',0),(21,'Air Conditioning','air-conditioning-1',0),(22,'Buil-In Wardrobes','buil-in-wardrobes-1',0),(23,'Clinic','clinic-1',0),(24,'Dishwasher','dishwasher-1',0),(25,'Fencing','fencing-1',0),(26,'Floor Coverings','floor-coverings-1',0),(27,'Internet','internet-1',0),(28,'Park','park-1',0),(29,'School','school-1',0),(30,'Supermarket/Store','supermarket-store-1',0),(31,'Swimming Pool','swimming-pool',0),(32,'Transportation Hub','transportation-hub-1',0),(33,'1','bedrooms-1',0),(34,'2','bedrooms-2',0),(35,'3','bedrooms-3',0),(36,'4','bedrooms-4',0),(37,'5','bedrooms-5',0),(38,'6','bedrooms-6',0),(39,'1','bathrooms-1',0),(40,'2','bathrooms-2',0),(41,'3','bathrooms-3',0),(42,'4','bathrooms-4',0),(43,'5','bathrooms-5',0),(44,'6','bathrooms-6',0),(45,'1','garages-1',0),(46,'2','garages-2',0),(47,'3','garages-3',0),(48,'4','garages-4',0),(49,'5','garages-5',0),(50,'6','garages-6',0),(51,'Vacation Rentals','vacation-rentals',0),(52,'Main Updated 1','main-updated-1',0),(56,'7','bathrooms-7',0),(57,'7.5','bathrooms-7-5',0),(58,'8','bathrooms-8',0),(59,'8.5','bathrooms-8-5',0),(60,'1','guest-1',0),(61,'2','guest-2',0),(62,'3','guest-3',0),(63,'4','guest-4',0),(71,'9','guest-9',0),(65,'5','guest-5',0),(69,'7','guest-7',0),(67,'6','guest-6',0),(70,'8','guest-8',0),(72,'10','guest-10',0),(73,'11','guest-11',0),(74,'12','guest-12',0),(75,'13','guest-13',0),(76,'14','guest-14',0),(77,'15','guest-15',0),(78,'16','guest-16',0),(79,'7','bathroom-7',0),(80,'8','bathroom-8',0),(81,'7','bedrooms-7',0),(82,'8','bedrooms-8',0),(83,'Hyde Beach House','hyde-beach-house',0);
/*!40000 ALTER TABLE `wpew_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_ulisting_attribute`
--

DROP TABLE IF EXISTS `wpew_ulisting_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_attribute` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `affix` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `icon` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `thumbnail_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ulisting_attribute_name_index` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_attribute`
--

LOCK TABLES `wpew_ulisting_attribute` WRITE;
/*!40000 ALTER TABLE `wpew_ulisting_attribute` DISABLE KEYS */;
INSERT INTO `wpew_ulisting_attribute` VALUES (1,'Description','description','wp_editor','','',0),(2,'Location','location','location','','fa fa-map-marker',0),(3,'Price','price','price','','fa fa-money',0),(4,'Rooms','rooms','number','',NULL,0),(5,'Gallery','gallery','gallery','','fa fa-image',0),(6,'Virtual Tour','virtual_tour','wp_editor','','fa fa-video-camera',0),(7,'Floor Plans','floor_plans','accordion','','',NULL),(8,'Plot size','plot_size','text','','',NULL),(9,'Livingrooms','livingrooms','number','','',NULL),(10,'Kitchens','kitchens','number','','',NULL),(11,'Orienten','orienten','text','','',NULL),(12,'Amenities','amenities','multiselect','','rentex-icon-check-square',0),(13,'Type','type','text','','',NULL),(14,'Year Built','year_built','text','Year build','rentex-icon-year',0),(15,'Video','video','text','','fa fa-video-camera',0),(16,'Bedrooms','bedrooms','select','Beds','rentex-icon-bed',0),(17,'Bathrooms','bathrooms','select','Baths','rentex-icon-bath',0),(18,'Garages','garages','select','Garage','rentex-icon-garage',0),(19,'Area','area','number','Sqft','rentex-icon-sqft',0),(21,'Guest','guest','select','','fa fa-user',0);
/*!40000 ALTER TABLE `wpew_ulisting_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_ulisting_attribute_relationsh_meta`
--

DROP TABLE IF EXISTS `wpew_ulisting_attribute_relationsh_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_attribute_relationsh_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `relations_id` bigint(20) NOT NULL,
  `meta_key` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `attribute_relationsh_meta_relations_id_index` (`relations_id`)
) ENGINE=MyISAM AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_attribute_relationsh_meta`
--

LOCK TABLES `wpew_ulisting_attribute_relationsh_meta` WRITE;
/*!40000 ALTER TABLE `wpew_ulisting_attribute_relationsh_meta` DISABLE KEYS */;
INSERT INTO `wpew_ulisting_attribute_relationsh_meta` VALUES (1,15,'genuine','4700'),(2,56,'genuine','4900'),(3,97,'genuine','5000'),(4,138,'genuine','1600'),(5,179,'genuine','2100'),(6,220,'genuine','2900'),(7,97,'sale',''),(8,97,'suffix',''),(9,257,'genuine',''),(10,257,'sale',''),(11,257,'suffix',''),(12,278,'genuine',''),(13,278,'sale',''),(14,278,'suffix',''),(15,467,'genuine',''),(16,467,'sale',''),(17,467,'suffix',''),(18,570,'genuine',''),(19,570,'sale',''),(20,570,'suffix',''),(75,1533,'genuine',''),(21,614,'genuine',''),(22,614,'sale',''),(23,614,'suffix',''),(24,672,'genuine',''),(25,672,'sale',''),(26,672,'suffix',''),(27,715,'genuine',''),(28,715,'sale',''),(29,715,'suffix',''),(30,773,'genuine',''),(31,773,'sale',''),(32,773,'suffix',''),(33,871,'genuine',''),(34,871,'sale',''),(35,871,'suffix',''),(36,923,'genuine',''),(37,923,'sale',''),(38,923,'suffix',''),(39,972,'genuine',''),(40,972,'sale',''),(41,972,'suffix',''),(42,1028,'genuine',''),(43,1028,'sale',''),(44,1028,'suffix',''),(45,1063,'genuine',''),(46,1063,'sale',''),(47,1063,'suffix',''),(48,1097,'genuine',''),(49,1097,'sale',''),(50,1097,'suffix',''),(51,1142,'genuine',''),(52,1142,'sale',''),(53,1142,'suffix',''),(54,1236,'genuine',''),(55,1236,'sale',''),(56,1236,'suffix',''),(57,1295,'genuine',''),(58,1295,'sale',''),(59,1295,'suffix',''),(60,1333,'genuine',''),(61,1333,'sale',''),(62,1333,'suffix',''),(63,1376,'genuine',''),(64,1376,'sale',''),(65,1376,'suffix',''),(66,1416,'genuine',''),(67,1416,'sale',''),(68,1416,'suffix',''),(69,1432,'genuine',''),(70,1432,'sale',''),(71,1432,'suffix',''),(72,1467,'genuine',''),(73,1467,'sale',''),(74,1467,'suffix',''),(76,1533,'sale',''),(77,1533,'suffix',''),(78,1569,'genuine',''),(79,1569,'sale',''),(80,1569,'suffix',''),(81,1621,'genuine',''),(82,1621,'sale',''),(83,1621,'suffix',''),(84,1754,'genuine',''),(85,1754,'sale',''),(86,1754,'suffix','');
/*!40000 ALTER TABLE `wpew_ulisting_attribute_relationsh_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_ulisting_attribute_term_relationships`
--

DROP TABLE IF EXISTS `wpew_ulisting_attribute_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_attribute_term_relationships` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `attribute_id` int(11) NOT NULL,
  `term_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `attribute_term_relationships_attribute_id_index` (`attribute_id`),
  KEY `attribute_term_relationships_term_id_index` (`term_id`)
) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_attribute_term_relationships`
--

LOCK TABLES `wpew_ulisting_attribute_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpew_ulisting_attribute_term_relationships` DISABLE KEYS */;
INSERT INTO `wpew_ulisting_attribute_term_relationships` VALUES (1,12,21),(2,12,22),(3,12,23),(4,12,24),(5,12,25),(6,12,26),(7,12,27),(8,12,28),(9,12,29),(10,12,30),(11,12,31),(12,12,32),(13,16,33),(14,16,34),(15,16,35),(16,16,36),(17,16,37),(18,16,38),(19,17,39),(20,17,40),(21,17,41),(22,17,42),(23,17,43),(24,17,44),(25,18,45),(26,18,46),(27,18,47),(28,18,48),(29,18,49),(30,18,50),(31,0,53),(32,0,54),(33,0,55),(34,0,56),(35,0,57),(36,0,58),(37,0,59),(38,21,60),(39,21,61),(40,21,62),(41,21,63),(49,21,71),(43,21,65),(47,21,69),(45,21,67),(48,21,70),(50,21,72),(51,21,73),(52,21,74),(53,21,75),(54,21,76),(55,21,77),(56,21,78),(57,17,79),(58,17,80),(59,16,81),(60,16,82);
/*!40000 ALTER TABLE `wpew_ulisting_attribute_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_ulisting_listing_attribute_relationships`
--

DROP TABLE IF EXISTS `wpew_ulisting_listing_attribute_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_listing_attribute_relationships` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `listing_id` bigint(20) unsigned NOT NULL,
  `attribute` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `sort` int(5) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `listing_attribute_relationships_listing_id_index` (`listing_id`),
  KEY `listing_attribute_relationships_attribute_index` (`attribute`),
  KEY `listing_attribute_relationships_value_index` (`value`(50))
) ENGINE=MyISAM AUTO_INCREMENT=1785 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_listing_attribute_relationships`
--

LOCK TABLES `wpew_ulisting_listing_attribute_relationships` WRITE;
/*!40000 ALTER TABLE `wpew_ulisting_listing_attribute_relationships` DISABLE KEYS */;
INSERT INTO `wpew_ulisting_listing_attribute_relationships` VALUES (930,3263,'gallery','3270',7),(929,3263,'gallery','3269',6),(928,3263,'gallery','3268',5),(927,3263,'gallery','3267',4),(926,3263,'gallery','3266',3),(925,3263,'gallery','3265',2),(921,3263,'latitude','0',1),(922,3263,'longitude','0',1),(923,3263,'price','',1),(924,3263,'gallery','3264',1),(920,3263,'postal_code','90048',1),(919,3263,'address','6546 Colgate Ave., Los Angeles, CA ',1),(1056,3334,'label_text','',1),(918,3263,'description','This two-story modern masterpiece was constructed in 2017 and features all of the \"Must haves\" of today. The open concept lower level is highlighted with the floor to ceiling pocket doors that allows true indoor/outdoor living. Enjoy your state of the art kitchen with high end stainless steel appliances and large center island with stone countertops. The downstairs opens to the backyard area, where you are able to relax in the back house while guests take a swim in the heated pool. One bedroom with en-suite is downstairs, with three more bedrooms upstairs. The oversized main bedroom has an expansive walk in closet along with its own private outdoor space overlooking the pool area. The most magnificent part of the property is the rooftop deck that has 360 degree city views.',1),(1057,3334,'label_color','',1),(913,3225,'guest','74',1),(912,3225,'bathrooms','43',1),(911,3225,'bedrooms','37',1),(910,3225,'year_built','',1),(909,3225,'type','',1),(908,3225,'gallery','3262',37),(907,3225,'gallery','3261',36),(906,3225,'gallery','3260',35),(905,3225,'gallery','3259',34),(904,3225,'gallery','3258',33),(903,3225,'gallery','3257',32),(902,3225,'gallery','3256',31),(901,3225,'gallery','3255',30),(900,3225,'gallery','3254',29),(899,3225,'gallery','3253',28),(898,3225,'gallery','3252',27),(897,3225,'gallery','3251',26),(896,3225,'gallery','3250',25),(895,3225,'gallery','3249',24),(894,3225,'gallery','3248',23),(893,3225,'gallery','3247',22),(892,3225,'gallery','3246',21),(891,3225,'gallery','3245',20),(890,3225,'gallery','3244',19),(889,3225,'gallery','3243',18),(885,3225,'gallery','3239',14),(886,3225,'gallery','3240',15),(887,3225,'gallery','3241',16),(888,3225,'gallery','3242',17),(884,3225,'gallery','3238',13),(883,3225,'gallery','3237',12),(882,3225,'gallery','3236',11),(881,3225,'gallery','3235',10),(880,3225,'gallery','3234',9),(879,3225,'gallery','3233',8),(878,3225,'gallery','3232',7),(877,3225,'gallery','3231',6),(876,3225,'gallery','3230',5),(875,3225,'gallery','3229',4),(874,3225,'gallery','3228',3),(873,3225,'gallery','3227',2),(872,3225,'gallery','3226',1),(871,3225,'price','',1),(870,3225,'longitude','0',1),(869,3225,'latitude','0',1),(868,3225,'postal_code','90049',1),(867,3225,'address','543 Moreno Ave., Los Angeles, CA 90049',1),(866,3225,'description','Ideally located on one of the most sought-after streets in all of Brentwood. Ideal for sheltering in place with stunning grounds, nearly 16,000 sq ft, complete with a sparkling pool and spa with separate bathroom, largerassy yard, tree-house, outdoor fireplace, built-in BBO, basketball hoop, motor court and 3-car garage. Updated kitchen With top of the line appliances. Light abounds in the family room that opens to an outdoor dining area overlooking the pool. The desirable floor plan has 4 bedrooms up, including a master suite with two separate bathrooms and walk-in closets. The 5th bedroom with its en-suite bath is on the ground level, could be used as an office to work from home. Convenient to Brentwood country club, Brentwood country mart and numerous local restaurants and shops. Excellent walk score.',1),(1726,3296,'label_color','',1),(861,2720,'guest','60',1),(1768,2779,'label_color','',1),(1767,2779,'label_text','',1),(1775,2786,'label_text','',1),(1783,3263,'label_text','',1),(1784,3263,'label_color','',1),(1012,3297,'guest','74',1),(1011,3297,'bathrooms','43',1),(1010,3297,'bedrooms','37',1),(1009,3297,'year_built','',1),(1005,3297,'gallery','3330',33),(1004,3297,'gallery','3329',32),(1003,3297,'gallery','3328',31),(1002,3297,'gallery','3327',30),(1001,3297,'gallery','3326',29),(1000,3297,'gallery','3325',28),(996,3297,'gallery','3321',24),(997,3297,'gallery','3322',25),(998,3297,'gallery','3323',26),(999,3297,'gallery','3324',27),(995,3297,'gallery','3320',23),(994,3297,'gallery','3319',22),(993,3297,'gallery','3318',21),(992,3297,'gallery','3317',20),(991,3297,'gallery','3316',19),(990,3297,'gallery','3315',18),(989,3297,'gallery','3314',17),(988,3297,'gallery','3313',16),(987,3297,'gallery','3312',15),(986,3297,'gallery','3311',14),(985,3297,'gallery','3310',13),(984,3297,'gallery','3309',12),(983,3297,'gallery','3308',11),(982,3297,'gallery','3307',10),(981,3297,'gallery','3306',9),(980,3297,'gallery','3305',8),(979,3297,'gallery','3304',7),(978,3297,'gallery','3303',6),(977,3297,'gallery','3302',5),(976,3297,'gallery','3301',4),(975,3297,'gallery','3300',3),(974,3297,'gallery','3299',2),(973,3297,'gallery','3298',1),(972,3297,'price','',1),(971,3297,'longitude','0',1),(970,3297,'latitude','0',1),(969,3297,'postal_code','90048',1),(968,3297,'address','6360 Maryland Ave., Los Angeles, CA 90048',1),(967,3297,'description','Exceptional newer modern home w/4 BD\'s &amp; 4.5 BAs on tree-lined st in desirable Beverly-Grove area. This home is flooded w/light, wide plank hrdwd firs, soaring ceilings & glassenclosed wine rm. The expansive formal LR & DR combo has FP, wet bar & side terrace. Enter family rm w/FP that opens to kitch. Nano bi-folding drs span across entire back of home providing the perfect indoor-outdoor space for entertaining. Lush pvt resort-like backyard outfitted w/sparkling pool, spa, lounge area, fire pit &outdoor kitch. The chef\'s kitch inside feats Miele appliances, dual ovens, built in coffee maker & lg island. With 1 ensuite BD & guest BA downstairs, the 2nd story feats 2 guest BD w/patios, their own BA\'s, lg den/kids play area & master. All upstairs bedrms\' patios & terraces feat Nano Bi-folding drs. Master has double drs that lead to alg rm, pvt terrace, FP, walk-in closet, spa-like bath w/soaking tub. This RARE high-tech smart home is minutes to city\'s best dining & entertainment.',1),(1781,3225,'label_text','',1),(1782,3225,'label_color','',1),(959,3263,'bathrooms','42',1),(960,3263,'guest','67',1),(958,3263,'bedrooms','36',1),(957,3263,'year_built','',1),(956,3263,'type','',1),(955,3263,'gallery','3295',32),(954,3263,'gallery','3294',31),(953,3263,'gallery','3293',30),(952,3263,'gallery','3292',29),(951,3263,'gallery','3291',28),(950,3263,'gallery','3290',27),(949,3263,'gallery','3289',26),(948,3263,'gallery','3288',25),(947,3263,'gallery','3287',24),(946,3263,'gallery','3286',23),(945,3263,'gallery','3285',22),(944,3263,'gallery','3284',21),(943,3263,'gallery','3283',20),(942,3263,'gallery','3282',19),(941,3263,'gallery','3281',18),(940,3263,'gallery','3280',17),(939,3263,'gallery','3279',16),(938,3263,'gallery','3278',15),(937,3263,'gallery','3277',14),(936,3263,'gallery','3276',13),(935,3263,'gallery','3275',12),(934,3263,'gallery','3274',11),(933,3263,'gallery','3273',10),(932,3263,'gallery','3272',9),(931,3263,'gallery','3271',8),(1025,3296,'postal_code','90046',1),(1024,3296,'address','6111 Lindenhurst Ave., Los Angeles, CA 90046',1),(1023,3296,'description','Creative Artist loft, 2 bedroom, 1 bath, out door space, great work space, walking distance to shops &amp; restaurants.',1),(1008,3297,'type','',1),(1007,3297,'gallery','3332',35),(1006,3297,'gallery','3331',34),(1776,2786,'label_color','',1),(252,2720,'description','This new modern construction home beams with natural light. It is strikingly fully-furnished in contemporary style and includes 2 master suites and 2 secondary bedrooms, totaling 4 bedrooms. The main floor has a spacious open floor plan catering to your daily needs and serves well for entertaining family and friends. The open living spaces leads to an outdoor patio with spa and dipping pool. Leading up to the second floor you can relax in the luxurious master suite and en suite bedrooms. This includes a laundry room that conveniently services all bedrooms throughout. Take the elevator to the top floor to find yourself serenity where there is a secluded master bedroom, family room with private sundeck and fire pit. Great for a romantic settings and peace of mind. Located in one of West Hollywood\'s most sought areas you will be minutes from the finest shopping, dining, nightlife, and celebrated destinations. It also includes three parking spots.\r\n\r\n2 master suites\r\n4 king beds\r\nDipping pool\r\n3 patio with fire pits\r\n1 rooftop Spa with shower & bathtub.\r\nElevator\r\nGarage',1),(253,2720,'address','',1),(254,2720,'postal_code','0',1),(255,2720,'latitude','0',1),(256,2720,'longitude','0',1),(257,2720,'price','',1),(483,2779,'gallery','2927',16),(482,2779,'gallery','2926',15),(481,2779,'gallery','2925',14),(264,2720,'type','',1),(265,2720,'year_built','',1),(480,2779,'gallery','2924',13),(267,2720,'bedrooms','36',1),(268,2720,'bathrooms','42',1),(479,2779,'gallery','2923',12),(404,2720,'gallery','2774',4),(273,2769,'description','This new modern construction home beams with natural light. It is strikingly fully-furnished in contemporary style and includes 2 master suites and 2 secondary bedrooms, totaling 4 bedrooms. The main floor has a spacious open floor plan catering to your daily needs and serves well for entertaining family and friends. The open living spaces leads to an outdoor patio with spa and dipping pool. Leading up to the second floor you can relax in the luxurious master suite and en suite bedrooms. This includes a laundry room that conveniently services all bedrooms throughout. Take the elevator to the top floor to find yourself serenity where there is a secluded master bedroom, family room with private sundeck and fire pit. Great for a romantic settings and peace of mind. Located in one of West Hollywood\'s most sought areas you will be minutes from the finest shopping, dining, nightlife, and celebrated destinations. It also includes three parking spots.\r\n\r\n2 master suites\r\n4 king beds\r\nDipping pool\r\n3 patio with fire pits\r\n1 rooftop Spa with shower & bathtub.\r\nElevator\r\nGarage',1),(274,2769,'address','',1),(275,2769,'postal_code','0',1),(276,2769,'latitude','0',1),(277,2769,'longitude','0',1),(278,2769,'price','',1),(403,2720,'gallery','2771',3),(280,2769,'gallery','2770',60),(402,2720,'gallery','2773',2),(401,2720,'gallery','2772',1),(1772,2784,'label_color','',1),(286,2769,'type','',1),(287,2769,'year_built','',1),(289,2769,'bedrooms','36',1),(290,2769,'bathrooms','42',1),(1771,2784,'label_text','',1),(478,2779,'gallery','2922',11),(477,2779,'gallery','2921',10),(476,2779,'gallery','2920',9),(475,2779,'gallery','2919',8),(474,2779,'gallery','2918',7),(473,2779,'gallery','2917',6),(472,2779,'gallery','2916',5),(471,2779,'gallery','2914',4),(470,2779,'gallery','2913',3),(469,2779,'gallery','2912',2),(468,2779,'gallery','2911',1),(467,2779,'price','',1),(466,2779,'longitude','0',1),(465,2779,'latitude','0',1),(464,2779,'postal_code','0',1),(463,2779,'address','',1),(462,2779,'description','Architectural masterpiece in lower BHPO. Seamless open floor plan. Walls of glass open to multiple patios ideal for entertaining large or small groups. Chefs kitchen has miele appliances and breakfast bar with seating for six. Master suite is the ultimate retreat, spanning one entire level of the home. Spacious master bath overlooks verdant canyon views. Two-story rooftop deck features jaw-dropping views, fully equipped kitchen with BBQ and multiple lounge areas for dining and entertaining. Upper level boasts a one of a kind oasis with infinity pool. Three additional en-suite bedrooms with views and a lower level lounge with wet bar complete this exceptional home. Moments from amazing shopping and restaurants.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n4 king bed\r\n1 queen bed',1),(1773,2781,'label_text','',1),(340,2769,'gallery','2835',1),(341,2769,'gallery','2836',2),(342,2769,'gallery','2837',3),(343,2769,'gallery','2838',4),(344,2769,'gallery','2840',5),(345,2769,'gallery','2842',6),(346,2769,'gallery','2843',7),(347,2769,'gallery','2844',8),(348,2769,'gallery','2845',9),(349,2769,'gallery','2846',10),(350,2769,'gallery','2847',11),(351,2769,'gallery','2848',12),(352,2769,'gallery','2849',13),(353,2769,'gallery','2850',14),(354,2769,'gallery','2851',15),(355,2769,'gallery','2852',16),(356,2769,'gallery','2853',17),(357,2769,'gallery','2854',18),(358,2769,'gallery','2855',19),(359,2769,'gallery','2856',20),(360,2769,'gallery','2857',21),(361,2769,'gallery','2858',22),(362,2769,'gallery','2859',23),(363,2769,'gallery','2860',24),(364,2769,'gallery','2861',25),(365,2769,'gallery','2862',26),(366,2769,'gallery','2863',27),(367,2769,'gallery','2864',28),(368,2769,'gallery','2866',29),(369,2769,'gallery','2867',30),(370,2769,'gallery','2868',31),(371,2769,'gallery','2869',32),(372,2769,'gallery','2870',33),(373,2769,'gallery','2871',34),(374,2769,'gallery','2872',35),(375,2769,'gallery','2873',36),(376,2769,'gallery','2874',37),(377,2769,'gallery','2875',38),(378,2769,'gallery','2876',39),(379,2769,'gallery','2877',40),(380,2769,'gallery','2878',41),(381,2769,'gallery','2879',42),(382,2769,'gallery','2880',43),(383,2769,'gallery','2881',44),(384,2769,'gallery','2882',45),(385,2769,'gallery','2883',46),(386,2769,'gallery','2885',47),(387,2769,'gallery','2886',48),(388,2769,'gallery','2887',49),(389,2769,'gallery','2888',50),(390,2769,'gallery','2889',51),(391,2769,'gallery','2890',52),(392,2769,'gallery','2891',53),(393,2769,'gallery','2892',54),(394,2769,'gallery','2893',55),(395,2769,'gallery','2894',56),(396,2769,'gallery','2895',57),(397,2769,'gallery','2896',58),(398,2769,'gallery','2897',59),(405,2720,'gallery','2775',5),(406,2720,'gallery','2776',6),(407,2720,'gallery','2777',7),(408,2720,'gallery','2778',8),(409,2720,'gallery','2780',9),(410,2720,'gallery','2782',10),(411,2720,'gallery','2783',11),(412,2720,'gallery','2785',12),(413,2720,'gallery','2787',13),(414,2720,'gallery','2789',14),(415,2720,'gallery','2791',15),(416,2720,'gallery','2792',16),(417,2720,'gallery','2793',17),(418,2720,'gallery','2794',18),(419,2720,'gallery','2795',19),(420,2720,'gallery','2796',20),(421,2720,'gallery','2797',21),(422,2720,'gallery','2798',22),(423,2720,'gallery','2799',23),(424,2720,'gallery','2800',24),(425,2720,'gallery','2801',25),(426,2720,'gallery','2803',26),(427,2720,'gallery','2804',27),(428,2720,'gallery','2805',28),(429,2720,'gallery','2806',29),(430,2720,'gallery','2807',30),(431,2720,'gallery','2808',31),(432,2720,'gallery','2809',32),(433,2720,'gallery','2810',33),(434,2720,'gallery','2811',34),(435,2720,'gallery','2812',35),(436,2720,'gallery','2813',36),(437,2720,'gallery','2814',37),(438,2720,'gallery','2815',38),(439,2720,'gallery','2816',39),(440,2720,'gallery','2817',40),(441,2720,'gallery','2818',41),(442,2720,'gallery','2819',42),(443,2720,'gallery','2820',43),(444,2720,'gallery','2821',44),(445,2720,'gallery','2822',45),(446,2720,'gallery','2823',46),(447,2720,'gallery','2824',47),(448,2720,'gallery','2825',48),(449,2720,'gallery','2826',49),(450,2720,'gallery','2827',50),(451,2720,'gallery','2828',51),(452,2720,'gallery','2829',52),(453,2720,'gallery','2831',53),(454,2720,'gallery','2832',54),(455,2720,'gallery','2833',55),(456,2720,'gallery','2838',56),(457,2720,'gallery','2837',57),(458,2720,'gallery','2836',58),(459,2720,'gallery','2835',59),(484,2779,'gallery','2928',17),(485,2779,'gallery','2929',18),(486,2779,'gallery','2930',19),(487,2779,'gallery','2931',20),(488,2779,'gallery','2932',21),(489,2779,'gallery','2933',22),(490,2779,'gallery','2934',23),(491,2779,'gallery','2935',24),(492,2779,'gallery','2936',25),(493,2779,'gallery','2937',26),(494,2779,'gallery','2938',27),(495,2779,'gallery','2939',28),(496,2779,'gallery','2940',29),(497,2779,'gallery','2941',30),(498,2779,'gallery','2942',31),(499,2779,'gallery','2943',32),(500,2779,'gallery','2944',33),(501,2779,'gallery','2945',34),(502,2779,'gallery','2946',35),(503,2779,'gallery','2947',36),(504,2779,'gallery','2948',37),(505,2779,'gallery','2949',38),(506,2779,'gallery','2950',39),(507,2779,'gallery','2951',40),(508,2779,'gallery','2952',41),(509,2779,'gallery','2953',42),(510,2779,'gallery','2954',43),(511,2779,'gallery','2955',44),(512,2779,'gallery','2956',45),(513,2779,'gallery','2957',46),(514,2779,'gallery','2958',47),(515,2779,'gallery','2959',48),(516,2779,'gallery','2960',49),(517,2779,'gallery','2961',50),(518,2779,'gallery','2962',51),(519,2779,'gallery','2963',52),(520,2779,'gallery','2964',53),(521,2779,'gallery','2965',54),(522,2779,'gallery','2966',55),(523,2779,'gallery','2967',56),(524,2779,'gallery','2968',57),(525,2779,'gallery','2969',58),(526,2779,'gallery','2970',59),(527,2779,'gallery','2971',60),(528,2779,'gallery','2972',61),(529,2779,'gallery','2973',62),(530,2779,'gallery','2974',63),(531,2779,'gallery','2975',64),(532,2779,'gallery','2976',65),(533,2779,'gallery','2977',66),(534,2779,'gallery','2978',67),(535,2779,'gallery','2979',68),(536,2779,'gallery','2980',69),(537,2779,'gallery','2981',70),(538,2779,'gallery','2982',71),(539,2779,'gallery','2983',72),(540,2779,'gallery','2984',73),(541,2779,'gallery','2985',74),(542,2779,'gallery','2986',75),(543,2779,'gallery','2987',76),(544,2779,'gallery','2988',77),(545,2779,'gallery','2989',78),(546,2779,'gallery','2990',79),(547,2779,'gallery','2991',80),(548,2779,'gallery','2992',81),(549,2779,'gallery','2993',82),(550,2779,'gallery','2994',83),(551,2779,'gallery','2995',84),(552,2779,'gallery','2996',85),(553,2779,'gallery','2997',86),(554,2779,'gallery','2998',87),(555,2779,'gallery','2999',88),(556,2779,'gallery','3000',89),(557,2779,'gallery','3001',90),(558,2779,'gallery','3002',91),(559,2779,'type','',1),(560,2779,'year_built','',1),(561,2779,'bedrooms','37',1),(562,2779,'bathrooms','44',1),(565,2781,'description','Located in the exciting grove area of Los Angeles, with its myriadshops and attractions, the modern luxury villa serves as a perfect home base for exploring the sights and sounds of the area. Boasting 5 luxurious bedrooms and baths, the modern, airy style will delight your group. Vaulted ceilings, gleaming hardwood floors, neutral decor, and a magnificent floating staircase centerpiece all add to the Dramatic flair. A large living room with stone fireplace, HDTV and soft lighting will entice you to gather around the sectional sofa for an evening of fun and memory-making. A separate seating area for two is just right for an intimate conversation or quiet time with a book or tablet. The kitchen is perfect for the gourmet, with its high-end appliances and abundant cabinet and counter space for creating culinary perfection. A formal dining space for 8 creates an elegant setting for savoring those creations.\r\n\r\n&nbsp;\r\n\r\n2 king beds\r\n3 queen beds\r\nAdditional bed can be added or removed',1),(566,2781,'address','',1),(567,2781,'postal_code','0',1),(568,2781,'latitude','0',1),(569,2781,'longitude','0',1),(570,2781,'price','',1),(571,2781,'gallery','3003',1),(572,2781,'gallery','3004',2),(573,2781,'gallery','3005',3),(574,2781,'gallery','3006',4),(575,2781,'gallery','3007',5),(576,2781,'gallery','3008',6),(577,2781,'gallery','3009',7),(578,2781,'gallery','3010',8),(579,2781,'gallery','3011',9),(580,2781,'gallery','3012',10),(581,2781,'gallery','3013',11),(582,2781,'gallery','3014',12),(583,2781,'gallery','3015',13),(584,2781,'gallery','3016',14),(585,2781,'gallery','3017',15),(586,2781,'gallery','3018',16),(587,2781,'gallery','3019',17),(588,2781,'gallery','3020',18),(589,2781,'gallery','3021',19),(590,2781,'gallery','3022',20),(591,2781,'gallery','3023',21),(592,2781,'gallery','3024',22),(593,2781,'gallery','3025',23),(594,2781,'gallery','3026',24),(595,2781,'gallery','3027',25),(596,2781,'gallery','3028',26),(597,2781,'gallery','3029',27),(598,2781,'gallery','3030',28),(599,2781,'type','',1),(600,2781,'year_built','',1),(601,2781,'bedrooms','37',1),(602,2781,'bathrooms','43',1),(1702,3741,'label_color','',1),(1512,2781,'guest','60',1),(609,2790,'description','A stunning modern home with clean lines, a bright interior, and dramatic finishes, the beverly grove luxury estate takes vacationing to a new level. Multiple sliding glass doors create a seamless indoor/outdoor living experience, bringing the california sunshine in like a beacon. The resort-like grounds offer an infinity-edge pool, a magnificent built-in hot tub, multiple lounge areas, and a grill and dining area. Soak up the vitamin d and then relax with a book or electronic device without having to leave the comfort of your outdoor living space. A high wall and mature trees guard and ensure your privacy.\r\n\r\nEquipped with a/c, heater, washer/dryer, beautiful fresh linens, extremely comfortable mattresses, indoor fire places, indoor/outdoor surround sound system, pool, jacuzzi, outdoor heaters, wireless internet, security alarm system, security cameras. Maid services available upon request. Gardener and pool service weekly at no cost (every tuesday).',1),(610,2790,'address','',1),(611,2790,'postal_code','0',1),(612,2790,'latitude','0',1),(613,2790,'longitude','0',1),(614,2790,'price','',1),(615,2790,'gallery','3031',1),(616,2790,'gallery','3032',2),(617,2790,'gallery','3033',3),(618,2790,'gallery','3034',4),(619,2790,'gallery','3035',5),(620,2790,'gallery','3036',6),(621,2790,'gallery','3037',7),(622,2790,'gallery','3038',8),(623,2790,'gallery','3039',9),(624,2790,'gallery','3040',10),(625,2790,'gallery','3041',11),(626,2790,'gallery','3042',12),(627,2790,'gallery','3043',13),(628,2790,'gallery','3044',14),(629,2790,'gallery','3045',15),(630,2790,'gallery','3046',16),(631,2790,'gallery','3047',17),(632,2790,'gallery','3048',18),(633,2790,'gallery','3049',19),(634,2790,'gallery','3050',20),(635,2790,'gallery','3051',21),(636,2790,'gallery','3052',22),(637,2790,'gallery','3053',23),(638,2790,'gallery','3054',24),(639,2790,'gallery','3055',25),(640,2790,'gallery','3056',26),(641,2790,'gallery','3057',27),(642,2790,'gallery','3058',28),(643,2790,'gallery','3059',29),(644,2790,'gallery','3060',30),(645,2790,'gallery','3061',31),(646,2790,'gallery','3062',32),(647,2790,'gallery','3063',33),(648,2790,'gallery','3064',34),(649,2790,'gallery','3065',35),(650,2790,'gallery','3066',36),(651,2790,'gallery','3067',37),(652,2790,'gallery','3068',38),(653,2790,'gallery','3069',39),(654,2790,'gallery','3070',40),(655,2790,'gallery','3071',41),(656,2790,'gallery','3073',42),(657,2790,'gallery','3074',43),(658,2790,'gallery','3075',44),(659,2790,'gallery','3076',45),(660,2790,'gallery','3077',46),(661,2790,'type','',1),(662,2790,'year_built','',1),(663,2790,'bedrooms','37',1),(664,2790,'bathrooms','43',1),(1777,2788,'label_text','',1),(667,2788,'description','This is a 2014 construction, 3600 Sqf house with 5 spacious bedrooms and 5 1/2 bath rooms, pool cabana, jacuzzi… Boasting a large open floor plan allowing for great entertaining and gathering space while comfortably designed for southern California indoor/outdoor living. Gorgeous gated and private 5 bedroom, 5 1/2 bath villa on 650 square foot lot and 3600 square feet of living space with airy high ceilings in a beautiful neighborhood. A beautiful fully stocked chefs kitchen with an open floor plan makes it a wonderful gathering place.\r\n\r\nSmart tvs with cable and apple tv, baby and child friendly, completely gated and closed property including a safe in the master bedroom. Outside area has an amazing lounge space, zero edge swimming pool &amp; barbecue area.',1),(668,2788,'address','',1),(669,2788,'postal_code','0',1),(670,2788,'latitude','0',1),(671,2788,'longitude','0',1),(672,2788,'price','',1),(673,2788,'gallery','3078',1),(674,2788,'gallery','3079',2),(675,2788,'gallery','3080',3),(676,2788,'gallery','3081',4),(677,2788,'gallery','3082',5),(678,2788,'gallery','3083',6),(679,2788,'gallery','3084',7),(680,2788,'gallery','3085',8),(681,2788,'gallery','3086',9),(682,2788,'gallery','3087',10),(683,2788,'gallery','3088',11),(684,2788,'gallery','3089',12),(685,2788,'gallery','3090',13),(686,2788,'gallery','3091',14),(687,2788,'gallery','3092',15),(688,2788,'gallery','3093',16),(689,2788,'gallery','3094',17),(690,2788,'gallery','3095',18),(691,2788,'gallery','3096',19),(692,2788,'gallery','3097',20),(693,2788,'gallery','3098',21),(694,2788,'gallery','3099',22),(695,2788,'gallery','3100',23),(696,2788,'gallery','3101',24),(697,2788,'gallery','3102',25),(698,2788,'gallery','3103',26),(699,2788,'gallery','3104',27),(700,2788,'gallery','3105',28),(701,2788,'gallery','3106',29),(702,2788,'gallery','3107',30),(703,2788,'gallery','3108',31),(704,2788,'type','',1),(705,2788,'year_built','',1),(706,2788,'bedrooms','37',1),(707,2788,'bathrooms','43',1),(1026,3296,'latitude','-1.2669863506577446',1),(710,2786,'description','Entertain or unwind in a gated, impeccably-decorated, gated, turn-key villa with resort-level amenities. Open plan living and dining spaces with gourmet kitchen include flat panel displays and full-house smart Entertainment system that extend onto the grounds of a double-sized lot with expansive backyard pool, cabana, fireplace, and BBO to provide space for family and guests day or night. Retreat to the privacy of spacious second level en suite bedrooms with balconies or stretch out in the generously appointed master suite with walk-in closet and bath. Play human chess, bathe in the sun, or unwind in the Jacuzzi under the stars on the versatile rooftop deck with 360 degree views of Los Angeles and the hollywood sign. Located a short walk from a large array of diversions on Melrose Ave and minutes from many fabulous destinations, this warm modern masterpiece will sparkle in your memory',1),(711,2786,'address','',1),(712,2786,'postal_code','0',1),(713,2786,'latitude','0',1),(714,2786,'longitude','0',1),(715,2786,'price','',1),(716,2786,'gallery','3109',1),(717,2786,'gallery','3110',2),(718,2786,'gallery','3111',3),(719,2786,'gallery','3112',4),(720,2786,'gallery','3113',5),(721,2786,'gallery','3114',6),(722,2786,'gallery','3115',7),(723,2786,'gallery','3116',8),(724,2786,'gallery','3117',9),(725,2786,'gallery','3118',10),(726,2786,'gallery','3119',11),(727,2786,'gallery','3120',12),(728,2786,'gallery','3121',13),(729,2786,'gallery','3122',14),(730,2786,'gallery','3123',15),(731,2786,'gallery','3124',16),(732,2786,'gallery','3125',17),(733,2786,'gallery','3126',18),(734,2786,'gallery','3127',19),(735,2786,'gallery','3128',20),(736,2786,'gallery','3129',21),(737,2786,'gallery','3130',22),(738,2786,'gallery','3131',23),(739,2786,'gallery','3132',24),(740,2786,'gallery','3133',25),(741,2786,'gallery','3134',26),(742,2786,'gallery','3135',27),(743,2786,'gallery','3136',28),(744,2786,'gallery','3137',29),(745,2786,'gallery','3138',30),(746,2786,'gallery','3139',31),(747,2786,'gallery','3140',32),(748,2786,'gallery','3141',33),(749,2786,'gallery','3142',34),(750,2786,'gallery','3143',35),(751,2786,'gallery','3144',36),(752,2786,'gallery','3145',37),(753,2786,'gallery','3146',38),(754,2786,'gallery','3147',39),(755,2786,'gallery','3148',40),(756,2786,'gallery','3149',41),(757,2786,'gallery','3150',42),(758,2786,'gallery','3151',43),(759,2786,'gallery','3152',44),(760,2786,'gallery','3153',45),(761,2786,'gallery','3154',46),(762,2786,'type','',1),(763,2786,'year_built','',1),(764,2786,'bedrooms','37',1),(765,2786,'bathrooms','44',1),(1705,3703,'label_text','',1),(768,2784,'description','Absolutely a pleasure to introduce this modern contemporary home in the sought after Beverly grove area. Needs some work to return to it\'s original glory. Priced to sell. Located between Melrose and Beverly Blvd, walking distance to shops, restaurants and night life. This property boasts 5 beds and 6 baths and a little over 4,000 sf of living space. Views from the top level of the city lights. The backyard is perfect for entertaining with a gorgeous pool and spa.',1),(769,2784,'address','',1),(770,2784,'postal_code','0',1),(771,2784,'latitude','0',1),(772,2784,'longitude','0',1),(773,2784,'price','',1),(774,2784,'gallery','3155',1),(775,2784,'gallery','3156',2),(776,2784,'gallery','3157',3),(777,2784,'gallery','3158',4),(778,2784,'gallery','3159',5),(779,2784,'gallery','3160',6),(780,2784,'gallery','3161',7),(781,2784,'gallery','3162',8),(782,2784,'gallery','3163',9),(783,2784,'gallery','3164',10),(784,2784,'gallery','3165',11),(785,2784,'gallery','3166',12),(786,2784,'gallery','3167',13),(787,2784,'gallery','3168',14),(788,2784,'gallery','3169',15),(789,2784,'gallery','3170',16),(790,2784,'gallery','3171',17),(791,2784,'gallery','3172',18),(792,2784,'gallery','3173',19),(793,2784,'gallery','3174',20),(794,2784,'gallery','3175',21),(795,2784,'gallery','3176',22),(796,2784,'gallery','3177',23),(797,2784,'gallery','3178',24),(798,2784,'gallery','3179',25),(799,2784,'gallery','3180',26),(800,2784,'gallery','3181',27),(801,2784,'gallery','3182',28),(802,2784,'gallery','3183',29),(803,2784,'gallery','3184',30),(804,2784,'gallery','3185',31),(805,2784,'gallery','3186',32),(806,2784,'gallery','3187',33),(807,2784,'gallery','3188',34),(808,2784,'gallery','3189',35),(809,2784,'gallery','3190',36),(810,2784,'gallery','3191',37),(811,2784,'gallery','3192',38),(812,2784,'gallery','3193',39),(813,2784,'gallery','3194',40),(814,2784,'gallery','3195',41),(815,2784,'type','',1),(816,2784,'year_built','',1),(817,2784,'bedrooms','37',1),(818,2784,'bathrooms','44',1),(1725,3296,'label_text','',1),(1780,2790,'label_color','',1),(841,2784,'guest','65',1),(1779,2790,'label_text','',1),(1564,3703,'description','[full_width padding=\"0 10px 0 10px\"]\r\n<span style=\"font-size: 100%;\">Perched in the coveted \"bird streets\", this stunning and spacious warm architectural home represents California living at it\'s finest! This beautifully furnished masterpiece offers a true entertainers delight. Fully retractable glass doors create a seamless indoor/outdoor living experience. The main level boasts an open floor plan with living room, dining room and kitchen flawlessly flowing to the back patio, where you will find the pool and plenty of private entertaining space with an outdoor bbq area. The home includes four generous en-suites with private decks and city views. Experience the romantic master with a separate tub and shower, dual sinks, and walk-in closet space. Roof level deck provides phenomenal entertaining space with seating overlooking the gorgeous city and tree top views.</span>\r\n[/full_width]',1),(846,2790,'guest','65',1),(851,2788,'guest','65',1),(856,2786,'guest','65',1),(1027,3296,'longitude','-0.8254390954971313',1),(1028,3296,'price','',1),(1029,3296,'type','',1),(1030,3296,'year_built','',1),(1031,3296,'bedrooms','34',1),(1032,3296,'bathrooms','39',1),(1033,3296,'guest','61',1),(1038,3296,'gallery','3344',1),(1039,3296,'gallery','3345',2),(1040,3296,'gallery','3346',3),(1041,3296,'gallery','3347',4),(1042,3296,'gallery','3348',5),(1043,3296,'gallery','3349',6),(1044,3296,'gallery','3350',7),(1045,3296,'gallery','3351',8),(1046,3296,'gallery','3352',9),(1047,3296,'gallery','3353',10),(1048,3296,'gallery','3354',11),(1049,3296,'gallery','3355',12),(1050,3296,'gallery','3356',13),(1051,3296,'gallery','3357',14),(1052,3296,'gallery','3358',15),(1053,3296,'gallery','3359',16),(1054,3296,'gallery','3360',17),(1055,3296,'gallery','3361',18),(1058,3334,'description','',1),(1059,3334,'address','616 N Croft Ave  Los Angeles, CA 90048',1),(1060,3334,'postal_code','90048',1),(1061,3334,'latitude','0',1),(1062,3334,'longitude','0',1),(1063,3334,'price','',1),(1064,3334,'gallery','3362',1),(1065,3334,'gallery','3363',2),(1066,3334,'gallery','3364',3),(1067,3334,'gallery','3365',4),(1068,3334,'gallery','3366',5),(1069,3334,'gallery','3367',6),(1070,3334,'gallery','3368',7),(1071,3334,'gallery','3369',8),(1072,3334,'gallery','3370',9),(1073,3334,'gallery','3371',10),(1074,3334,'gallery','3372',11),(1075,3334,'gallery','3373',12),(1076,3334,'gallery','3374',13),(1077,3334,'gallery','3375',14),(1078,3334,'gallery','3376',15),(1079,3334,'gallery','3377',16),(1080,3334,'gallery','3378',17),(1081,3334,'gallery','3379',18),(1082,3334,'gallery','3380',19),(1083,3334,'type','',1),(1084,3334,'year_built','',1),(1085,3334,'bedrooms','35',1),(1086,3334,'bathrooms','40',1),(1087,3334,'guest','67',1),(1724,3297,'label_color','',1),(1092,3336,'description','',1),(1093,3336,'address','336 El Camino Drive, Beverly Hills, CA 90212',1),(1094,3336,'postal_code','90212',1),(1095,3336,'latitude','0',1),(1096,3336,'longitude','0',1),(1097,3336,'price','',1),(1098,3336,'gallery','3390',1),(1099,3336,'gallery','3392',2),(1100,3336,'gallery','3394',3),(1101,3336,'gallery','3396',4),(1102,3336,'gallery','3398',5),(1103,3336,'gallery','3400',6),(1104,3336,'gallery','3402',7),(1105,3336,'gallery','3404',8),(1106,3336,'gallery','3406',9),(1107,3336,'gallery','3408',10),(1108,3336,'gallery','3410',11),(1109,3336,'gallery','3412',12),(1110,3336,'gallery','3414',13),(1111,3336,'gallery','3416',14),(1112,3336,'gallery','3418',15),(1113,3336,'gallery','3420',16),(1114,3336,'gallery','3422',17),(1115,3336,'gallery','3424',18),(1116,3336,'gallery','3425',19),(1117,3336,'gallery','3426',20),(1118,3336,'gallery','3427',21),(1119,3336,'gallery','3428',22),(1120,3336,'gallery','3429',23),(1121,3336,'gallery','3430',24),(1122,3336,'gallery','3431',25),(1123,3336,'gallery','3432',26),(1124,3336,'gallery','3433',27),(1125,3336,'gallery','3434',28),(1126,3336,'gallery','3435',29),(1127,3336,'gallery','3436',30),(1128,3336,'type','',1),(1129,3336,'year_built','',1),(1130,3336,'bedrooms','37',1),(1131,3336,'bathrooms','43',1),(1132,3336,'guest','74',1),(1718,3339,'label_color','',1),(1717,3339,'label_text','',1),(1137,3340,'description','Designer chic with endless views, a true private celebrity retreat. With 4 bedrooms, private office, a movie theater and sun drenched pool there\'s nothing more you\'ll need to truly enjoy Los Angeles in luxury. Bring your personal trainer to get your work out on in a fully outfitted gym. Endless views from every room, the day turns into a glimmering blanket of city lights at night. True designer details, mixed marble and light hard wood floors throughout, Restoration Hardware cloud couches line the living room space. Custom kitchen with Miele appliances, marble counter tops and floor to ceiling fleetwood doors open up to the most spectacular views you\'ve ever seen. The open plan allows for gatherings in the chefs kitchen, dining on the deck or cocktailing by the private pool. Luxurious, Elegant, Sophisticated and Sexy; Just unpack, lay back and enjoy.',1),(1138,3340,'address','7377 Pyramid Place, Los Angeles, CA 90046',1),(1139,3340,'postal_code','90046',1),(1140,3340,'latitude','0',1),(1141,3340,'longitude','0',1),(1142,3340,'price','',1),(1143,3340,'gallery','3506',1),(1144,3340,'gallery','3508',2),(1145,3340,'gallery','3510',3),(1146,3340,'gallery','3512',4),(1147,3340,'gallery','3513',5),(1148,3340,'gallery','3515',6),(1149,3340,'gallery','3517',7),(1150,3340,'gallery','3519',8),(1151,3340,'gallery','3521',9),(1152,3340,'gallery','3528',10),(1153,3340,'gallery','3535',11),(1154,3340,'gallery','3537',12),(1155,3340,'gallery','3538',13),(1156,3340,'gallery','3539',14),(1157,3340,'gallery','3540',15),(1158,3340,'gallery','3541',16),(1159,3340,'gallery','3542',17),(1160,3340,'gallery','3543',18),(1161,3340,'gallery','3544',19),(1162,3340,'gallery','3545',20),(1163,3340,'gallery','3546',21),(1164,3340,'gallery','3547',22),(1165,3340,'gallery','3548',23),(1166,3340,'gallery','3549',24),(1167,3340,'gallery','3550',25),(1168,3340,'gallery','3551',26),(1169,3340,'gallery','3552',27),(1170,3340,'gallery','3553',28),(1171,3340,'gallery','3554',29),(1172,3340,'gallery','3555',30),(1173,3340,'gallery','3556',31),(1174,3340,'gallery','3557',32),(1175,3340,'gallery','3558',33),(1176,3340,'gallery','3560',34),(1177,3340,'gallery','3561',35),(1178,3340,'gallery','3562',36),(1179,3340,'gallery','3563',37),(1180,3340,'gallery','3564',38),(1181,3340,'gallery','3565',39),(1182,3340,'gallery','3566',40),(1183,3340,'gallery','3567',41),(1184,3340,'gallery','3568',42),(1185,3340,'gallery','3569',43),(1186,3340,'gallery','3570',44),(1187,3340,'gallery','3571',45),(1188,3340,'gallery','3572',46),(1189,3340,'gallery','3573',47),(1190,3340,'gallery','3574',48),(1191,3340,'gallery','3575',49),(1192,3340,'gallery','3576',50),(1193,3340,'gallery','3577',51),(1194,3340,'gallery','3578',52),(1195,3340,'gallery','3579',53),(1196,3340,'gallery','3580',54),(1197,3340,'gallery','3581',55),(1198,3340,'gallery','3582',56),(1199,3340,'gallery','3583',57),(1200,3340,'gallery','3584',58),(1201,3340,'gallery','3585',59),(1202,3340,'gallery','3586',60),(1203,3340,'gallery','3587',61),(1204,3340,'gallery','3588',62),(1205,3340,'gallery','3589',63),(1206,3340,'gallery','3590',64),(1207,3340,'gallery','3591',65),(1208,3340,'gallery','3592',66),(1209,3340,'gallery','3593',67),(1210,3340,'gallery','3594',68),(1211,3340,'gallery','3595',69),(1212,3340,'gallery','3596',70),(1213,3340,'gallery','3597',71),(1214,3340,'gallery','3598',72),(1215,3340,'gallery','3599',73),(1216,3340,'gallery','3600',74),(1217,3340,'gallery','3601',75),(1218,3340,'gallery','3602',76),(1219,3340,'gallery','3603',77),(1220,3340,'gallery','3604',78),(1221,3340,'gallery','3605',79),(1222,3340,'type','',1),(1223,3340,'year_built','',1),(1224,3340,'bedrooms','37',1),(1225,3340,'bathrooms','41',1),(1226,3340,'guest','72',1),(1722,3337,'label_color','',1),(1231,3339,'description','Welcome to the 21st century with the comforts of home and the style of the rich and famous. This is the WOW of modern residence built to perfection with the highest and finest textiles, lounging by the salt water pool and spa. 4,000 sq ft., 5 bedroom suits, 5.5 bathrooms, beauteous dark oak floors throughout, flawless light drenched floor plan. \"Linea Quarto\" designer kitchen flown in from Italy with Miele appliances! Located in the hippest district near everything that matters.',1),(1232,3339,'address','833 N. Orange Grove Ave., Los Angeles, CA 90046',1),(1233,3339,'postal_code','90046',1),(1234,3339,'latitude','0',1),(1235,3339,'longitude','0',1),(1236,3339,'price','',1),(1237,3339,'gallery','3483',1),(1238,3339,'gallery','3485',2),(1239,3339,'gallery','3486',3),(1240,3339,'gallery','3487',4),(1241,3339,'gallery','3488',5),(1242,3339,'gallery','3489',6),(1243,3339,'gallery','3490',7),(1244,3339,'gallery','3491',8),(1245,3339,'gallery','3492',9),(1246,3339,'gallery','3493',10),(1247,3339,'gallery','3494',11),(1248,3339,'gallery','3495',12),(1249,3339,'gallery','3496',13),(1250,3339,'gallery','3497',14),(1251,3339,'gallery','3498',15),(1252,3339,'gallery','3499',16),(1253,3339,'gallery','3500',17),(1254,3339,'gallery','3501',18),(1255,3339,'gallery','3502',19),(1256,3339,'gallery','3503',20),(1257,3339,'gallery','3504',21),(1258,3339,'gallery','3505',22),(1259,3339,'gallery','3507',23),(1260,3339,'gallery','3509',24),(1261,3339,'gallery','3511',25),(1262,3339,'gallery','3514',26),(1263,3339,'gallery','3516',27),(1264,3339,'gallery','3518',28),(1265,3339,'gallery','3520',29),(1266,3339,'gallery','3522',30),(1267,3339,'gallery','3523',31),(1268,3339,'gallery','3524',32),(1269,3339,'gallery','3525',33),(1270,3339,'gallery','3526',34),(1271,3339,'gallery','3527',35),(1272,3339,'gallery','3529',36),(1273,3339,'gallery','3530',37),(1274,3339,'gallery','3531',38),(1275,3339,'gallery','3532',39),(1276,3339,'gallery','3533',40),(1277,3339,'gallery','3534',41),(1278,3339,'gallery','3536',42),(1279,3339,'type','',1),(1280,3339,'year_built','',1),(1281,3339,'bedrooms','37',1),(1282,3339,'bathrooms','43',1),(1283,3339,'guest','74',1),(1720,3338,'label_color','',1),(1719,3338,'label_text','',1),(1721,3337,'label_text','',1),(1290,3338,'description','This is a 2017 construction, 3,800 sqf house with 4 spacious bedrooms and 4 1/2 Bathrooms, Pool, Jacuzzi... Boasting a large open floor plan allowing for great entertaining and gathering space while comfortably designed for Southern California indoor/outdoor living. Gorgeous 4 bedroom, bath Villa on 6,500 square foot lot and 3,800 square feet of living space with airy high ceilings in a beautiful neighborhood. A beautiful fully stocked chefs kosher kitchen with an open floor plan makes it a wonderful gathering place.Smart TVs with cable and Apple TV, baby and child friendly, property including a safe in the master bedroom. Outside area has an amazing casita lounge space, heated swimming pool. In this one of a kind location, you can walk to: The Grove, Joanns on 3rd, and many more restaurants, shops, theaters and malls.',1),(1291,3338,'address','6347 Maryland Ave., Los Angeles, CA 90048',1),(1292,3338,'postal_code','90048',1),(1293,3338,'latitude','0',1),(1294,3338,'longitude','0',1),(1295,3338,'price','',1),(1296,3338,'gallery','3463',1),(1297,3338,'gallery','3464',2),(1298,3338,'gallery','3465',3),(1299,3338,'gallery','3466',4),(1300,3338,'gallery','3467',5),(1301,3338,'gallery','3468',6),(1302,3338,'gallery','3469',7),(1303,3338,'gallery','3470',8),(1304,3338,'gallery','3471',9),(1305,3338,'gallery','3472',10),(1306,3338,'gallery','3473',11),(1307,3338,'gallery','3474',12),(1308,3338,'gallery','3475',13),(1309,3338,'gallery','3476',14),(1310,3338,'gallery','3477',15),(1311,3338,'gallery','3478',16),(1312,3338,'gallery','3479',17),(1313,3338,'gallery','3480',18),(1314,3338,'gallery','3481',19),(1315,3338,'gallery','3482',20),(1316,3338,'gallery','3484',21),(1317,3338,'type','',1),(1318,3338,'year_built','',1),(1319,3338,'bedrooms','36',1),(1320,3338,'bathrooms','42',1),(1321,3338,'guest','72',1),(1324,3336,'label_text','',1),(1325,3336,'label_color','',1),(1328,3335,'description','',1),(1329,3335,'address','9570 Sunset Blvd.,Beverly Hills, 90210',1),(1330,3335,'postal_code','90210',1),(1331,3335,'latitude','0',1),(1332,3335,'longitude','0',1),(1333,3335,'price','',1),(1334,3335,'gallery','3381',1),(1335,3335,'gallery','3382',2),(1336,3335,'gallery','3383',3),(1337,3335,'gallery','3384',4),(1338,3335,'gallery','3385',5),(1339,3335,'gallery','3386',6),(1340,3335,'gallery','3387',7),(1341,3335,'gallery','3388',8),(1342,3335,'gallery','3389',9),(1343,3335,'gallery','3391',10),(1344,3335,'gallery','3393',11),(1345,3335,'gallery','3395',12),(1346,3335,'gallery','3397',13),(1347,3335,'gallery','3399',14),(1348,3335,'gallery','3401',15),(1349,3335,'gallery','3403',16),(1350,3335,'gallery','3405',17),(1351,3335,'gallery','3407',18),(1352,3335,'gallery','3409',19),(1353,3335,'gallery','3411',20),(1354,3335,'gallery','3413',21),(1355,3335,'gallery','3415',22),(1356,3335,'gallery','3417',23),(1357,3335,'gallery','3419',24),(1358,3335,'gallery','3421',25),(1359,3335,'gallery','3423',26),(1360,3335,'type','',1),(1361,3335,'year_built','',1),(1362,3335,'bedrooms','81',1),(1363,3335,'bathrooms','79',1),(1364,3335,'guest','76',1),(1367,3335,'label_text','',1),(1368,3335,'label_color','',1),(1723,3297,'label_text','',1),(1371,3337,'description','New Construction Architectural Masterpiece in prime location! High-tech smart home, living room opens to kitchen &amp; offers sleek fireplace, built in speakers and top-of-the-line Fleetwood pocket doors for indoor/outdoor flow. Innovative kitchen with Thermador SS appliances, double oven, sliding glass doors leading to patio &amp; expansive center island with 5-burner stove & hood, plus counter seating for 5 All secondary bedrooms en-suite, master bedroom offers sliding glass doors, linear fireplace, large walk-in closet & master bath with dual vanity, massive shower, freestanding soaking tub, speakers & high-end finishes. Backyard is perfect for entertaining with direct access to kitchen, pool &amp; spa, covered patio with recessed lighting.',1),(1372,3337,'address','943 N. Laurel Ave., Los Angeles, CA 90046',1),(1373,3337,'postal_code','90046',1),(1374,3337,'latitude','0',1),(1375,3337,'longitude','0',1),(1376,3337,'price','',1),(1377,3337,'gallery','3606',1),(1378,3337,'gallery','3607',2),(1379,3337,'gallery','3608',3),(1380,3337,'gallery','3609',4),(1381,3337,'gallery','3610',5),(1382,3337,'gallery','3611',6),(1383,3337,'gallery','3612',7),(1384,3337,'gallery','3613',8),(1385,3337,'gallery','3614',9),(1386,3337,'gallery','3615',10),(1387,3337,'gallery','3616',11),(1388,3337,'gallery','3617',12),(1389,3337,'gallery','3618',13),(1390,3337,'gallery','3619',14),(1391,3337,'gallery','3620',15),(1392,3337,'gallery','3621',16),(1393,3337,'gallery','3622',17),(1394,3337,'gallery','3623',18),(1395,3337,'gallery','3624',19),(1396,3337,'gallery','3625',20),(1397,3337,'gallery','3626',21),(1398,3337,'gallery','3627',22),(1399,3337,'gallery','3628',23),(1400,3337,'gallery','3629',24),(1401,3337,'gallery','3630',25),(1402,3337,'type','',1),(1403,3337,'year_built','',1),(1404,3337,'bedrooms','36',1),(1405,3337,'bathrooms','42',1),(1406,3337,'guest','70',1),(1712,3342,'label_color','',1),(1711,3342,'label_text','',1),(1411,3343,'description','[full_width padding=\"0 10px 0 10px\"]\r\n<span style=\"font-size: 100%;\">This is a beautiful 2 bedroom 2 full bathroom, washer and dryer inside unit. Beautifully decorated, private balcony, fully equipped kitchen and all linens. Come for the weather and stay for the fun! This beautiful Two bedroom Two bath room suite is located in a charming community and is fully equip with all the comforts of home. Which Including a private balcony, fully stocked kitchen, Apple TV, in unit Washer/ Dryer, and two secured access parking spots. This gem is just steps away from the Trendy 3rd Street Promenade, Famous Santa Monica Pier, Santa Monica Place Mall not to mention the Beautiful Beaches and so much More!</span>\r\n\r\nTwo gated secure parking spots as well.\r\n\r\n[/full_width]',1),(1412,3343,'address','1540 6th Street, Santa Monica, CA ',1),(1413,3343,'postal_code','0',1),(1414,3343,'latitude','0',1),(1415,3343,'longitude','0',1),(1416,3343,'price','',1),(1417,3343,'gallery','3628',1),(1418,3343,'type','',1),(1419,3343,'year_built','',1),(1420,3343,'bedrooms','34',1),(1421,3343,'bathrooms','40',1),(1422,3343,'guest','60',1),(1716,3340,'label_color','',1),(1715,3340,'label_text','',1),(1427,3341,'description','A unique &amp; tasteful architectural design in a safe, quiet, and elegant neighborhood. The epitome of unpretentious luxury, fully gated and surrounded by tall trees creating absolute privacy. 6 bedroom, 5.5 bathrooms. Steps away from Melrose, Beverly Grove, park, and playgrounds. High tech smart home, heated infinity pool &amp; spa, movie room, fitness area, outdoor grill, BBQ',1),(1428,3341,'address','838 Sierra Bonita Ave,West Hollywood , CA 90046',1),(1429,3341,'postal_code','90046',1),(1430,3341,'latitude','0',1),(1431,3341,'longitude','0',1),(1432,3341,'price','',1),(1433,3341,'gallery','3636',1),(1434,3341,'gallery','3637',2),(1435,3341,'gallery','3638',3),(1436,3341,'gallery','3639',4),(1437,3341,'gallery','3640',5),(1438,3341,'gallery','3641',6),(1439,3341,'gallery','3643',7),(1440,3341,'gallery','3644',8),(1441,3341,'gallery','3645',9),(1442,3341,'gallery','3646',10),(1443,3341,'gallery','3647',11),(1444,3341,'gallery','3649',12),(1445,3341,'gallery','3650',13),(1446,3341,'gallery','3651',14),(1447,3341,'gallery','3652',15),(1448,3341,'gallery','3653',16),(1449,3341,'gallery','3654',17),(1450,3341,'gallery','3656',18),(1451,3341,'gallery','3657',19),(1452,3341,'gallery','3658',20),(1453,3341,'type','',1),(1454,3341,'year_built','',1),(1455,3341,'bedrooms','38',1),(1456,3341,'bathrooms','44',1),(1457,3341,'guest','74',1),(1714,3341,'label_color','',1),(1713,3341,'label_text','',1),(1462,3342,'description','Beautiful, brand new remodeled 2 Bed, 2.5 Bath Unit located in the very desirable Melrose district. All new finishes, Central AC, new furniture.',1),(1463,3342,'address','420 Stanley Ave   Los Angeles, CA 90048',1),(1464,3342,'postal_code','90048',1),(1465,3342,'latitude','0',1),(1466,3342,'longitude','0',1),(1467,3342,'price','',1),(1468,3342,'gallery','3634',1),(1469,3342,'gallery','3635',2),(1470,3342,'gallery','3642',3),(1471,3342,'gallery','3648',4),(1472,3342,'gallery','3655',5),(1473,3342,'gallery','3659',6),(1474,3342,'gallery','3660',7),(1475,3342,'gallery','3661',8),(1476,3342,'gallery','3662',9),(1477,3342,'gallery','3663',10),(1478,3342,'gallery','3664',11),(1479,3342,'gallery','3665',12),(1480,3342,'gallery','3666',13),(1481,3342,'gallery','3667',14),(1482,3342,'gallery','3668',15),(1483,3342,'gallery','3669',16),(1484,3342,'gallery','3670',17),(1485,3342,'gallery','3671',18),(1486,3342,'gallery','3672',19),(1487,3342,'gallery','3673',20),(1488,3342,'gallery','3674',21),(1489,3342,'gallery','3675',22),(1490,3342,'gallery','3676',23),(1491,3342,'gallery','3677',24),(1492,3342,'gallery','3678',25),(1493,3342,'gallery','3679',26),(1494,3342,'gallery','3680',27),(1495,3342,'gallery','3681',28),(1496,3342,'type','',1),(1497,3342,'year_built','',1),(1498,3342,'bedrooms','34',1),(1499,3342,'bathrooms','41',1),(1500,3342,'guest','63',1),(1746,2720,'label_color','',1),(1745,2720,'label_text','',1),(1505,2769,'guest','60',1),(1517,2779,'guest','60',1),(1701,3741,'label_text','',1),(1774,2781,'label_color','',1),(1778,2788,'label_color','',1),(1706,3703,'label_color','',1),(1528,3683,'description','[full_width padding=\"0 10px 0 10px\"]\r\n<span style=\"font-size: 100%;\">THE ELVIS HOUSE! A Mid-Century Modern Classic perched high above the city lights set on a corner lot showcasing dramatic jet-liner views while maintaining ample privacy. Designed by legendary architect Hal Levitt, the storied home was featured in the 1968 Film \"Live a Little, Love a Little\" starring Elvis Presley. Having undergone tremendous renovations since then, the home now embodies all the luxuries of a modern home while maintaining the integrity of its classic Hollywood origin. Enjoy breathtaking sweeping views throughout the home with floor-to-ceiling windows and sliding glass doors that open to the enormous outdoor patio hosting a pool and an abundance of lounge space. Features include an open floor plan, porcelain tile floors, a green onyx fireplace with travertine trim, solid brass finishes, hand-painted Italian silk wallpaper, Murano antique light fixtures, stunning stonework, a new control 4 system, and custom furniture</span>\r\n[/full_width]\r\n',1),(1529,3683,'address','',1),(1530,3683,'postal_code','0',1),(1531,3683,'latitude','0',1),(1532,3683,'longitude','0',1),(1533,3683,'price','',1),(1534,3683,'gallery','3684',1),(1535,3683,'gallery','3685',2),(1536,3683,'gallery','3686',3),(1537,3683,'gallery','3687',4),(1538,3683,'gallery','3688',5),(1539,3683,'gallery','3689',6),(1540,3683,'gallery','3690',7),(1541,3683,'gallery','3691',8),(1542,3683,'gallery','3692',9),(1543,3683,'gallery','3693',10),(1544,3683,'gallery','3694',11),(1545,3683,'gallery','3695',12),(1546,3683,'gallery','3696',13),(1547,3683,'gallery','3697',14),(1548,3683,'gallery','3698',15),(1549,3683,'gallery','3699',16),(1550,3683,'gallery','3700',17),(1551,3683,'gallery','3701',18),(1552,3683,'gallery','3702',19),(1553,3683,'type','',1),(1554,3683,'year_built','',1),(1555,3683,'bedrooms','36',1),(1556,3683,'bathrooms','42',1),(1557,3683,'guest','70',1),(1710,3343,'label_color','',1),(1709,3343,'label_text','',1),(1565,3703,'address','1544 N DOHENY, LOS ANGELES CA 90069',1),(1566,3703,'postal_code','90069',1),(1567,3703,'latitude','0',1),(1568,3703,'longitude','0',1),(1569,3703,'price','',1),(1570,3703,'gallery','3704',1),(1571,3703,'gallery','3705',2),(1572,3703,'gallery','3706',3),(1573,3703,'gallery','3707',4),(1574,3703,'gallery','3708',5),(1575,3703,'gallery','3709',6),(1576,3703,'gallery','3710',7),(1577,3703,'gallery','3711',8),(1578,3703,'gallery','3712',9),(1579,3703,'gallery','3713',10),(1580,3703,'gallery','3714',11),(1581,3703,'gallery','3715',12),(1582,3703,'gallery','3716',13),(1583,3703,'gallery','3717',14),(1584,3703,'gallery','3718',15),(1585,3703,'gallery','3719',16),(1586,3703,'gallery','3720',17),(1587,3703,'gallery','3721',18),(1588,3703,'gallery','3722',19),(1589,3703,'gallery','3723',20),(1590,3703,'gallery','3724',21),(1591,3703,'gallery','3725',22),(1592,3703,'gallery','3726',23),(1593,3703,'gallery','3727',24),(1594,3703,'gallery','3728',25),(1595,3703,'gallery','3729',26),(1596,3703,'gallery','3730',27),(1597,3703,'gallery','3731',28),(1598,3703,'gallery','3732',29),(1599,3703,'gallery','3733',30),(1600,3703,'gallery','3734',31),(1601,3703,'gallery','3735',32),(1602,3703,'gallery','3736',33),(1603,3703,'gallery','3737',34),(1604,3703,'gallery','3738',35),(1605,3703,'gallery','3739',36),(1606,3703,'gallery','3740',37),(1607,3703,'type','',1),(1608,3703,'year_built','',1),(1609,3703,'bedrooms','36',1),(1610,3703,'bathrooms','42',1),(1611,3703,'guest','70',1),(1708,3683,'label_color','',1),(1707,3683,'label_text','',1),(1616,3741,'description','[full_width padding=\"0 10px 0 10px\"]\r\n<span style=\"font-size: 85%;\">WE ARE PROUD TO INTRODUCE THIS AMAZING HOME! TWO STORY NEW CONSTRUCTION HAS BEEN MASTERFULLY DESIGNED TO CREATE INTIMATE ENVIRONMENTS AND SPACES WERE LASTING EXPERIENCES, MEMORIES AND EMOTIONS ARE DERIVED. CANDINAVIAN DESIGN, WITH JAPANESE INFLUENCES, MEETS AMERICAN LIVING. ENTER THROUGH THE TALL CUSTOM GLASS DOORS INTO A BRIGHT, OPEN AND AIRY SPACE CRAFTED FOR ENTERTAINING. THE FLOOR TO CEILING CUSTOM STEEL WINDOWS AND DOORS POCKET, PROVIDING THE ULTIMATE IN INDOOR/OUTDOOR LIVING. THE HIGH CEILINGS, RADIANT LIGHT, AND METICULOUS ATTENTION TO DETAIL ARE THE HOMES FIRST IMPRESSION. CUSTOM RED WOOD TRIM FROM THE EXTERIOR IS BROUGHT INTO THE HOME, CONNECTING THE TWO, AND SERVING TO DEFINE AND DIFFERENTIATE THE FORMAL LIVING ROOM FROM THE ENTERTAINER\'S KITCHEN. THE KITCHEN IS THE HEART OF THE HOME, BOASTING 2 KITCHEN ISLANDS CONSTRUCTED OF ITALIAN MARBLE, RIFT OAK CUSTOM CABINETRY, SUB ZERO/DACOR APPLIANCES, WINE FRIDGE, AND CUSTOM STEEL WINDOWS THAT OPEN UP TO FORM A CANOPY FROM OUTSIDE, ALLOWING FOOD AND DRINKS TO BE SERVED. REMAINING ON THE MAIN LEVEL ARE 5 BEDROOMS, INCLUDING A JUNIOR SUITE, A BONUS ROOM, AND MORE. 2 ADDITIONAL BEDROOMS INCLUDING A LARGE MASTER SUITE WITH POCKETED CUSTOM GLASS DOORS OPEN TO A 1600 SOFT ROOFTOP DECK WITH GREAT VIEWS.</span>\r\n[/full_width]',1),(1617,3741,'address','',1),(1618,3741,'postal_code','0',1),(1619,3741,'latitude','0',1),(1620,3741,'longitude','0',1),(1621,3741,'price','',1),(1622,3741,'gallery','3742',1),(1623,3741,'gallery','3743',2),(1624,3741,'gallery','3744',3),(1625,3741,'gallery','3745',4),(1626,3741,'gallery','3746',5),(1627,3741,'gallery','3747',6),(1628,3741,'gallery','3748',7),(1629,3741,'gallery','3749',8),(1630,3741,'gallery','3750',9),(1631,3741,'gallery','3751',10),(1632,3741,'gallery','3752',11),(1633,3741,'gallery','3753',12),(1634,3741,'gallery','3754',13),(1635,3741,'gallery','3755',14),(1636,3741,'gallery','3756',15),(1637,3741,'gallery','3757',16),(1638,3741,'gallery','3758',17),(1639,3741,'gallery','3759',18),(1640,3741,'gallery','3760',19),(1641,3741,'gallery','3761',20),(1642,3741,'gallery','3762',21),(1643,3741,'gallery','3763',22),(1644,3741,'gallery','3764',23),(1645,3741,'gallery','3765',24),(1646,3741,'gallery','3766',25),(1647,3741,'gallery','3767',26),(1648,3741,'gallery','3768',27),(1649,3741,'gallery','3769',28),(1650,3741,'gallery','3770',29),(1651,3741,'gallery','3771',30),(1652,3741,'gallery','3772',31),(1653,3741,'gallery','3773',32),(1654,3741,'gallery','3774',33),(1655,3741,'gallery','3775',34),(1656,3741,'gallery','3776',35),(1657,3741,'gallery','3777',36),(1658,3741,'gallery','3778',37),(1659,3741,'gallery','3779',38),(1660,3741,'gallery','3780',39),(1661,3741,'gallery','3781',40),(1662,3741,'gallery','3782',41),(1663,3741,'gallery','3783',42),(1664,3741,'gallery','3784',43),(1665,3741,'gallery','3785',44),(1666,3741,'gallery','3786',45),(1667,3741,'gallery','3787',46),(1668,3741,'type','',1),(1669,3741,'year_built','',1),(1670,3741,'bedrooms','81',1),(1671,3741,'bathrooms','79',1),(1672,3741,'guest','76',1),(1743,2769,'label_text','',1),(1744,2769,'label_color','',1),(1749,3966,'description','<div class=\"elementor-element elementor-element-327a9fe animated-fast elementor-widget elementor-widget-heading animated opal-move-up\" data-id=\"327a9fe\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;opal-move-up&quot;}\" data-widget_type=\"heading.default\">\r\n<div class=\"elementor-widget-container\">\r\n<div class=\"elementor-heading-wrapper\">\r\n<div class=\"elementor-heading-wrapper-inner\">\r\n<h2 class=\"elementor-heading-title elementor-size-default\">BEACH-INSPIRED INTERIORS</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"elementor-element elementor-element-993cac5 animated-fast elementor-widget elementor-widget-text-editor animated opal-move-up\" data-id=\"993cac5\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;opal-move-up&quot;,&quot;_animation_tablet&quot;:&quot;opal-move-up&quot;,&quot;_animation_mobile&quot;:&quot;opal-move-up&quot;}\" data-widget_type=\"text-editor.default\">\r\n<div class=\"elementor-widget-container\">\r\n<div class=\"elementor-text-editor elementor-clearfix\">Airy, light-filled residential interiors capture the casual luxury of life at Hyde Beach House. Every residence has been pre-wired with “Smart Building” features including fiber optics for high-speed wireless internet, cable TV access, and individual climate control systems. Residences are move-in ready with luxury finishes and designer European furnishings.</div>\r\n</div>\r\n</div>\r\n<div class=\"elementor-element elementor-element-ab2eaa8 animated-fast elementor-widget elementor-widget-text-editor animated opal-move-up\" data-id=\"ab2eaa8\" data-element_type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;opal-move-up&quot;,&quot;_animation_tablet&quot;:&quot;opal-move-up&quot;,&quot;_animation_mobile&quot;:&quot;opal-move-up&quot;}\" data-widget_type=\"text-editor.default\">\r\n<div class=\"elementor-widget-container\">\r\n<div class=\"elementor-text-editor elementor-clearfix\">\r\n<ul>\r\n 	<li>77 decorator-ready, carpeted, one, two, and three bedroom condominium residences with open-concept contemporary floor plans</li>\r\n 	<li>265 beautifully finished and furnished one, two, and three bedroom resort condominiums</li>\r\n 	<li>Wide private terraces with glass railings and unobstructed views</li>\r\n 	<li>Stunning water views from virtually every residence</li>\r\n 	<li>Energy-efficient, tinted, impact-resistant, floor-to-ceiling sliding glass doors and windows</li>\r\n 	<li>Spacious walk-in closets in most residences</li>\r\n 	<li>Advanced Technology “Smart Building” pre-wired with fiber optics for high-speed internet, data/voice, and cable TV access</li>\r\n</ul>\r\n<div class=\"elementor-element elementor-element-f58dc92 elementor-widget elementor-widget-heading\" data-id=\"f58dc92\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\r\n<div class=\"elementor-widget-container\">\r\n<div class=\"elementor-heading-wrapper\">\r\n<div class=\"elementor-heading-wrapper-inner\">\r\n<h2 class=\"elementor-heading-title elementor-size-default\">Style Savvy Kitchens</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"elementor-element elementor-element-a53bb05 elementor-widget elementor-widget-text-editor\" data-id=\"a53bb05\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\r\n<div class=\"elementor-widget-container\">\r\n<div class=\"elementor-text-editor elementor-clearfix\">\r\n<ul>\r\n 	<li>A premium selection of contemporary European cabinetry</li>\r\n 	<li>Imported stone countertops with convenient breakfast bar in most residences</li>\r\n 	<li>Stainless steel appliance package with refrigerator/freezer, glass cooktop, built-in oven, multi-cycle whisper-quiet dishwasher, built-in microwave with integrated vent hood, and washer and dryer</li>\r\n 	<li>Double stainless-steel under-mount sink, with single-lever European-style pullout faucet sprayer</li>\r\n 	<li>Imported designer porcelain tile floors</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"elementor-element elementor-element-5c13eed elementor-widget elementor-widget-heading\" data-id=\"5c13eed\" data-element_type=\"widget\" data-widget_type=\"heading.default\">\r\n<div class=\"elementor-widget-container\">\r\n<div class=\"elementor-heading-wrapper\">\r\n<div class=\"elementor-heading-wrapper-inner\">\r\n<h2 class=\"elementor-heading-title elementor-size-default\">Tranquil Bathrooms</h2>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"elementor-element elementor-element-eda1c40 elementor-widget elementor-widget-text-editor\" data-id=\"eda1c40\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\r\n<div class=\"elementor-widget-container\">\r\n<div class=\"elementor-text-editor elementor-clearfix\">\r\n<ul>\r\n 	<li>European style cabinetry with exceptional detailing</li>\r\n 	<li>Imported stone countertops</li>\r\n 	<li>Full-size vanity mirrors with designer lighting</li>\r\n 	<li>Floors and wet walls clad in imported designer porcelain tile</li>\r\n 	<li>Designer fixtures and accessories</li>\r\n 	<li>Spacious soaking tub and glass-enclosed shower</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>',1),(1750,3966,'address','4010 S Ocean Dr, Hollywood, FL 33019, USA',1),(1751,3966,'postal_code','33019',1),(1752,3966,'latitude','0',1),(1753,3966,'longitude','0',1),(1754,3966,'price','',1),(1755,3966,'gallery','3969',1),(1756,3966,'gallery','3973',2),(1757,3966,'gallery','3972',3),(1758,3966,'gallery','3971',4),(1759,3966,'gallery','3970',5),(1760,3966,'type','',1),(1761,3966,'year_built','',1),(1762,3966,'bedrooms','34',1),(1763,3966,'bathrooms','40',1),(1764,3966,'guest','63',1),(1765,3966,'label_text','',1),(1766,3966,'label_color','',1);
/*!40000 ALTER TABLE `wpew_ulisting_listing_attribute_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_ulisting_listing_plan`
--

DROP TABLE IF EXISTS `wpew_ulisting_listing_plan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_listing_plan` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `listing_id` bigint(20) unsigned NOT NULL,
  `user_plan_id` bigint(20) NOT NULL,
  `type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_date` datetime DEFAULT '0000-00-00 00:00:00',
  `expired_date` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `ulisting_listing_plan_listing_id_index` (`listing_id`),
  KEY `ulisting_listing_plan_user_plan_id_index` (`user_plan_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_listing_plan`
--

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

--
-- Table structure for table `wpew_ulisting_listing_type_relationships`
--

DROP TABLE IF EXISTS `wpew_ulisting_listing_type_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_listing_type_relationships` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `listing_type_id` int(11) NOT NULL,
  `listing_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `listing_type_relationships_listing_type_id_index` (`listing_type_id`),
  KEY `listing_type_relationships_listing_id_index` (`listing_id`)
) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_listing_type_relationships`
--

LOCK TABLES `wpew_ulisting_listing_type_relationships` WRITE;
/*!40000 ALTER TABLE `wpew_ulisting_listing_type_relationships` DISABLE KEYS */;
INSERT INTO `wpew_ulisting_listing_type_relationships` VALUES (1,2642,2644),(2,2642,2645),(3,2642,2646),(4,2642,2647),(5,2642,2648),(6,2642,2649),(7,2642,2720),(8,2642,2769),(9,2642,2779),(10,2642,2781),(11,2642,2784),(12,2642,2786),(13,2642,2788),(14,2642,2790),(15,2642,3225),(16,2642,3263),(17,2642,3296),(18,2642,3297),(19,2642,3334),(20,2642,3335),(21,2642,3336),(22,2642,3337),(23,2642,3338),(24,2642,3339),(25,2642,3340),(26,2642,3341),(27,2642,3342),(28,2642,3343),(29,2642,3683),(30,2642,3703),(31,2642,3741),(32,2642,3966);
/*!40000 ALTER TABLE `wpew_ulisting_listing_type_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_ulisting_listing_user_relations`
--

DROP TABLE IF EXISTS `wpew_ulisting_listing_user_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_listing_user_relations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `listing_id` bigint(20) unsigned NOT NULL,
  `type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `listing_user_relations_user_id_index` (`user_id`),
  KEY `listing_user_relations_listing_id_index` (`listing_id`)
) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_listing_user_relations`
--

LOCK TABLES `wpew_ulisting_listing_user_relations` WRITE;
/*!40000 ALTER TABLE `wpew_ulisting_listing_user_relations` DISABLE KEYS */;
INSERT INTO `wpew_ulisting_listing_user_relations` VALUES (1,2,2644,'free'),(2,2,2645,'free'),(3,2,2646,'free'),(4,2,2647,'free'),(5,2,2648,'free'),(6,2,2649,'free'),(7,0,2720,'free'),(8,0,2769,'free'),(9,0,2779,'free'),(10,0,2781,'free'),(11,0,2790,'free'),(12,0,2788,'free'),(13,0,2786,'free'),(14,0,2784,'free'),(15,0,3225,'free'),(16,0,3263,'free'),(17,0,3297,'free'),(18,0,3296,'free'),(19,0,3334,'free'),(20,0,3336,'free'),(21,0,3340,'free'),(22,0,3339,'free'),(23,0,3338,'free'),(24,0,3335,'free'),(25,0,3337,'free'),(26,0,3343,'free'),(27,0,3341,'free'),(28,0,3342,'free'),(29,0,3683,'free'),(30,0,3703,'free'),(31,0,3741,'free'),(32,0,3966,'free');
/*!40000 ALTER TABLE `wpew_ulisting_listing_user_relations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_ulisting_page_statistics`
--

DROP TABLE IF EXISTS `wpew_ulisting_page_statistics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_page_statistics` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `object_id` bigint(20) unsigned NOT NULL,
  `type` varchar(250) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `created_date` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `page_statistics_object_id_index` (`object_id`)
) ENGINE=MyISAM AUTO_INCREMENT=119 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_page_statistics`
--

LOCK TABLES `wpew_ulisting_page_statistics` WRITE;
/*!40000 ALTER TABLE `wpew_ulisting_page_statistics` DISABLE KEYS */;
INSERT INTO `wpew_ulisting_page_statistics` VALUES (1,2644,'listing','2021-05-14 00:52:14'),(2,2649,'listing','2021-05-14 03:13:07'),(3,2646,'listing','2021-05-14 03:13:55'),(4,2647,'listing','2021-05-14 03:14:02'),(5,2648,'listing','2021-05-14 03:14:44'),(6,2645,'listing','2021-05-14 03:15:55'),(7,2646,'listing','2021-05-14 04:21:49'),(8,2646,'listing','2021-05-14 04:59:57'),(9,2720,'listing','2021-05-14 06:50:37'),(10,2720,'listing','2021-05-14 07:21:01'),(11,2720,'listing','2021-05-14 07:41:44'),(12,2769,'listing','2021-05-14 07:46:39'),(13,2769,'listing','2021-05-14 07:47:08'),(14,2769,'listing','2021-05-14 07:47:12'),(15,2790,'listing','2021-05-14 07:57:13'),(16,2788,'listing','2021-05-14 08:51:11'),(17,2786,'listing','2021-05-14 08:51:18'),(18,2779,'listing','2021-05-14 09:18:56'),(19,2784,'listing','2021-05-14 10:37:47'),(20,2784,'listing','2021-05-14 10:48:31'),(21,2784,'listing','2021-05-14 15:25:53'),(22,2781,'listing','2021-05-14 15:33:11'),(23,2779,'listing','2021-05-14 15:38:42'),(24,2779,'listing','2021-05-14 15:48:44'),(25,2779,'listing','2021-05-16 02:33:31'),(26,2779,'listing','2021-05-17 00:06:22'),(27,2779,'listing','2021-05-17 13:05:01'),(28,2790,'listing','2021-05-17 13:05:17'),(29,2784,'listing','2021-05-18 03:21:19'),(30,2790,'listing','2021-05-18 05:12:24'),(31,2790,'listing','2021-05-18 07:37:36'),(32,2790,'listing','2021-05-18 08:55:47'),(33,2779,'listing','2021-05-19 21:42:10'),(34,2781,'listing','2021-05-19 22:07:49'),(35,2790,'listing','2021-05-25 14:07:02'),(36,2720,'listing','2021-05-25 14:21:48'),(37,2790,'listing','2021-05-25 15:59:41'),(38,2784,'listing','2021-05-25 16:58:59'),(39,2779,'listing','2021-05-26 02:34:41'),(40,2781,'listing','2021-05-26 02:49:34'),(41,2790,'listing','2021-05-26 07:20:22'),(42,2788,'listing','2021-05-27 05:31:34'),(43,2790,'listing','2021-05-31 07:14:03'),(44,2779,'listing','2021-06-14 21:06:41'),(45,2790,'listing','2021-06-14 21:11:55'),(46,2720,'listing','2021-06-14 21:12:37'),(47,2790,'listing','2021-06-14 21:14:34'),(48,2790,'listing','2021-06-14 21:14:36'),(49,2790,'listing','2021-06-14 21:32:33'),(50,2779,'listing','2021-06-14 22:55:20'),(51,2790,'listing','2021-06-15 01:40:41'),(52,2790,'listing','2021-06-15 05:38:34'),(53,3296,'listing','2021-06-15 20:49:43'),(54,2779,'listing','2021-06-15 20:49:59'),(55,3335,'listing','2021-06-15 20:50:34'),(56,3343,'listing','2021-06-16 16:20:14'),(57,2786,'listing','2021-06-17 08:37:57'),(58,3296,'listing','2021-06-18 01:12:26'),(59,3296,'listing','2021-06-22 19:21:20'),(60,3296,'listing','2021-06-23 01:10:09'),(61,3703,'listing','2021-06-23 01:10:39'),(62,2769,'listing','2021-06-23 01:27:50'),(63,3683,'listing','2021-06-23 01:56:27'),(64,2779,'listing','2021-06-23 05:59:52'),(65,2779,'listing','2021-06-23 06:05:01'),(66,2779,'listing','2021-06-23 06:05:04'),(67,2779,'listing','2021-06-23 06:05:15'),(68,2779,'listing','2021-06-23 07:05:08'),(69,3741,'listing','2021-06-23 07:19:27'),(70,3703,'listing','2021-06-23 07:46:26'),(71,3683,'listing','2021-06-23 07:52:00'),(72,3297,'listing','2021-06-23 18:37:26'),(73,3263,'listing','2021-06-23 19:09:48'),(74,2720,'listing','2021-06-24 16:13:29'),(75,3263,'listing','2021-06-24 16:17:14'),(76,2784,'listing','2021-06-24 16:22:30'),(77,2781,'listing','2021-06-24 16:30:32'),(78,3263,'listing','2021-07-04 20:07:05'),(79,3225,'listing','2021-07-04 20:07:18'),(80,2788,'listing','2021-07-04 20:07:37'),(81,2788,'listing','2021-07-13 22:47:13'),(82,3263,'listing','2021-07-14 00:15:17'),(83,2781,'listing','2021-07-14 00:15:59'),(84,2781,'listing','2021-07-14 20:32:38'),(85,3335,'listing','2021-07-14 20:33:34'),(86,3966,'listing','2021-07-14 20:33:43'),(87,3263,'listing','2021-07-14 20:45:16'),(88,2720,'listing','2021-07-14 22:29:54'),(89,2720,'listing','2021-07-14 22:30:29'),(90,2720,'listing','2021-07-14 22:30:31'),(91,2720,'listing','2021-07-14 22:30:33'),(92,2769,'listing','2021-07-14 22:30:37'),(93,2779,'listing','2021-07-14 22:30:44'),(94,2781,'listing','2021-07-14 22:30:52'),(95,2781,'listing','2021-07-14 22:31:08'),(96,2781,'listing','2021-07-14 22:31:10'),(97,3966,'listing','2021-07-15 05:15:55'),(98,3966,'listing','2021-07-15 05:15:55'),(99,3966,'listing','2021-07-15 05:17:05'),(100,3966,'listing','2021-07-15 05:17:19'),(101,3966,'listing','2021-07-15 05:44:44'),(102,3966,'listing','2021-07-15 05:44:46'),(103,2720,'listing','2021-07-15 06:44:19'),(104,2720,'listing','2021-07-15 08:05:43'),(105,2720,'listing','2021-07-15 08:11:30'),(106,2769,'listing','2021-07-15 08:11:41'),(107,2779,'listing','2021-07-15 08:13:36'),(108,3966,'listing','2021-07-15 20:55:06'),(109,3741,'listing','2021-07-15 20:55:16'),(110,3703,'listing','2021-07-15 20:55:26'),(111,2781,'listing','2021-07-15 20:59:36'),(112,2784,'listing','2021-07-15 20:59:37'),(113,2786,'listing','2021-07-15 20:59:38'),(114,2788,'listing','2021-07-15 21:03:03'),(115,2790,'listing','2021-07-15 21:03:03'),(116,3225,'listing','2021-07-15 21:03:04'),(117,3263,'listing','2021-07-15 21:03:04'),(118,2781,'listing','2021-07-25 19:05:58');
/*!40000 ALTER TABLE `wpew_ulisting_page_statistics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_ulisting_page_statistics_meta`
--

DROP TABLE IF EXISTS `wpew_ulisting_page_statistics_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_page_statistics_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `page_statistics_id` bigint(20) NOT NULL,
  `meta_key` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`),
  KEY `page_statistics_meta_relations_id_index` (`page_statistics_id`)
) ENGINE=MyISAM AUTO_INCREMENT=190 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_page_statistics_meta`
--

LOCK TABLES `wpew_ulisting_page_statistics_meta` WRITE;
/*!40000 ALTER TABLE `wpew_ulisting_page_statistics_meta` DISABLE KEYS */;
INSERT INTO `wpew_ulisting_page_statistics_meta` VALUES (1,1,'ip','64.187.165.236'),(2,1,'user_id','1'),(3,2,'ip','64.187.165.236'),(4,2,'user_id','1'),(5,3,'ip','64.187.165.236'),(6,3,'user_id','1'),(7,4,'ip','64.187.165.236'),(8,4,'user_id','1'),(9,5,'ip','64.187.165.236'),(10,5,'user_id','1'),(11,6,'ip','64.187.165.236'),(12,6,'user_id','1'),(13,7,'ip','66.249.88.249'),(14,8,'ip','49.149.107.158'),(15,8,'user_id','8'),(16,9,'ip','49.149.107.158'),(17,9,'user_id','8'),(18,10,'ip','64.187.165.236'),(19,10,'user_id','1'),(20,11,'ip','66.249.88.252'),(21,12,'ip','49.149.107.158'),(22,12,'user_id','8'),(23,13,'ip','66.249.88.252'),(24,14,'ip','64.187.165.236'),(25,14,'user_id','1'),(26,15,'ip','64.187.165.236'),(27,15,'user_id','1'),(28,16,'ip','64.187.165.236'),(29,16,'user_id','1'),(30,17,'ip','64.187.165.236'),(31,17,'user_id','1'),(32,18,'ip','49.149.107.158'),(33,18,'user_id','8'),(34,19,'ip','49.149.107.158'),(35,19,'user_id','8'),(36,20,'ip','66.249.88.245'),(37,21,'ip','64.187.165.236'),(38,21,'user_id','1'),(39,22,'ip','64.187.165.236'),(40,22,'user_id','1'),(41,23,'ip','64.187.165.236'),(42,24,'ip','64.187.165.236'),(43,24,'user_id','1'),(44,25,'ip','172.58.22.146'),(45,26,'ip','64.187.165.236'),(46,27,'ip','71.83.188.147'),(47,28,'ip','71.83.188.147'),(48,29,'ip','49.149.106.53'),(49,30,'ip','49.149.106.53'),(50,30,'user_id','8'),(51,31,'ip','66.249.88.247'),(52,32,'ip','66.249.88.243'),(53,33,'ip','64.187.165.236'),(54,34,'ip','71.83.188.147'),(55,35,'ip','49.149.102.53'),(56,35,'user_id','8'),(57,36,'ip','49.149.102.53'),(58,36,'user_id','8'),(59,37,'ip','66.249.80.75'),(60,38,'ip','64.187.165.236'),(61,39,'ip','64.187.165.236'),(62,40,'ip','64.187.165.236'),(63,40,'user_id','1'),(64,41,'ip','49.149.102.53'),(65,41,'user_id','8'),(66,42,'ip','49.149.102.53'),(67,42,'user_id','8'),(68,43,'ip','64.187.165.236'),(69,43,'user_id','1'),(70,44,'ip','64.187.165.236'),(71,45,'ip','64.187.165.236'),(72,45,'user_id','1'),(73,46,'ip','64.187.165.236'),(74,46,'user_id','1'),(75,47,'ip','66.249.88.150'),(76,48,'ip','74.125.210.28'),(77,49,'ip','49.145.196.212'),(78,50,'ip','64.187.165.236'),(79,50,'user_id','1'),(80,51,'ip','64.187.165.236'),(81,51,'user_id','1'),(82,52,'ip','49.149.108.239'),(83,52,'user_id','8'),(84,53,'ip','64.187.165.236'),(85,53,'user_id','1'),(86,54,'ip','64.187.165.236'),(87,54,'user_id','1'),(88,55,'ip','64.187.165.236'),(89,55,'user_id','1'),(90,56,'ip','49.149.108.239'),(91,56,'user_id','8'),(92,57,'ip','49.149.108.239'),(93,57,'user_id','8'),(94,58,'ip','64.187.165.236'),(95,59,'ip','64.187.165.236'),(96,60,'ip','64.187.165.236'),(97,61,'ip','64.187.165.236'),(98,62,'ip','64.187.165.236'),(99,62,'user_id','1'),(100,63,'ip','64.187.165.236'),(101,63,'user_id','1'),(102,64,'ip','64.187.165.236'),(103,64,'user_id','1'),(104,65,'ip','66.102.7.14'),(105,66,'ip','74.125.210.3'),(106,67,'ip','49.149.108.239'),(107,67,'user_id','8'),(108,68,'ip','107.77.211.198'),(109,69,'ip','49.149.108.239'),(110,69,'user_id','8'),(111,70,'ip','49.149.108.239'),(112,70,'user_id','8'),(113,71,'ip','49.149.108.239'),(114,71,'user_id','8'),(115,72,'ip','64.187.165.236'),(116,72,'user_id','1'),(117,73,'ip','64.187.165.236'),(118,74,'ip','64.187.165.236'),(119,74,'user_id','1'),(120,75,'ip','71.83.188.147'),(121,76,'ip','64.187.165.236'),(122,76,'user_id','1'),(123,77,'ip','64.187.165.236'),(124,77,'user_id','1'),(125,78,'ip','64.187.165.236'),(126,78,'user_id','1'),(127,79,'ip','64.187.165.236'),(128,79,'user_id','1'),(129,80,'ip','64.187.165.236'),(130,80,'user_id','1'),(131,81,'ip','107.77.211.10'),(132,82,'ip','107.77.211.10'),(133,83,'ip','107.77.211.10'),(134,84,'ip','64.187.165.236'),(135,85,'ip','64.187.165.236'),(136,85,'user_id','1'),(137,86,'ip','64.187.165.236'),(138,86,'user_id','1'),(139,87,'ip','64.187.165.236'),(140,87,'user_id','1'),(141,88,'ip','64.187.165.236'),(142,88,'user_id','1'),(143,89,'ip','66.249.88.144'),(144,90,'ip','74.125.210.11'),(145,91,'ip','49.145.194.51'),(146,92,'ip','64.187.165.236'),(147,92,'user_id','1'),(148,93,'ip','64.187.165.236'),(149,93,'user_id','1'),(150,94,'ip','64.187.165.236'),(151,94,'user_id','1'),(152,95,'ip','66.102.6.31'),(153,96,'ip','74.125.210.9'),(154,97,'ip','202.69.185.4'),(155,98,'ip','49.149.100.72'),(156,99,'ip','49.149.100.72'),(157,99,'user_id','8'),(158,100,'ip','202.69.185.6'),(159,101,'ip','66.249.88.147'),(160,102,'ip','74.125.210.11'),(161,103,'ip','49.145.194.51'),(162,104,'ip','49.145.233.171'),(163,105,'ip','49.145.233.171'),(164,105,'user_id','10'),(165,106,'ip','49.145.233.171'),(166,106,'user_id','10'),(167,107,'ip','49.145.233.171'),(168,107,'user_id','10'),(169,108,'ip','49.145.194.51'),(170,108,'user_id','10'),(171,109,'ip','49.145.194.51'),(172,109,'user_id','10'),(173,110,'ip','49.145.194.51'),(174,110,'user_id','10'),(175,111,'ip','49.145.194.51'),(176,111,'user_id','10'),(177,112,'ip','49.145.194.51'),(178,112,'user_id','10'),(179,113,'ip','49.145.194.51'),(180,113,'user_id','10'),(181,114,'ip','49.145.194.51'),(182,114,'user_id','10'),(183,115,'ip','49.145.194.51'),(184,115,'user_id','10'),(185,116,'ip','49.145.194.51'),(186,116,'user_id','10'),(187,117,'ip','49.145.194.51'),(188,117,'user_id','10'),(189,118,'ip','49.145.200.148');
/*!40000 ALTER TABLE `wpew_ulisting_page_statistics_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_ulisting_payment`
--

DROP TABLE IF EXISTS `wpew_ulisting_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_payment` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_plan_id` bigint(20) NOT NULL,
  `amount` float(24,2) DEFAULT NULL,
  `status` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `payment_method` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `transaction` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_date` datetime DEFAULT '0000-00-00 00:00:00',
  `updated_date` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `ulisting_payment_user_plan_id_index` (`user_plan_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_payment`
--

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

--
-- Table structure for table `wpew_ulisting_payment_meta`
--

DROP TABLE IF EXISTS `wpew_ulisting_payment_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_payment_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `payment_id` bigint(20) NOT NULL,
  `meta_key` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `ulisting_payment_meta_payment_id_index` (`payment_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_payment_meta`
--

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

--
-- Table structure for table `wpew_ulisting_search`
--

DROP TABLE IF EXISTS `wpew_ulisting_search`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_search` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) NOT NULL,
  `listing_type_id` bigint(20) NOT NULL,
  `email` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `url` text COLLATE utf8mb4_unicode_520_ci,
  `data` text COLLATE utf8mb4_unicode_520_ci,
  `created_date` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `ulisting_search_user_id` (`user_id`),
  KEY `ulisting_search_listing_type_id` (`listing_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_search`
--

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

--
-- Table structure for table `wpew_ulisting_user_plan`
--

DROP TABLE IF EXISTS `wpew_ulisting_user_plan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_user_plan` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `plan_id` bigint(20) unsigned NOT NULL,
  `status` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `payment_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `expired_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_date` datetime DEFAULT '0000-00-00 00:00:00',
  `updated_date` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `ulisting_user_plan_user_id_index` (`user_id`),
  KEY `ulisting_user_plan_plan_id_index` (`plan_id`),
  KEY `ulisting_user_plan_type_index` (`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_user_plan`
--

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

--
-- Table structure for table `wpew_ulisting_user_plan_meta`
--

DROP TABLE IF EXISTS `wpew_ulisting_user_plan_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_ulisting_user_plan_meta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `user_plan_id` bigint(20) NOT NULL,
  `meta_key` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `ulisting_user_plan_meta_user_plan_id_index` (`user_plan_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_ulisting_user_plan_meta`
--

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

--
-- Table structure for table `wpew_usermeta`
--

DROP TABLE IF EXISTS `wpew_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpew_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=251 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpew_usermeta`
--

LOCK TABLES `wpew_usermeta` WRITE;
/*!40000 ALTER TABLE `wpew_usermeta` DISABLE KEYS */;
INSERT INTO `wpew_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpew_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpew_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"afd234ea7540e29765072ebab34d3617c0b941a59e367a8cdd5ea352ab136f8c\";a:4:{s:10:\"expiration\";i:1626467597;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36\";s:5:\"login\";i:1626294797;}}'),(17,1,'wpew_dashboard_quick_press_last_post_id','3976'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"64.187.165.0\";}'),(216,9,'description',''),(217,9,'rich_editing','true'),(19,2,'nickname','Rentex Agent'),(20,2,'first_name',''),(21,2,'last_name',''),(22,2,'description',''),(23,2,'rich_editing','true'),(24,2,'syntax_highlighting','true'),(25,2,'comment_shortcuts','false'),(26,2,'admin_color','fresh'),(27,2,'use_ssl','0'),(28,2,'show_admin_bar_front','true'),(29,2,'locale',''),(30,2,'wpew_capabilities','a:1:{s:5:\"agent\";b:1;}'),(31,2,'wpew_user_level','0'),(32,2,'dismissed_wp_pointers',''),(33,2,'phone_mobile','318-838-5675'),(34,2,'phone_office','318-838-5675'),(35,2,'fax','318-838-5675'),(36,2,'license','3763809842'),(37,2,'tax_number','1Z 350 V96 52 5282 456 4'),(38,2,'facebook','#'),(39,2,'twitter','#'),(40,2,'instagram','#'),(41,2,'google_plus','#'),(42,2,'youtube_play','#'),(43,2,'linkedin','#'),(44,2,'address','Unnamed Road, San Francisco, CA 94102'),(45,2,'latitude','37.7749295'),(46,2,'longitude','-122.41941550000001'),(47,2,'stm_listing_avatar','a:1:{s:3:\"url\";s:68:\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\";}'),(48,3,'nickname','Rentex Agent 1'),(49,3,'first_name',''),(50,3,'last_name',''),(51,3,'description',''),(52,3,'rich_editing','true'),(53,3,'syntax_highlighting','true'),(54,3,'comment_shortcuts','false'),(55,3,'admin_color','fresh'),(56,3,'use_ssl','0'),(57,3,'show_admin_bar_front','true'),(58,3,'locale',''),(59,3,'wpew_capabilities','a:1:{s:5:\"agent\";b:1;}'),(60,3,'wpew_user_level','0'),(61,3,'dismissed_wp_pointers',''),(62,3,'phone_mobile','318-838-5675'),(63,3,'phone_office','318-838-5675'),(64,3,'fax','318-838-5675'),(65,3,'license','3763809842'),(66,3,'tax_number','1Z 350 V96 52 5282 456 4'),(67,3,'facebook','#'),(68,3,'twitter','#'),(69,3,'instagram','#'),(70,3,'google_plus','#'),(71,3,'youtube_play','#'),(72,3,'linkedin','#'),(73,3,'address','Unnamed Road, San Francisco, CA 94102'),(74,3,'latitude','37.7749295'),(75,3,'longitude','-122.41941550000001'),(76,3,'stm_listing_avatar','a:1:{s:3:\"url\";s:68:\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\";}'),(77,4,'nickname','Rentex Agent 2'),(78,4,'first_name',''),(79,4,'last_name',''),(80,4,'description',''),(81,4,'rich_editing','true'),(82,4,'syntax_highlighting','true'),(83,4,'comment_shortcuts','false'),(84,4,'admin_color','fresh'),(85,4,'use_ssl','0'),(86,4,'show_admin_bar_front','true'),(87,4,'locale',''),(88,4,'wpew_capabilities','a:1:{s:5:\"agent\";b:1;}'),(89,4,'wpew_user_level','0'),(90,4,'dismissed_wp_pointers',''),(91,4,'phone_mobile','318-838-5675'),(92,4,'phone_office','318-838-5675'),(93,4,'fax','318-838-5675'),(94,4,'license','3763809842'),(95,4,'tax_number','1Z 350 V96 52 5282 456 4'),(96,4,'facebook','#'),(97,4,'twitter','#'),(98,4,'instagram','#'),(99,4,'google_plus','#'),(100,4,'youtube_play','#'),(101,4,'linkedin','#'),(102,4,'address','Unnamed Road, San Francisco, CA 94102'),(103,4,'latitude','37.7749295'),(104,4,'longitude','-122.41941550000001'),(105,4,'stm_listing_avatar','a:1:{s:3:\"url\";s:68:\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\";}'),(106,5,'nickname','Rentex Agent 3'),(107,5,'first_name',''),(108,5,'last_name',''),(109,5,'description',''),(110,5,'rich_editing','true'),(111,5,'syntax_highlighting','true'),(112,5,'comment_shortcuts','false'),(113,5,'admin_color','fresh'),(114,5,'use_ssl','0'),(115,5,'show_admin_bar_front','true'),(116,5,'locale',''),(117,5,'wpew_capabilities','a:1:{s:5:\"agent\";b:1;}'),(118,5,'wpew_user_level','0'),(119,5,'dismissed_wp_pointers',''),(120,5,'phone_mobile','318-838-5675'),(121,5,'phone_office','318-838-5675'),(122,5,'fax','318-838-5675'),(123,5,'license','3763809842'),(124,5,'tax_number','1Z 350 V96 52 5282 456 4'),(125,5,'facebook','#'),(126,5,'twitter','#'),(127,5,'instagram','#'),(128,5,'google_plus','#'),(129,5,'youtube_play','#'),(130,5,'linkedin','#'),(131,5,'address','Unnamed Road, San Francisco, CA 94102'),(132,5,'latitude','37.7749295'),(133,5,'longitude','-122.41941550000001'),(134,5,'stm_listing_avatar','a:1:{s:3:\"url\";s:68:\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\";}'),(135,6,'nickname','Rentex Agent 4'),(136,6,'first_name',''),(137,6,'last_name',''),(138,6,'description',''),(139,6,'rich_editing','true'),(140,6,'syntax_highlighting','true'),(141,6,'comment_shortcuts','false'),(142,6,'admin_color','fresh'),(143,6,'use_ssl','0'),(144,6,'show_admin_bar_front','true'),(145,6,'locale',''),(146,6,'wpew_capabilities','a:1:{s:5:\"agent\";b:1;}'),(147,6,'wpew_user_level','0'),(148,6,'dismissed_wp_pointers',''),(149,6,'phone_mobile','318-838-5675'),(150,6,'phone_office','318-838-5675'),(151,6,'fax','318-838-5675'),(152,6,'license','3763809842'),(153,6,'tax_number','1Z 350 V96 52 5282 456 4'),(154,6,'facebook','#'),(155,6,'twitter','#'),(156,6,'instagram','#'),(157,6,'google_plus','#'),(158,6,'youtube_play','#'),(159,6,'linkedin','#'),(160,6,'address','Unnamed Road, San Francisco, CA 94102'),(161,6,'latitude','37.7749295'),(162,6,'longitude','-122.41941550000001'),(163,6,'stm_listing_avatar','a:1:{s:3:\"url\";s:68:\"https://om7717.dev34.info/wp-content/uploads/2020/05/placeholder.jpg\";}'),(164,1,'elementor_introduction','a:2:{s:10:\"rightClick\";b:1;s:19:\"colorPickerDropping\";b:1;}'),(165,1,'wpew_user-settings','libraryContent=browse'),(166,1,'wpew_user-settings-time','1620947236'),(211,8,'DOPBSP_backend_language','en'),(212,1,'DOPBSP_backend_language','en'),(233,8,'elementor_introduction','a:1:{s:19:\"colorPickerDropping\";b:1;}'),(167,7,'nickname','mary'),(168,7,'first_name',''),(169,7,'last_name',''),(170,7,'description',''),(171,7,'rich_editing','true'),(172,7,'syntax_highlighting','true'),(173,7,'comment_shortcuts','false'),(174,7,'admin_color','fresh'),(175,7,'use_ssl','0'),(176,7,'show_admin_bar_front','true'),(177,7,'locale',''),(178,7,'wpew_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(179,7,'wpew_user_level','10'),(180,7,'dismissed_wp_pointers',''),(181,7,'session_tokens','a:1:{s:64:\"7a8eebc6e5b7aad35b393fcddecd72a48d8ea84855e5ee29383b46ff2b094ead\";a:4:{s:10:\"expiration\";i:1621133348;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36\";s:5:\"login\";i:1620960548;}}'),(182,7,'wpew_dashboard_quick_press_last_post_id','2693'),(183,7,'community-events-location','a:1:{s:2:\"ip\";s:11:\"49.149.94.0\";}'),(184,1,'nav_menu_recently_edited','52'),(185,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\";}'),(186,1,'metaboxhidden_nav-menus','a:7:{i:0;s:26:\"add-post-type-listing_type\";i:1;s:21:\"add-post-type-listing\";i:2;s:31:\"add-post-type-stm_pricing_plans\";i:3;s:12:\"add-post_tag\";i:4;s:20:\"add-listing-category\";i:5;s:29:\"add-listing-attribute-options\";i:6;s:18:\"add-listing-region\";}'),(187,8,'nickname','youleth'),(188,8,'first_name',''),(189,8,'last_name',''),(190,8,'description',''),(191,8,'rich_editing','true'),(192,8,'syntax_highlighting','true'),(193,8,'comment_shortcuts','false'),(194,8,'admin_color','fresh'),(195,8,'use_ssl','0'),(196,8,'show_admin_bar_front','true'),(197,8,'locale',''),(198,8,'wpew_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(199,8,'wpew_user_level','10'),(200,8,'dismissed_wp_pointers',''),(201,8,'session_tokens','a:2:{s:64:\"cea0288994a7b83b08b74c91257480cb864a074b1a5e44d6bf3dde136c3acc79\";a:4:{s:10:\"expiration\";i:1626340165;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0\";s:5:\"login\";i:1626167365;}s:64:\"96109ee2b8dccffa1226183eac90923722f287eac97b877cb698af4607fa1b2e\";a:4:{s:10:\"expiration\";i:1626499011;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0\";s:5:\"login\";i:1626326211;}}'),(202,8,'wpew_dashboard_quick_press_last_post_id','3965'),(203,8,'community-events-location','a:1:{s:2:\"ip\";s:12:\"49.149.100.0\";}'),(204,8,'meta-box-order_listing','a:3:{s:4:\"side\";s:108:\"submitdiv,listing-categorydiv,tagsdiv-listing-attribute-options,listing-regiondiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:20:\"slugdiv,listing_edit\";s:8:\"advanced\";s:0:\"\";}'),(205,8,'screen_layout_listing','2'),(206,7,'elementor_introduction','a:1:{s:19:\"colorPickerDropping\";b:1;}'),(207,8,'wpew_user-settings','libraryContent=browse'),(208,8,'wpew_user-settings-time','1620970792'),(209,1,'meta-box-order_listing','a:3:{s:4:\"side\";s:94:\"submitdiv,listing-categorydiv,tagsdiv-listing-attribute-options,listing-regiondiv,postimagediv\";s:6:\"normal\";s:7:\"slugdiv\";s:8:\"advanced\";s:12:\"listing_edit\";}'),(210,1,'screen_layout_listing','2'),(213,9,'nickname','lala'),(214,9,'first_name',''),(215,9,'last_name',''),(218,9,'syntax_highlighting','true'),(219,9,'comment_shortcuts','false'),(220,9,'admin_color','fresh'),(221,9,'use_ssl','0'),(222,9,'show_admin_bar_front','true'),(223,9,'locale',''),(224,9,'wpew_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(225,9,'wpew_user_level','10'),(226,9,'dismissed_wp_pointers',''),(227,9,'session_tokens','a:2:{s:64:\"72fcec504553e53407fe423b8a063a3e6bfe0a25adca9fb26a454e097348313b\";a:4:{s:10:\"expiration\";i:1626389969;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36\";s:5:\"login\";i:1626217169;}s:64:\"384d9256140754b3ac2803a9eacc9a2005cd7ca9b65f73ec3d6f9926be5bf18b\";a:4:{s:10:\"expiration\";i:1626389970;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36\";s:5:\"login\";i:1626217170;}}'),(228,9,'wpew_dashboard_quick_press_last_post_id','3974'),(229,9,'community-events-location','a:1:{s:2:\"ip\";s:13:\"210.185.171.0\";}'),(230,9,'elementor_introduction','a:1:{s:19:\"colorPickerDropping\";b:1;}'),(231,9,'wpew_user-settings','libraryContent=browse'),(232,9,'wpew_user-settings-time','1623711111'),(234,10,'nickname','jonny'),(235,10,'first_name',''),(236,10,'last_name',''),(237,10,'description',''),(238,10,'rich_editing','true'),(239,10,'syntax_highlighting','true'),(240,10,'comment_shortcuts','false'),(241,10,'admin_color','fresh'),(242,10,'use_ssl','0'),(243,10,'show_admin_bar_front','true'),(244,10,'locale',''),(245,10,'wpew_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(246,10,'wpew_user_level','10'),(247,10,'dismissed_wp_pointers',''),(248,10,'session_tokens','a:1:{s:64:\"24ef16a1a3a93b70b8b6c639b8c49887887f19a87c95404359bc986af7f08f3c\";a:4:{s:10:\"expiration\";i:1627412772;s:2:\"ip\";s:15:\"173.247.252.137\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36\";s:5:\"login\";i:1627239972;}}'),(249,10,'wpew_dashboard_quick_press_last_post_id','3979'),(250,10,'community-events-location','a:1:{s:2:\"ip\";s:12:\"49.145.200.0\";}');
/*!40000 ALTER TABLE `wpew_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpew_users`
--

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

--
-- Dumping data for table `wpew_users`
--

LOCK TABLES `wpew_users` WRITE;
/*!40000 ALTER TABLE `wpew_users` DISABLE KEYS */;
INSERT INTO `wpew_users` VALUES (1,'admin','$P$BYIbwBBF5kYRfZNBVbivGClRMu9sin0','admin','alex@inspirable.com','https://om7717.dev34.info','2021-05-13 20:32:38','',0,'admin'),(2,'Rentex Agent','$P$BoH5IOsvh3ZAm79u5YLv1M187CBGd90','rentex-agent','demo@demo.com','','2021-05-13 22:44:50','',0,'Rentex Agent'),(3,'Rentex Agent 1','$P$BdkZAJDdLjzCJI2v/lTC7n3Qxl8hKZ.','rentex-agent-1','demo1@demo.com','','2021-05-13 22:44:50','',0,'Rentex Agent 1'),(4,'Rentex Agent 2','$P$BMSsTxoxyDfuhsxcVaciFpjpa7.FXr1','rentex-agent-2','demo2@demo.com','','2021-05-13 22:44:50','',0,'Rentex Agent 2'),(5,'Rentex Agent 3','$P$BRo3Il/zTpMucXBi/YKLaxrjAQG1ib/','rentex-agent-3','demo3@demo.com','','2021-05-13 22:44:50','',0,'Rentex Agent 3'),(6,'Rentex Agent 4','$P$Bzt8E4d0AIHXy4H7Ormq4pkLJ4rdui/','rentex-agent-4','demo4@demo.com','','2021-05-13 22:44:50','',0,'Rentex Agent 4'),(7,'mary','$P$BjE/4NVeNL9MP.UVPz7MwDD5mR/gRg0','mary','mary@inspirable.com','','2021-05-14 02:46:35','1620960395:$P$BS8zlDF5W51JmYzml3.G2JAgjsotiI0',0,'mary'),(8,'youleth','$P$BNmy0evZh3MAOorFwcedecIjQ9LjOZ.','youleth','youleth@gmail.com','','2021-05-14 03:07:46','1620961666:$P$Ba326OihHnxQjF5QTNXYBYyL/ieBaT1',0,'youleth'),(9,'lala','$P$BGQuIgreWesRcfRglxx7ivvR7zijYE1','lala','ladylovelorion@gmail.com','','2021-05-28 07:04:26','1622185467:$P$B6G8RMvdK2JrTv3C21t2wQYHBgF0FV0',0,'lala'),(10,'jonny','$P$B9zhHc2D0pYx68yn4JVnF8fqrgraHW/','jonny','support@inspirable.com','','2021-07-14 22:42:29','1626302549:$P$BKBDatqf8cwVGiXrmcF8SNG.5DZc6r1',0,'jonny');
/*!40000 ALTER TABLE `wpew_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2021-08-03 18:29:47
